diff --git a/.github/workflows/render-model-validation.yaml b/.github/workflows/render-model-validation.yaml
index 065d190c..e85408d4 100644
--- a/.github/workflows/render-model-validation.yaml
+++ b/.github/workflows/render-model-validation.yaml
@@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- ref: dev
+ ref: 'ver-0.2.0'
# - run: git checkout HEAD^
- uses: r-lib/actions/setup-pandoc@v2
@@ -69,17 +69,17 @@ jobs:
- name: Render model validation Rmarkdown file
run: |
install.packages("rmarkdown")
- for (year in 2012:2017) {
+ for (year in 2018:2020) {
rmarkdown::render("inst/doc/ValidateModel.Rmd", output_dir = "inst/doc/output", output_file = paste0("ValidateModel_", year, ".md"))
}
shell: Rscript {0}
- name: Commit model validation results
run: |
- git fetch origin dev
- git pull origin dev
+ git fetch origin ver-0.2.0
+ git pull origin ver-0.2.0
git config user.name "GitHub Actions Bot"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add inst/doc/output/ValidateModel*.md
git commit -m "Update model validation documents"
- git push origin dev
+ git push origin ver-0.2.0
diff --git a/.github/workflows/save-raw-data.yaml b/.github/workflows/save-raw-data.yaml
index 80fa946a..d53e86dd 100644
--- a/.github/workflows/save-raw-data.yaml
+++ b/.github/workflows/save-raw-data.yaml
@@ -8,7 +8,7 @@ jobs:
generate-save-data:
runs-on: ${{ matrix.config.os }}
- name: ${{ matrix.script-run.script }}, ${{ matrix.script-run.year }} (${{ matrix.config.os}}, ${{ matrix.config.r}})
+ name: ${{ matrix.script-run }}, ${{ matrix.data-year }} (${{ matrix.config.os}}, ${{ matrix.config.r}})
strategy:
fail-fast: false
@@ -16,16 +16,22 @@ jobs:
config:
- {os: ubuntu-latest, r: 'release'}
script-run:
- - {script: data-raw/BEAData.R}
- - {script: data-raw/CensusData.R}
- - {script: data-raw/EIAData.R}
- - {script: data-raw/FAFData.R}
- - {script: data-raw/USASpendingData.R, year: 2012}
- - {script: data-raw/USASpendingData.R, year: 2013}
- - {script: data-raw/USASpendingData.R, year: 2014}
- - {script: data-raw/USASpendingData.R, year: 2015}
- - {script: data-raw/USASpendingData.R, year: 2016}
- - {script: data-raw/USASpendingData.R, year: 2017}
+ - data-raw/BEAData.R
+ - data-raw/CensusData.R
+ - data-raw/EIAData.R
+ - data-raw/FAFData.R
+ - data-raw/USASpendingData.R
+ data-year:
+ - 2012
+ - 2013
+ - 2014
+ - 2015
+ - 2016
+ - 2017
+ - 2018
+ - 2019
+ - 2020
+
# env:
# R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
@@ -53,15 +59,13 @@ jobs:
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- # Load package
- - name: Load stateior
- run: Rscript -e 'devtools::load_all'
-
# Generate data and save as .rds files
- name: Generate data and save as .rds files (metadata saved as .json files)
run: |
- year <- ${{ matrix.script-run.year }}
- source("${{ matrix.script-run.script }}")
+ devtools::load_all()
+ year <- ${{ matrix.data-year }}
+ options(timeout = 1000)
+ source("${{ matrix.script-run }}")
shell: Rscript {0}
# Upload .rds files
diff --git a/.github/workflows/save-state-supply-model-data.yaml b/.github/workflows/save-state-supply-model-data.yaml
index 2f8a94a6..af124c13 100644
--- a/.github/workflows/save-state-supply-model-data.yaml
+++ b/.github/workflows/save-state-supply-model-data.yaml
@@ -1,5 +1,5 @@
# This workflow is designed to be manually triggered only.
-name: Save state supply model data as .rds
+name: Save state supply model data as .rds in parallel runs
on:
workflow_dispatch: # allow manual trigger
@@ -8,13 +8,25 @@ jobs:
generate-save-data:
runs-on: ${{ matrix.config.os }}
- name: ${{ matrix.config.os}} (${{ matrix.config.r}})
+ name: ${{ matrix.script-run }}, ${{ matrix.data-year }} (${{ matrix.config.os}}, ${{ matrix.config.r}})
strategy:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, r: 'release'}
+ script-run:
+ - data-raw/StateSupplyModel.R
+ data-year:
+ - 2012
+ - 2013
+ - 2014
+ - 2015
+ - 2016
+ - 2017
+ - 2018
+ - 2019
+ - 2020
# env:
# R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
@@ -46,7 +58,8 @@ jobs:
- name: Load stateior, generate and save state supply IO data
run: |
devtools::load_all()
- source("data-raw/StateSupplyModel.R")
+ year <- ${{ matrix.data-year }}
+ source("${{ matrix.script-run }}")
shell: Rscript {0}
# Upload .rds files
diff --git a/.github/workflows/save-state-use-model-data.yaml b/.github/workflows/save-state-use-model-data.yaml
index d26d1c60..6fe5c91c 100644
--- a/.github/workflows/save-state-use-model-data.yaml
+++ b/.github/workflows/save-state-use-model-data.yaml
@@ -1,5 +1,5 @@
# This workflow is designed to be manually triggered only.
-name: Save state use model data as .rds
+name: Save state use model data as .rds in parallel runs
on:
workflow_dispatch: # allow manual trigger
@@ -8,13 +8,25 @@ jobs:
generate-save-data:
runs-on: ${{ matrix.config.os }}
- name: ${{ matrix.config.os}} (${{ matrix.config.r}})
+ name: ${{ matrix.script-run }}, ${{ matrix.data-year }} (${{ matrix.config.os}}, ${{ matrix.config.r}})
strategy:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, r: 'release'}
+ script-run:
+ - data-raw/StateUseModel.R
+ data-year:
+ - 2012
+ - 2013
+ - 2014
+ - 2015
+ - 2016
+ - 2017
+ - 2018
+ - 2019
+ - 2020
# env:
# R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
@@ -46,7 +58,8 @@ jobs:
- name: Load stateior, generate and save state use IO data
run: |
devtools::load_all()
- source("data-raw/StateUseModel.R")
+ year <- ${{ matrix.data-year }}
+ source("${{ matrix.script-run }}")
shell: Rscript {0}
# Upload .rds files
diff --git a/.github/workflows/save-two-region-model-data.yaml b/.github/workflows/save-two-region-model-data.yaml
index b350bb37..4b8cb4b4 100644
--- a/.github/workflows/save-two-region-model-data.yaml
+++ b/.github/workflows/save-two-region-model-data.yaml
@@ -24,9 +24,9 @@ jobs:
- 2015
- 2016
- 2017
- # - 2018
- # - 2019
- # - 2020
+ - 2018
+ - 2019
+ - 2020
# env:
# R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
diff --git a/DESCRIPTION b/DESCRIPTION
index 562be8c8..370ffd3a 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,8 +1,8 @@
Package: stateior
Type: Package
Title: US State Input-Output (stateio) R modeling software
-Version: 0.1.0
-Date: 2022-07-29
+Version: 0.2.0
+Date: 2022-05-17
Authors@R: c(
person("Mo", "Li", email="mo.li@gdit.com", role="aut"),
person("Joao-Pedro", "Ferreira", email="joao.ferreira@ufl.edu", role= c("aut")),
diff --git a/NAMESPACE b/NAMESPACE
index 468fe5f7..63ad6dbe 100644
--- a/NAMESPACE
+++ b/NAMESPACE
@@ -8,5 +8,6 @@ export(buildTwoRegionUseModel)
export(loadStateIODataFile)
export(plotICFandRPC)
export(plotResidual)
+export(writeStateIODatatoCSV)
import(ggplot2)
importFrom(magrittr,"%>%")
diff --git a/R/BuildModel.R b/R/BuildModel.R
index 8de706e4..0ffc0f30 100644
--- a/R/BuildModel.R
+++ b/R/BuildModel.R
@@ -1,3 +1,6 @@
+# Define model version
+model_ver <- utils::packageDescription(pkg = "stateior", fields = "Version")
+
#' Build a state supply model for all 52 states/regions (including DC and Overseas)
#' for a given year
#' @description Build a state supply model for all 52 states/regions
@@ -194,7 +197,8 @@ buildStateUseModel <- function(year) {
US_ITA <- generateInternationalTradeAdjustmentVector("Summary", year)
# Calculate state ITA by allocating US ITA via state/US COR (commodity output ratio)
CommodityOutput <- loadStateIODataFile(paste0("State_Summary_CommodityOutput_",
- year))
+ year),
+ ver = model_ver)
for (state in states) {
cor <- CommodityOutput[[state]] / rowSums(US_Use[commodities, c(industries, FD_cols)])
model[["Use"]][[state]][commodities, "F051"] <- US_ITA*cor
@@ -301,13 +305,15 @@ buildTwoRegionUseModel <- function(state, year, ioschema, iolevel,
SoI_DomesticUse <- loadStateIODataFile(paste0("State_",
iolevel,
"_DomesticUse_",
- year))[[state]][commodities, ]
+ year),
+ ver = model_ver)[[state]][commodities, ]
# Load state commodity output
logging::loginfo("Loading state commodity output...")
SoI_CommodityOutput <- loadStateIODataFile(paste0("State_",
iolevel,
"_CommodityOutput_",
- year))[[state]]
+ year),
+ ver = model_ver)[[state]]
# 2 - Generate 2-region ICFs
logging::loginfo("Generating two-region interregional commodity flow (ICF) ratios...")
@@ -494,7 +500,8 @@ buildTwoRegionUseModel <- function(state, year, ioschema, iolevel,
if (!domestic) {
# Load US and SoI Use, calcuate RoUS_Use
US_Use <- getNationalUse("Summary", year)
- SoI_Use <- loadStateIODataFile(paste0("State_", iolevel, "_Use_", year))[[state]]
+ SoI_Use <- loadStateIODataFile(paste0("State_", iolevel, "_Use_", year),
+ ver = model_ver)[[state]]
RoUS_Use <- US_Use - SoI_Use[commodities, c(industries, FD_cols)]
# Calculate SoI_Import and RoUS_Import
SoI_Import <- SoI_Use[commodities, c(industries, FD_cols)] - SoI_DomesticUse[commodities, c(industries, FD_cols)]
@@ -582,11 +589,13 @@ assembleTwoRegionIO <- function(year, iolevel) {
State_IndustryOutput_ls <- loadStateIODataFile(paste0("State_",
iolevel,
"_IndustryOutput_",
- year))
+ year),
+ ver = model_ver)
State_CommodityOutput_ls <- loadStateIODataFile(paste0("State_",
iolevel,
"_CommodityOutput_",
- year))
+ year),
+ ver = model_ver)
# Assemble two-region IO tables
TwoRegionIO <- list()
for (state in sort(c(state.name, "District of Columbia"))) {
@@ -695,7 +704,8 @@ buildFullTwoRegionIOTable <- function(state, year, ioschema, iolevel) {
logging::loginfo("Loading SoI Make table...")
# SoI Make
SoI_Make <- loadStateIODataFile(paste0("State_",iolevel,
- "_Make_", year))[[state]]
+ "_Make_", year),
+ ver = model_ver)[[state]]
rownames(SoI_Make) <- paste0(getBEASectorCodeLocation("Industry", state, "Summary"),
"/Industry")
colnames(SoI_Make) <- paste0(getBEASectorCodeLocation("Commodity", state, "Summary"),
@@ -704,7 +714,8 @@ buildFullTwoRegionIOTable <- function(state, year, ioschema, iolevel) {
SoI_CommodityOutput <- loadStateIODataFile(paste0("State_",
iolevel,
"_CommodityOutput_",
- year))[[state]]
+ year),
+ ver = model_ver)[[state]]
logging::loginfo("Generating RoUS Make table...")
# RoUS Make
@@ -726,7 +737,8 @@ buildFullTwoRegionIOTable <- function(state, year, ioschema, iolevel) {
logging::loginfo("Loading two-region Domestic Use tables...")
# Two-region Use Transaction
TwoRegionUse <- loadStateIODataFile(paste("TwoRegion", iolevel, "DomesticUse",
- year, sep = "_"))[[state]]
+ year, sep = "_"),
+ ver = model_ver)[[state]]
TwoRegionUseTrans_cols <- unlist(lapply(c(state, "RoUS"),
function(x)
getBEASectorCodeLocation("Industry",
@@ -751,8 +763,9 @@ buildFullTwoRegionIOTable <- function(state, year, ioschema, iolevel) {
logging::loginfo("Calculating SoI and RoUS international imports by industry...")
# International imports by industry
SoI_Use <- loadStateIODataFile(paste("State", iolevel, "Use", year,
- sep = "_"))[[state]][commodities,
- c(industries, FD_cols)]
+ sep = "_"),
+ ver = model_ver)[[state]][commodities,
+ c(industries, FD_cols)]
US_Use <- getNationalUse(iolevel, year)
US_Import <- loadDatafromUSEEIOR(paste(iolevel, "Import", year, "BeforeRedef",
sep = "_"))*1E6
@@ -769,7 +782,8 @@ buildFullTwoRegionIOTable <- function(state, year, ioschema, iolevel) {
logging::loginfo("Calculating SoI and RoUS gross value added by industry...")
# GVA
GVA_rows <- getVectorOfCodes(iolevel, "ValueAdded")
- SoI_GVA_ls <- loadStateIODataFile(paste("State", iolevel, "Use", year, sep = "_"))
+ SoI_GVA_ls <- loadStateIODataFile(paste("State", iolevel, "Use", year, sep = "_"),
+ ver = model_ver)
SoI_GVA <- SoI_GVA_ls[[state]][GVA_rows, c(industries, FD_cols)]
RoUS_GVA <- Reduce("+", SoI_GVA_ls)[GVA_rows, c(industries, FD_cols)] - SoI_GVA
TwoRegionGVA <- cbind(SoI_GVA, RoUS_GVA)
@@ -785,12 +799,14 @@ buildFullTwoRegionIOTable <- function(state, year, ioschema, iolevel) {
logging::loginfo("Loading foreign expenditure by U.S. residents and spending in the U.S. by nonresidents...")
# Foreign expenditure by U.S. residents
ForeignExp <- loadStateIODataFile(paste("State_ForeignExpenditureByResident",
- year, sep = "_"))
+ year, sep = "_"),
+ ver = model_ver)
SoIForeignExp <- ForeignExp[ForeignExp$GeoName == state, as.character(year)]
RoUSForeignExp <- ForeignExp[ForeignExp$GeoName == "United States", as.character(year)] - SoIForeignExp
# Spending in the U.S. by nonresidents
DomesticExp <- loadStateIODataFile(paste("State_DomesticExpenditureByNonresident",
- year, sep = "_"))
+ year, sep = "_"),
+ ver = model_ver)
SoIDomesticExp <- DomesticExp[DomesticExp$GeoName == state, as.character(year)]
RoUSDomesticExp <- DomesticExp[DomesticExp$GeoName == "United States", as.character(year)] - SoIDomesticExp
@@ -811,9 +827,11 @@ buildFullTwoRegionIOTable <- function(state, year, ioschema, iolevel) {
# Append total output column
tworegion_co_filename <- paste("TwoRegion", iolevel, "CommodityOutput", year, sep = "_")
- TwoRegionCommodityOutput <- loadStateIODataFile(tworegion_co_filename)[[state]]
+ TwoRegionCommodityOutput <- loadStateIODataFile(tworegion_co_filename,
+ ver = model_ver)[[state]]
tworegion_io_filename <- paste("TwoRegion", iolevel, "IndustryOutput", year, sep = "_")
- TwoRegionIndustryOutput <- loadStateIODataFile(tworegion_io_filename)[[state]]
+ TwoRegionIndustryOutput <- loadStateIODataFile(tworegion_io_filename,
+ ver = model_ver)[[state]]
FullTwoRegionTable[, "Total Output"] <- c(TwoRegionCommodityOutput,
TwoRegionIndustryOutput)
diff --git a/R/CommodityFlowFunctions.R b/R/CommodityFlowFunctions.R
index 93182bdb..6f92af04 100644
--- a/R/CommodityFlowFunctions.R
+++ b/R/CommodityFlowFunctions.R
@@ -8,21 +8,28 @@
#' @return A data frame contains commodity flow ratios by BEA.
calculateCommodityFlowRatios <- function(state, year, flow_ratio_type, ioschema, iolevel) {
# Load pre-saved FAF4 commodity flow data
- FAF <- loadStateIODataFile(paste("FAF", year, sep = "_"))
+ FAF <- loadStateIODataFile(paste("FAF", year, sep = "_"),
+ ver = model_ver)
# Load state FIPS and determine fips code for the state of interest (SoI)
FIPS_STATE <- readCSV(system.file("extdata", "StateFIPS.csv", package = "stateior"))
fips <- FIPS_STATE[FIPS_STATE$State == state, "State_FIPS"]
+
+ # Define value_col, orig_col, and dest_col
if (year == 2012) {
value_col <- paste0("value_", year)
} else if (year %in% c(2013:2018)) {
value_col <- paste0("curval_", year)
- } else {
+ } else if (year == 2019) {
value_col <- paste0("current_value_", year)
+ } else if (year == 2020) { # forecast of 2020 data are in 2012 dollar (value_2020)
+ value_col <- paste0("value_", year)
}
+ orig_col <- colnames(FAF)[startsWith(colnames(FAF), "dms_orig")]
+ dest_col <- colnames(FAF)[startsWith(colnames(FAF), "dms_dest")]
# Generate FAF_2r
if (flow_ratio_type == "domestic") {
- FAF <- FAF[FAF$trade_type == 1, c("dms_origst", "dms_destst", "sctg2",
+ FAF <- FAF[FAF$trade_type == 1, c(orig_col, dest_col, "sctg2",
"dms_mode", value_col)]
colnames(FAF) <- c("ORIG", "DEST", "SCTG", "MODE", "VALUE")
FAF$ORIG <- ifelse(FAF$ORIG == fips, "SoI", "RoUS")
@@ -32,7 +39,7 @@ calculateCommodityFlowRatios <- function(state, year, flow_ratio_type, ioschema,
# Calculate commodity flow amount in warehousing & storage sector
FAF_2r_ws <- stats::aggregate(VALUE ~ ORIG + DEST, FAF, sum)
} else if (flow_ratio_type == "export") {
- FAF <- FAF[FAF$trade_type == 3, c("dms_origst", "sctg2", "fr_outmode", value_col)]
+ FAF <- FAF[FAF$trade_type == 3, c(orig_col, "sctg2", "fr_outmode", value_col)]
colnames(FAF) <- c("ORIG", "SCTG", "MODE", "VALUE")
FAF$ORIG <- ifelse(FAF$ORIG == fips, "SoI", "RoUS")
FAF$DEST <- "RoW"
@@ -41,7 +48,7 @@ calculateCommodityFlowRatios <- function(state, year, flow_ratio_type, ioschema,
# Calculate commodity flow amount in warehousing & storage sector
FAF_2r_ws <- stats::aggregate(VALUE ~ ORIG, FAF, sum)
} else if (flow_ratio_type == "import") {
- FAF <- FAF[FAF$trade_type == 2, c("dms_destst", "sctg2", "fr_inmode", value_col)]
+ FAF <- FAF[FAF$trade_type == 2, c(dest_col, "sctg2", "fr_inmode", value_col)]
colnames(FAF) <- c("DEST", "SCTG", "MODE", "VALUE")
FAF$ORIG <- "RoW"
FAF$DEST <- ifelse(FAF$DEST == fips, "SoI", "RoUS")
@@ -139,11 +146,13 @@ calculateCensusForeignCommodityFlowRatios <- function(year, flow_ratio_type, ios
if (year < 2013) {
trade <- loadStateIODataFile(paste0("Census_USATrade",
capitalize(flow_ratio_type),
- "_", year))
+ "_", year),
+ ver = model_ver)
} else {
trade <- loadStateIODataFile(paste0("Census_State",
capitalize(flow_ratio_type),
- "_", year))
+ "_", year),
+ ver = model_ver)
}
# Map from NAICS to BEA
bea_code <- paste("BEA", ioschema, iolevel, "Code", sep = "_")
@@ -224,9 +233,6 @@ calculateHazWasteManagementServiceFlowRatios <- function(state, year) {
# Total Managed
TM_SoI <- SummaryBR[SummaryBR$`Location Name` == toupper(state), "Managed (Tons)"]
TM_RoUS <- sum(SummaryBR[SummaryBR$`Location Name` != toupper(state), "Managed (Tons)"])
- # Total Interstate Shipments
- TS_SoI <- InterstateFlow[InterstateFlow$`Location Name` == toupper(state), "Interstate Shipments (Tons)"]
- TS_RoUS <- sum(InterstateFlow[InterstateFlow$`Location Name` != toupper(state), "Interstate Shipments (Tons)"])
# Total Interstate Receipts
TR_SoI <- InterstateFlow[InterstateFlow$`Location Name` == toupper(state), "Interstate Receipts (Tons)"]
TR_RoUS <- sum(InterstateFlow[InterstateFlow$`Location Name` != toupper(state), "Interstate Receipts (Tons)"])
@@ -244,10 +250,10 @@ calculateHazWasteManagementServiceFlowRatios <- function(state, year) {
HazWaste_ICF_2r[, c("RoUS2RoUS", "RoUS2SoI")] <- c(1, 0)
}
# Adjust ICF ratios if TR/TM > 1
- if (HazWaste_ICF_2r$SoI2RoUS>1) {
+ if (HazWaste_ICF_2r$SoI2RoUS > 1) {
HazWaste_ICF_2r[, c("SoI2SoI", "SoI2RoUS")] <- c(0, 1)
}
- if (HazWaste_ICF_2r$RoUS2SoI>1) {
+ if (HazWaste_ICF_2r$RoUS2SoI > 1) {
HazWaste_ICF_2r[, c("RoUS2RoUS", "RoUS2SoI")] <- c(0, 1)
}
return(HazWaste_ICF_2r)
@@ -257,10 +263,10 @@ calculateHazWasteManagementServiceFlowRatios <- function(state, year) {
#' @param state State name.
#' @param year A numeric value between 2012 and 2017 specifying the year of interest.
#' @return A data frame contains waste management services flow ratios by BEA.
-calculateWasteManagementServiceFlowRatios <- function (state, year) {
+calculateWasteManagementServiceFlowRatios <- function(state, year) {
# Assume non-haz waste ICF ratios == commodity output ratios
COR <- calculateStateCommodityOutputRatio(year)
- SoIWasteCOR <- COR[COR$BEA_2012_Summary_Code == "562"&COR$State == state, "Ratio"]
+ SoIWasteCOR <- COR[COR$BEA_2012_Summary_Code == "562" & COR$State == state, "Ratio"]
RoUSWasteCOR <- 1 - SoIWasteCOR
NonHazWaste_ICF_2r <- data.frame("SoI2SoI" = SoIWasteCOR,
"SoI2RoUS" = 1 - SoIWasteCOR,
@@ -277,30 +283,31 @@ calculateWasteManagementServiceFlowRatios <- function (state, year) {
#' @param state State name.
#' @param year A numeric value between 2012 and 2017 specifying the year of interest.
#' @return A data frame contains domestic interregional electricity flow ratios by state.
-calculateElectricityFlowRatios <- function (state, year) {
+calculateElectricityFlowRatios <- function(state, year) {
state_abb <- getStateAbbreviation(state)
# Load consumption data
- CodeDesc <- loadStateIODataFile("EIA_SEDS_CodeDescription")
+ CodeDesc <- loadStateIODataFile("EIA_SEDS_CodeDescription", ver = model_ver)
Consumption <- loadStateIODataFile(paste0("EIA_SEDS_StateElectricityConsumption_",
- year))
+ year),
+ ver = model_ver)
# Subset SoI and RoUS total consumption
consumption_desc <- "Electricity total consumption (i.e., retail sales)"
- ConsumptionMSN <- CodeDesc[CodeDesc$Description == consumption_desc&
+ ConsumptionMSN <- CodeDesc[CodeDesc$Description == consumption_desc &
CodeDesc$Unit == "Million kilowatthours", "MSN"]
- Consumption_SoI <- Consumption[Consumption$MSN == ConsumptionMSN&
+ Consumption_SoI <- Consumption[Consumption$MSN == ConsumptionMSN &
Consumption$State == state_abb,
as.character(year)]
- Consumption_RoUS <- Consumption[Consumption$MSN == ConsumptionMSN&
+ Consumption_RoUS <- Consumption[Consumption$MSN == ConsumptionMSN &
Consumption$State == "US",
as.character(year)] - Consumption_SoI
# Subset SoI and RoUS net interstate trade
trade_desc <- "Net interstate flow of electricity (negative indicates flow out of state)"
- NetInterstateTradeMSN <- CodeDesc[CodeDesc$Description == trade_desc&
+ NetInterstateTradeMSN <- CodeDesc[CodeDesc$Description == trade_desc &
CodeDesc$Unit == "Million kilowatthours", "MSN"]
- NetInterstateTrade_SoI <- Consumption[Consumption$MSN == NetInterstateTradeMSN&
+ NetInterstateTrade_SoI <- Consumption[Consumption$MSN == NetInterstateTradeMSN &
Consumption$State == state_abb,
as.character(year)]
- NetInterstateTrade_RoUS <- Consumption[Consumption$MSN == NetInterstateTradeMSN&
+ NetInterstateTrade_RoUS <- Consumption[Consumption$MSN == NetInterstateTradeMSN &
Consumption$State == "US",
as.character(year)] - NetInterstateTrade_SoI
# Note that abs(NetInterstateTrade_SoI)==abs(NetInterstateTrade_RoUS)
@@ -331,7 +338,7 @@ calculateElectricityFlowRatios <- function (state, year) {
#' @param state State name.
#' @param year A numeric value between 2012 and 2017 specifying the year of interest.
#' @return A data frame contains domestic interregional utilities flow ratios by state.
-calculateUtilitiesFlowRatios <- function (state, year) {
+calculateUtilitiesFlowRatios <- function(state, year) {
# Get state employment for utilities sector
EmploymentFBS <- getFlowsaData("Employment", year)
StateDetailEmp <- mapFlowBySectorfromNAICStoBEA(EmploymentFBS, year, "Detail")
diff --git a/R/InteregionalCommodityFlowFunctions.R b/R/InteregionalCommodityFlowFunctions.R
index 57dd746c..22572da3 100644
--- a/R/InteregionalCommodityFlowFunctions.R
+++ b/R/InteregionalCommodityFlowFunctions.R
@@ -55,7 +55,8 @@ calculateLocalandTradedRatios <- function(state, year, SoI = TRUE, ioschema, iol
StateCommOutput <- loadStateIODataFile(paste0("State_",
iolevel,
"_CommodityOutput_",
- year))[[state]]
+ year),
+ ver = model_ver)[[state]]
colnames(StateCommOutput) <- "CommodityOutput"
# Merge with BEAtoTradedorLocal
StateCommOutput <- merge(BEAtoTradedorLocal, StateCommOutput,
diff --git a/R/StateSupplyFunctions.R b/R/StateSupplyFunctions.R
index b7a83339..21bb3e73 100644
--- a/R/StateSupplyFunctions.R
+++ b/R/StateSupplyFunctions.R
@@ -17,7 +17,7 @@ getNationalMake <- function(iolevel, year) {
#' @return A data frame contains state GVA for all states at a specific year.
getStateGVA <- function(year) {
# Load pre-saved state GVA data
- StateGVA <- loadStateIODataFile(paste0("State_GVA_", year))
+ StateGVA <- loadStateIODataFile(paste0("State_GVA_", year), ver = model_ver)
StateGVA <- StateGVA[, c("GeoName", "LineCode", as.character(year))]
return(StateGVA)
}
@@ -72,7 +72,8 @@ calculateStatetoBEASummaryAllocationFactor <- function(year, allocationweightsou
allocation_factors[allocation_factors$LineCode == linecode, "factor"] <- weight_vector/sum(weight_vector)
}
# Load BEA state Emp
- BEAStateEmp <- loadStateIODataFile(paste0("State_Employment_", year))
+ BEAStateEmp <- loadStateIODataFile(paste0("State_Employment_", year),
+ ver = model_ver)
# Map BEA state Emp (from LineCode) to BEA Summary
BEAStateEmp <- merge(BEAStateEmp[BEAStateEmp$GeoName %in%
c(state.name, "District of Columbia"),
@@ -301,7 +302,8 @@ estimateStateCommodityOutputRatiofromAlternativeSources <- function(year) {
#' @return A data frame contains State Employment by BEA Summary.
getStateEmploymentbyBEASummary <- function(year) {
# BEA State Emp
- BEAStateEmp <- loadStateIODataFile(paste0("State_Employment_", year))
+ BEAStateEmp <- loadStateIODataFile(paste0("State_Employment_", year),
+ ver = model_ver)
EmptoBEAmapping <- loadBEAStateDatatoBEASummaryMapping("Employment")
BEAStateEmp <- merge(BEAStateEmp[, c("GeoName", "LineCode", as.character(year))],
EmptoBEAmapping, by = "LineCode")
@@ -349,7 +351,7 @@ getAgFisheryForestryCommodityOutput <- function(year) {
Ag <- Ag[, c("BEA_2012_Summary_Code", "State", "Value", "Ratio")]
# Load Fishery Landings and Forestry CutValue data from flowsa
- Fishery <- getFlowsaData("NOAA_FisheryLandings", year)
+ Fishery <- getFlowsaData("NOAA_FisheriesLandings", year)
FisheryForestry <- rbind(Fishery,
USDA_ERS_FIWS[USDA_ERS_FIWS$ActivityProducedBy == "All Species", ])
# Convert State_FIPS to numeric values
@@ -383,10 +385,19 @@ getFAFCommodityOutput <- function(year) {
FIPS_STATE <- readCSV(system.file("extdata", "StateFIPS.csv",
package = "stateior"))
# Load pre-saved FAF4 commodity flow data
- FAF <- loadStateIODataFile(paste("FAF", year, sep = "_"))
+ FAF <- loadStateIODataFile(paste("FAF", year, sep = "_"), ver = model_ver)
+ # Define value_col and origin_col
+ if (year == 2012) {
+ value_col <- paste0("value_", year)
+ } else if (year %in% c(2013:2018)) {
+ value_col <- paste0("curval_", year)
+ } else {
+ value_col <- paste0("current_value_", year)
+ }
+ origin_col <- colnames(FAF)[startsWith(colnames(FAF), "dms_orig")]
# Keep domestic and export trade, keep useful columns, then rename
FAF <- FAF[FAF$trade_type %in% c(1, 3),
- c("dms_origst", "sctg2", paste0("value_", year))]
+ c(origin_col, "sctg2", paste0("value_", year))]
colnames(FAF) <- c("State_FIPS", "SCTG", "Value")
# Calculate state commodity output by SCTG
FAF <- merge(FAF, FIPS_STATE, by = "State_FIPS", all.x = TRUE)
diff --git a/R/StateUseFunctions.R b/R/StateUseFunctions.R
index 3dca3ae4..4f7b87e1 100644
--- a/R/StateUseFunctions.R
+++ b/R/StateUseFunctions.R
@@ -17,7 +17,8 @@ getNationalUse <- function(iolevel, year) {
#' @return A data frame contains state Compensation for all states at a specific year.
getStateEmpCompensation <- function(year) {
# Load pre-saved state Compensation 2007-2017
- StateEmpCompensation <- loadStateIODataFile(paste0("State_Compensation_", year))
+ StateEmpCompensation <- loadStateIODataFile(paste0("State_Compensation_", year),
+ ver = model_ver)
StateEmpCompensation <- StateEmpCompensation[, c("GeoName", "LineCode", as.character(year))]
return(StateEmpCompensation)
}
@@ -27,7 +28,8 @@ getStateEmpCompensation <- function(year) {
#' @return A data frame contains state Tax for all states at a specific year.
getStateTax <- function(year) {
# Load pre-saved state Tax 2007-2017
- StateTax <- loadStateIODataFile(paste0("State_Tax_", year))
+ StateTax <- loadStateIODataFile(paste0("State_Tax_", year),
+ ver = model_ver)
StateTax <- StateTax[, c("GeoName", "LineCode", as.character(year))]
return(StateTax)
}
@@ -37,7 +39,8 @@ getStateTax <- function(year) {
#' @return A data frame contains state GOS for all states at a specific year.
getStateGOS <- function(year) {
# Load pre-saved state GOS 2007-2017
- StateGOS <- loadStateIODataFile(paste0("State_GOS_", year))
+ StateGOS <- loadStateIODataFile(paste0("State_GOS_", year),
+ ver = model_ver)
StateGOS <- StateGOS[, c("GeoName", "LineCode", as.character(year))]
return(StateGOS)
}
@@ -47,7 +50,8 @@ getStateGOS <- function(year) {
#' @return A data frame contains state PCE for all states at a specific year.
getStatePCE <- function(year) {
# Load pre-saved state PCE
- StatePCE <- loadStateIODataFile(paste0("State_PCE_", year))
+ StatePCE <- loadStateIODataFile(paste0("State_PCE_", year),
+ ver = model_ver)
StatePCE <- StatePCE[, c("GeoName", "LineCode", as.character(year))]
return(StatePCE)
}
@@ -59,7 +63,8 @@ getStatePCE <- function(year) {
#' @return A data frame contains state-US Commodity Output ratios at BEA Summary level.
calculateStateCommodityOutputRatio <- function(year) {
# Load state Make table
- StateMake_ls <- loadStateIODataFile(paste0("State_Summary_Make_", year))
+ StateMake_ls <- loadStateIODataFile(paste0("State_Summary_Make_", year),
+ ver = model_ver)
states <- names(StateMake_ls)
# Load US Commodity output
US_Make <- getNationalMake("Summary", year)
@@ -87,7 +92,8 @@ estimateStateIntermediateConsumption <- function(year) {
commodities <- getVectorOfCodes("Summary", "Commodity")
# Load state Make table
- StateMake_ls <- loadStateIODataFile(paste0("State_Summary_Make_", year))
+ StateMake_ls <- loadStateIODataFile(paste0("State_Summary_Make_", year),
+ ver = model_ver)
# Load US Make and Use tables
US_Make <- getNationalMake("Summary", year)
US_Use <- getNationalUse("Summary", year)
@@ -444,7 +450,8 @@ estimateStateExport <- function(year) {
State_Export <- State_Export[, "F040", drop = FALSE]
# Adjust state international exports to avoid state exports > state commodity output
- StateMake_ls <- loadStateIODataFile(paste0("State_Summary_Make_", year))
+ StateMake_ls <- loadStateIODataFile(paste0("State_Summary_Make_", year),
+ ver = model_ver)
State_CommOutput <- as.data.frame(unlist(lapply(names(StateMake_ls),
function(x) colSums(StateMake_ls[[x]]))))
rownames(State_CommOutput) <- paste(rep(names(StateMake_ls), each = ncol(StateMake_ls[[1]])),
@@ -511,7 +518,8 @@ estimateStateExport <- function(year) {
#' @return A data frame contains state S&L government expenditure ratio for all states at a specific year at BEA Summary level.
calculateStateSLGovExpenditureRatio <- function(year) {
# Load state and local government expenditure
- GovExp <- loadStateIODataFile(paste0("Census_StateLocalGovExpenditure_", year))
+ GovExp <- loadStateIODataFile(paste0("Census_StateLocalGovExpenditure_", year),
+ ver = model_ver)
GovExp_statetotal <- rowSums(GovExp[, c(state.name, "District of Columbia")])
GovExp[, "Overseas"] <- GovExp[, "United States Total"] - GovExp_statetotal
# Map to BEA Summary sectors
@@ -635,8 +643,10 @@ calculateStateUSEmpCompensationRatio <- function(year) {
#' @return A data frame contains weighting factor of each expenditure component over US total gov expenditure.
calculateUSGovExpenditureWeightFactor <- function(year, defense) {
# Load data
- GovConsumption <- loadStateIODataFile(paste0("GovConsumption_", year))
- GovInvestment <- loadStateIODataFile(paste0("GovInvestment_", year))
+ GovConsumption <- loadStateIODataFile(paste0("GovConsumption_", year),
+ ver = model_ver)
+ GovInvestment <- loadStateIODataFile(paste0("GovInvestment_", year),
+ ver = model_ver)
# Keep rows by line code
if (defense) {
GovConsumption <- GovConsumption[GovConsumption$Line %in% c(26, 28), ]
diff --git a/R/UtilityFunctions.R b/R/UtilityFunctions.R
index aa0b8768..eb7621d6 100644
--- a/R/UtilityFunctions.R
+++ b/R/UtilityFunctions.R
@@ -149,18 +149,22 @@ getFlowsaData <- function(dataname, year) {
if (dataname == "Employment") {
meta <- configr::read.config(system.file("extdata/", "FlowBySector_metadata.yml",
package = "stateior"))
- filename <- paste(dataname, "state", year, meta[[dataname]], sep = "_")
+ if ("Extension" %in% names(meta[[dataname]][[model_ver]])) {
+ file_extesion <- meta[[dataname]][[model_ver]]
+ } else {
+ file_extesion <- meta[[dataname]][[model_ver]][[as.character(year)]]
+ }
+ filename <- paste(dataname, "state", year, file_extesion, sep = "_")
subdirectory <- "flowsa/FlowBySector"
} else {
meta <- configr::read.config(system.file("extdata/", "FlowByActivity_metadata.yml",
package = "stateior"))
- # Define file name and subdirectory
- if (dataname == "NOAA_FisheryLandings") {
- year <- "2012-2018"
- filename <- paste0(paste(dataname, year, sep = "_"), meta[[dataname]])
+ if ("Extension" %in% names(meta[[dataname]][[model_ver]])) {
+ file_extesion <- meta[[dataname]][[model_ver]]
} else {
- filename <- paste(dataname, year, meta[[dataname]], sep = "_")
+ file_extesion <- meta[[dataname]][[model_ver]][[as.character(year)]]
}
+ filename <- paste(dataname, year, file_extesion, sep = "_")
subdirectory <- "flowsa/FlowByActivity"
}
# Define file directory
@@ -176,18 +180,21 @@ getFlowsaData <- function(dataname, year) {
utils::download.file(file.path(url, filename),
file.path(directory, filename), mode = "wb", quiet = TRUE)
}
- # Load FBA
+ # Load data
df <- as.data.frame(arrow::read_parquet(file.path(directory, filename)))
# Keep state-level data, including 50 states and D.C.
df <- df[substr(df$Location, 1, 2) <= 56 & substr(df$Location, 3, 5) == "000", ]
return(df)
}
-#' Get state IO data registry on Data Commons.
-#' @return A dataframe of state IO data registry on Data Commons.
-getStateIODataRegistryonDataCommons <- function() {
+#' Get data registry on Data Commons.
+#' @param data_group A string specifying name of data group that is used as the
+#' subdirectory in Data Commons, can be "stateio", "flowsa/FlowBySector", or
+#' "flowsa/FlowByActivity".
+#' @return A dataframe of StateIO data registry on Data Commons.
+getRegistryonDataCommons <- function(data_group = "stateio") {
registry_ls <- aws.s3::get_bucket(bucket = "edap-ord-data-commons",
- prefix = "stateio")
+ prefix = data_group)
registry <- cbind.data.frame(basename(sapply(registry_ls, `[[`, "Key")),
sapply(registry_ls, `[[`, "LastModified"),
stringsAsFactors = FALSE)
@@ -195,15 +202,14 @@ getStateIODataRegistryonDataCommons <- function() {
return(registry)
}
-#' Find the latest state IO data on Data Commons.
+#' Find the latest StateIO data on Data Commons.
#' @param filename A string specifying filename, e.g. "State_Summary_Use_2017".
-#' @return File name of the latest state IO data on Data Commons.
+#' @return File name of the latest StateIO data on Data Commons.
findLatestStateIODataonDataCommons <- function(filename) {
- registry <- getStateIODataRegistryonDataCommons()
- f <- basename(registry[startsWith(registry$Key, filename) &
- endsWith(registry$Key, ".rds") &
- which.max(as.Date(registry$LastModified)),
- "Key"])
+ registry <- getRegistryonDataCommons(data_group = "stateio")
+ f <- registry[startsWith(registry$Key, filename) &
+ endsWith(registry$Key, ".rds"), ]
+ f <- basename(f[which.max(as.Date(f$LastModified)), "Key"])
if (length(f) == 0) {
stop(paste(filename, "not avaialble on Data Commons."))
}
@@ -213,7 +219,7 @@ findLatestStateIODataonDataCommons <- function(filename) {
#' Check if file is available on Data Commons. Stop function execution if not.
#' @param file A string specifying file, e.g. "State_Summary_Use_2017_v0.1.0_rds".
checkFileonDataCommons <- function(file) {
- registry <- getStateIODataRegistryonDataCommons()
+ registry <- getRegistryonDataCommons(data_group = "stateio")
f <- basename(registry[startsWith(registry$Key, file) &
endsWith(registry$Key, ".rds"),
"Key"])
@@ -222,7 +228,7 @@ checkFileonDataCommons <- function(file) {
}
}
-#' Download state IO data file from Data Commons and stores in a local data directory.
+#' Download StateIO data file from Data Commons and stores in a local data directory.
#' @param filename A string specifying filename, e.g. "State_Summary_Use_2017".
#' @param ver A string specifying version of the data, default is NULL, can be "v0.1.0".
#' @return An .rds data file downloaded from Data Commons and stored in local directory.
@@ -246,9 +252,9 @@ downloadStateIODatafromDataCommons <- function(filename, ver = NULL) {
file.path(directory, f), mode = "wb", quiet = TRUE)
}
-#' Find the latest state IO data in local data directory.
+#' Find the latest StateIO data in local data directory.
#' @param filename A string specifying filename, e.g. "State_Summary_Use_2017".
-#' @return File name of the latest state IO data in local data directory.
+#' @return File name of the latest StateIO data in local data directory.
findLatestStateIODatainLocalDirectory <- function(filename) {
files <- list.files(path = file.path(rappdirs::user_data_dir(), "stateio"),
pattern = paste0(filename, ".*\\.rds"),
@@ -260,10 +266,10 @@ findLatestStateIODatainLocalDirectory <- function(filename) {
return(f)
}
-#' Load state IO data file from Data Commons or local data directory.
+#' Load StateIO data file from Data Commons or local data directory.
#' @param filename A string specifying filename, e.g. "State_Summary_Use_2017".
#' @param ver A string specifying version of the data, default is NULL, can be "v0.1.0".
-#' @return The pathname to the state IO data file.
+#' @return A StateIO data product (usually a list of dataframes).
#' @export
loadStateIODataFile <- function(filename, ver = NULL) {
# Define file name
@@ -351,7 +357,8 @@ writeDatafileMeta <- function(year, iolevel, dataname, path) {
#' @param year A numeric value between 2007 and 2017 specifying the year of interest.
#' @param iolevel BEA sector level of detail, currently can only be "Summary",
#' theoretically can be "Detail", or "Sector" in future versions.
-#' @param dataname Name of desired IO data, can be "Make", "Use", "DomesticUse", "CommodityOutput, and "IndustryOutput".
+#' @param dataname Name of desired IO data, can be "Make", "Use", "DomesticUse",
+#' "CommodityOutput, and "IndustryOutput".
#' @param path User-defined local path.
#' @return A datetime object for desired data file from local folder.
readDatafileMeta <- function(year, iolevel, dataname, path) {
diff --git a/R/VisualizationFunctions.R b/R/VisualizationFunctions.R
index 3a9be565..f19303b1 100644
--- a/R/VisualizationFunctions.R
+++ b/R/VisualizationFunctions.R
@@ -12,12 +12,12 @@ plotICFandRPC <- function(ICF_df, RPC_df, isSoI = TRUE) {
# ICF
adjust_by <- unique(ICF_df$AdjustBy)
icf_remove_cols <- c("source", "source (adjusted)", "AdjustBy")
- ICF_df_long <- reshape2::melt(ICF_df[, !colnames(ICF_df)%in%icf_remove_cols],
+ ICF_df_long <- reshape2::melt(ICF_df[, !colnames(ICF_df) %in% icf_remove_cols],
id.vars = c("Sector", "Name"))
# RPC
RPC_df <- merge(RPC_df, unique(ICF_df_long[, c("Sector", "Name")]), by = "Sector")
rpc_remove_cols <- c("OverallRPC", "OverallRPC (adjusted)")
- RPC_df_long <- reshape2::melt(RPC_df[, !colnames(RPC_df)%in%rpc_remove_cols],
+ RPC_df_long <- reshape2::melt(RPC_df[, !colnames(RPC_df) %in% rpc_remove_cols],
id.vars = c("Sector", "Name"))
if (isSoI) {
RPC_df_long$variable <- paste("SoI", RPC_df_long$variable)
@@ -29,18 +29,18 @@ plotICFandRPC <- function(ICF_df, RPC_df, isSoI = TRUE) {
p <- ggplot(ICF_df_long, aes(x = value, y = factor(Name, levels = rev(SectorName$Name)))) +
# ICF
geom_line(aes(group = Sector)) +
- geom_point(data = ICF_df_long[ICF_df_long$variable==unique(ICF_df_long$variable)[2], ],
+ geom_point(data = ICF_df_long[ICF_df_long$variable == unique(ICF_df_long$variable)[2], ],
aes(color = variable), size = 3) +
- geom_point(data = ICF_df_long[ICF_df_long$variable==unique(ICF_df_long$variable)[1], ],
+ geom_point(data = ICF_df_long[ICF_df_long$variable == unique(ICF_df_long$variable)[1], ],
aes(color = variable), size = 3) +
# RPC
- geom_line(data = RPC_df_long[RPC_df_long$value>=0, ], aes(group = Sector)) +
- geom_point(data = RPC_df_long[RPC_df_long$value>=0, ], aes(shape = variable), size = 3) +
+ geom_line(data = RPC_df_long[RPC_df_long$value >= 0, ], aes(group = Sector)) +
+ geom_point(data = RPC_df_long[RPC_df_long$value >= 0, ], aes(shape = variable), size = 3) +
scale_shape_manual(values = c(15, 17)) +
# Overall RPC
geom_vline(data = RPC_df, aes(xintercept = mean(RPC_df[, "OverallRPC"]),
linetype = ifelse(isSoI, "SoI Overall RPC",
- "Overall RPC")))+
+ "Overall RPC"))) +
geom_vline(data = RPC_df, aes(xintercept = mean(RPC_df[, "OverallRPC (adjusted)"]),
linetype = ifelse(isSoI, "SoI Overall RPC (adjusted)",
"Overall RPC (adjusted)"))) +
@@ -66,7 +66,7 @@ plotICFandRPC <- function(ICF_df, RPC_df, isSoI = TRUE) {
plotResidual <- function(df) {
adjust_by <- unique(df$AdjustBy)
keep_cols <- c("Sector", "Name", "residual", "residual (adjusted)")
- df_long <- reshape2::melt(df[, colnames(df)%in%keep_cols],
+ df_long <- reshape2::melt(df[, colnames(df) %in% keep_cols],
id.vars = c("Sector", "Name"))
df_long$value <- df_long$value * 1E-9
SectorName <- df[, c("Sector", "Name")]
diff --git a/R/WriteModel.R b/R/WriteModel.R
new file mode 100644
index 00000000..52955a4d
--- /dev/null
+++ b/R/WriteModel.R
@@ -0,0 +1,20 @@
+#' Write StateIO data to specified format, .csv or .xlsx, to output folder.
+#' The data are loaded from Data Commons or local data directory.
+#' @param filename A string specifying filename, e.g. "State_Summary_Use_2017".
+#' @param ver A string specifying version of the data, default is NULL, can be "v0.1.0".
+#' @param state State name.
+#' @param outputfolder A directory to write matrices out to.
+#' @description Writes StateIO data as .csv or .xlsx files to output folder.
+#' @export
+writeStateIODatatoCSV <- function(filename, ver = NULL, state, outputfolder) {
+ data <- loadStateIODataFile(filename, ver)[[state]]
+ if (!dir.exists(outputfolder)) {
+ dir.create(outputfolder, recursive = TRUE)
+ }
+ utils::write.csv(data, file.path(outputfolder, "/", matrix, ".csv"),
+ na = "", row.names = TRUE, fileEncoding = "UTF-8")
+ logging::loginfo(paste0(state, unlist(strsplit(filename, "_"))[4],
+ unlist(strsplit(filename, "_"))[3],
+ " written to ", outputfolder, "."))
+}
+
diff --git a/README.md b/README.md
index 723bf412..9267a294 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
[![v0.1.0](http://img.shields.io/badge/v0.1.0-10.5281/zenodo.6954423-blue.svg)](https://doi.org/10.5281/zenodo.6954423)
`stateior` is an R package for building multi-regional economic input-output (MRIO) tables of states in the United States, refered to as **StateIO** models.
-Currently, `stateior` is capable of creating IO tables for each US state and building two-region MRIO models based on those state IO tables at the [BEA](https://www.bea.gov/) Summary level of resolution in the US for all years from 2012-2017.
+Currently, `stateior` is capable of creating IO tables for each US state and building two-region MRIO models based on those state IO tables at the [BEA](https://www.bea.gov/) Summary level of resolution in the US for all years from 2012-2020.
The two regions are State of Interest (SoI) and Rest of the US (RoUS).
`stateior` was initially conceived in support of creating state-specific versions of [USEEIO models](https://www.epa.gov/land-research/us-environmentally-extended-input-output-useeio-models), but may be used for other purposes where state input-output tables are used.
The package is intended to add transparency and reproducibility to the complex process of generating subnational input-output tables, which are not compiled by any statistical agency.
@@ -27,7 +27,7 @@ Install the most recent release version of `stateior` and attach it to the curre
```r
install.packages("devtools")
-devtools::install_github("USEPA/stateior@v0.1.0")
+devtools::install_github("USEPA/stateior@v0.2.0")
library(stateior)
```
@@ -48,14 +48,24 @@ GA_DomesticUse_2012 <- OneRegionDomesticUse_2012[["Georgia"]]
###################
# Two-Region Data #
###################
-# Load the two region domestic Use tables for 2012 for all states.
+# Load the two-region domestic Use tables for 2012 for all states.
# This will download the data product from a remote server and load it into your R session as an R list.
TwoRegionDomesticUse_2012 <- loadStateIODataFile("TwoRegion_Summary_DomesticUse_2012")
-# Select the two region Use table for Georgia and Rest of the US.
+# Select the two-region Use table for Georgia and Rest of the US.
# This will put this table into a standard R data frame named 'GA_TwoRegionDomesticUse_2012'.
GA_TwoRegionDomesticUse_2012 <- TwoRegionDomesticUse_2012[["Georgia"]]
```
+
+If viewing either one-region or two-region data of a specific state in Excel spreadsheet is preferred, export it to a csv file in a given `outputfolder`.
+
+```r
+# Export 2012 Georgia Use tables to a csv file.
+writeStateIODatatoCSV <- ("State_Summary_DomesticUse_2012", "Georgia", outputfolder)
+# Export 2012 two-region Use table for Georgia and Rest of the US to a csv file.
+writeStateIODatatoCSV <- ("TwoRegion_Summary_DomesticUse_2012", "Georgia", outputfolder)
+```
+
### Use for Developers (usage type #2)
For studying, replicating or modify the code, users will want to clone or copy the source code and review the code in R. See more in [Instructions for Developers](https://github.com/USEPA/stateior/wiki/Instructions-for-developers).
diff --git a/data-raw/BEAData.R b/data-raw/BEAData.R
index e93f9816..3b62e551 100644
--- a/data-raw/BEAData.R
+++ b/data-raw/BEAData.R
@@ -1,9 +1,10 @@
#' Get BEA state GDP data (including GVA, Employment Compensation, Tax, and GOS)
-#' from 2010 to the latest year available.
+#' for a specified year.
#' @param dataname A text indicating what state data to get.
#' Can be GVA, employee compensation, taxes, and gross operating surplus.
-#' @return A data frame of BEA state data from 2010 to the latest year available.
-getBEAStateGDPData <- function(dataname) {
+#' @param year A numeric value specifying year of interest.
+#' @return A data frame of BEA state data for the specified year.
+getBEAStateGDPData <- function(dataname, year) {
# Create the placeholder file
StateGVAzip <- "inst/extdata/SAGDP.zip"
dir <- "inst/extdata/SAGDP"
@@ -32,39 +33,38 @@ getBEAStateGDPData <- function(dataname) {
date_accessed <- as.character(as.Date(file.mtime(StateGVAzip)))
# Find latest data year
file_split <- unlist(stringr::str_split(FileName, pattern = "_"))
- end_year <- sub(".csv", "", file_split[length(file_split)])
- # Create year_cols
- year_cols <- as.character(2010:end_year)
+ endyear <- sub(".csv", "", file_split[length(file_split)])
# Load state data
- StateData <- utils::read.table(FullFileName, sep = ",",
- header = TRUE, stringsAsFactors = FALSE,
- check.names = FALSE, fill = TRUE)
- # Get date_last_modified
- date_last_modified <- stringr::str_match(StateData[grep("Last updated: ",
- StateData$GeoFIPS),
- "GeoFIPS"],
- "Last updated: (.*?)--")[2]
- StateData <- StateData[!is.na(StateData$LineCode), ]
- # Assign NaN to (L) Less than $50,000.
- StateData[StateData == "(L)"] <- NaN
- # Assign NA to (D) Not shown to avoid disclosure of confidential information;
- # estimates are included in higher-level totals.
- StateData[StateData == "(D)"] <- NA
- # Replace (NA) with NA
- StateData[StateData == "(NA)"] <- NA
- # Convert all the other values to numeric
- StateData[, year_cols] <- sapply(StateData[, year_cols], as.numeric)
- # Convert values to current US $
- if (unique(StateData$Unit) == "Millions of current dollars") {
- StateData[, year_cols] <- StateData[, year_cols]*1E6
- } else if (unique(StateData$Unit) == "Thousands of dollars") {
- StateData[, year_cols] <- StateData[, year_cols]*1E3
- }
- # Keep state-level data
- geo_names <- c(state.name, "District of Columbia", "United States *")
- # Save data
- for (year in year_cols) {
+ if (year <= endyear) {
+ StateData <- utils::read.table(FullFileName, sep = ",",
+ header = TRUE, stringsAsFactors = FALSE,
+ check.names = FALSE, fill = TRUE)
+ # Get date_last_modified
+ date_last_modified <- stringr::str_match(StateData[grep("Last updated: ",
+ StateData$GeoFIPS),
+ "GeoFIPS"],
+ "Last updated: (.*?)--")[2]
+ StateData <- StateData[!is.na(StateData$LineCode), ]
+ # Assign NaN to (L) Less than $50,000.
+ StateData[StateData == "(L)"] <- NaN
+ # Assign NA to (D) Not shown to avoid disclosure of confidential information;
+ # estimates are included in higher-level totals.
+ StateData[StateData == "(D)"] <- NA
+ # Replace (NA) with NA
+ StateData[StateData == "(NA)"] <- NA
+ # Convert all the other values to numeric
+ year_col <- as.character(year)
+ StateData[, year_col] <- sapply(StateData[, year_col], as.numeric)
+ # Convert values to current US $
+ if (unique(StateData$Unit) == "Millions of current dollars") {
+ StateData[, year_col] <- StateData[, year_col]*1E6
+ } else if (unique(StateData$Unit) == "Thousands of dollars") {
+ StateData[, year_col] <- StateData[, year_col]*1E3
+ }
+ # Keep state-level data
+ geo_names <- c(state.name, "District of Columbia", "United States *")
+ # Save data
df <- StateData[StateData$GeoName %in% geo_names,
c("GeoName", "LineCode", "Description", year)]
# Write data to .rds
@@ -81,19 +81,21 @@ getBEAStateGDPData <- function(dataname) {
url = "https://apps.bea.gov/regional/zip/SAGDP.zip",
date_last_modified = date_last_modified,
date_accessed = date_accessed)
+ } else {
+ logging::logwarn(paste(year, "state", dataname, "data is not avaliable from BEA.",
+ "Nothing is returned."))
}
}
# Download, save and document BEA state economic data
-# from 2010 to the latest year available
for (dataname in c("GVA", "Tax", "Compensation", "GOS")) {
- getBEAStateGDPData(dataname)
+ getBEAStateGDPData(dataname, year)
}
-#' Get BEA state PCE (personal consumption expenditures) data from 2010 to the
-#' latest year available.
-#' @return A data frame of BEA state PCE data from 2010 to the latest year
+#' Get BEA state PCE (personal consumption expenditures) data for a specified year.
+#' @param year A numeric value specifying year of interest.
+#' @return A data frame of BEA state PCE data for the specified year.
#' available.
-getBEAStatePCE <- function() {
+getBEAStatePCE <- function(year) {
# Create the placeholder file
StatePCEzip <- "inst/extdata/SAPCE.zip"
dir <- "inst/extdata/SAPCE"
@@ -114,28 +116,27 @@ getBEAStatePCE <- function() {
date_accessed <- as.character(as.Date(file.mtime(StatePCEzip)))
# Find latest data year
file_split <- unlist(stringr::str_split(FileName, pattern = "_"))
- end_year <- sub(".csv", "", file_split[length(file_split)])
- # Create year_cols
- year_cols <- as.character(2010:end_year)
+ endyear <- sub(".csv", "", file_split[length(file_split)])
# Load state PCE data
- StatePCE <- utils::read.table(FullFileName, sep = ",",
- header = TRUE, stringsAsFactors = FALSE,
- check.names = FALSE, fill = TRUE)
- # Get date_last_modified
- date_last_modified <- stringr::str_match(StatePCE[grep("Last updated: ",
- StatePCE$GeoFIPS),
- "GeoFIPS"],
- "Last updated: (.*?)--")[2]
- StatePCE <- StatePCE[!is.na(StatePCE$Line), ]
- # Replace NA with zero
- StatePCE[is.na(StatePCE)] <- 0
- # Convert values to current US $
- StatePCE[, year_cols] <- StatePCE[, year_cols]*1E6
- # Keep state-level data
- geo_names <- c(state.name, "District of Columbia", "United States")
- # Save data
- for (year in year_cols) {
+ if (year <= endyear) {
+ StatePCE <- utils::read.table(FullFileName, sep = ",",
+ header = TRUE, stringsAsFactors = FALSE,
+ check.names = FALSE, fill = TRUE)
+ # Get date_last_modified
+ date_last_modified <- stringr::str_match(StatePCE[grep("Last updated: ",
+ StatePCE$GeoFIPS),
+ "GeoFIPS"],
+ "Last updated: (.*?)--")[2]
+ StatePCE <- StatePCE[!is.na(StatePCE$Line), ]
+ # Replace NA with zero
+ StatePCE[is.na(StatePCE)] <- 0
+ # Convert values to current US $
+ year_col <- as.character(year)
+ StatePCE[, year_col] <- StatePCE[, year_col]*1E6
+ # Keep state-level data
+ geo_names <- c(state.name, "District of Columbia", "United States")
+ # Save data
df <- StatePCE[StatePCE$GeoName %in% geo_names,
c("GeoName", "LineCode", "Description", year)]
# Write data to .rds
@@ -152,10 +153,13 @@ getBEAStatePCE <- function() {
url = "https://apps.bea.gov/regional/zip/SAPCE.zip",
date_last_modified = date_last_modified,
date_accessed = date_accessed)
+ } else {
+ logging::logwarn(paste(year, "state PCE data is not avaliable from BEA.",
+ "Nothing is returned."))
}
}
# Download, save and document BEA state PCE from 2010 to the latest year available.
-getBEAStatePCE()
+getBEAStatePCE(year)
#' Get BEA state foreign travel and expenditures by U.S. residents and
#' expenditures in the U.S. by nonresidents data from 2010 to the latest year
@@ -236,8 +240,8 @@ getBEAStateResidentAndNonresidentSpending <- function() {
# the latest year available.
getBEAStateResidentAndNonresidentSpending()
-#' Download BEA US Gov Expenditure data (NIPA table) from 2007-2019.
-#' @return A data frame of BEA US Gov Expenditure data (NIPA table) from 2007-2019.
+#' Download BEA US Gov Expenditure data (NIPA table).
+#' @return A data frame of BEA US Gov Expenditure data (NIPA table).
downloadBEAGovExpenditure <- function() {
TableName <- "Section3All_xls.xlsx"
dir <- "inst/extdata/StateLocalGovFinances"
@@ -256,11 +260,11 @@ downloadBEAGovExpenditure <- function() {
return(ls)
}
-#' Get BEA US Gov Investment data by state (Table 3.9.5 annual) from 2010 to the
-#' latest year available.
-#' @return A data frame of BEA US Gov Investment data from 2010 to the latest
-#' year available.
-getBEAGovInvestment <- function() {
+#' Get BEA US Gov Investment data by state (Table 3.9.5 annual) for a specified
+#' year.
+#' @param year A numeric value specifying year of interest.
+#' @return A data frame of BEA US Gov Investment data for the specified year.
+getBEAGovInvestment <- function(year) {
# Download US Gov Expenditure (NIPA table) from BEA
url <- downloadBEAGovExpenditure()[["url"]]
date_accessed <- downloadBEAGovExpenditure()[["date_accessed"]]
@@ -283,16 +287,14 @@ getBEAGovInvestment <- function() {
skip = 7))
# Assign column name to the description column
colnames(GovInvestment)[2] <- "Description"
- # Find latest data year
- end_year <- colnames(GovInvestment)[ncol(GovInvestment)]
- # Create year_cols
- year_cols <- as.character(2010:end_year)
+ # Create year_col
+ year_col <- as.character(year)
# Save data
- for (year in year_cols) {
+ if (year %in% colnames(GovInvestment)) {
df <- GovInvestment[complete.cases(GovInvestment),
c("Line", "Description", year)]
# Convert values from million $ to $
- df[, year] <- df[, year]*1E6
+ df[, year_col] <- df[, year_col]*1E6
# Write data to .rds
data_name <- paste("GovInvestment", year,
utils::packageDescription("stateior", fields = "Version"),
@@ -307,17 +309,20 @@ getBEAGovInvestment <- function() {
url = url,
date_last_modified = date_last_modified,
date_accessed = date_accessed)
+ } else {
+ logging::logwarn(paste(year, "state-level US government investment data is not",
+ "avaliable from BEA. Nothing is returned."))
}
}
-# Download, save and document BEA US government investment by state data from
-# 2010 to the latest year available.
-getBEAGovInvestment()
+# Download, save and document BEA US government investment data.
+getBEAGovInvestment(year)
-#' Get BEA US Gov Consumption data by state (Table 3.10.5 annual) from 2010
-#' to the latest year available.
-#' @return A data frame of BEA US Gov Consumption by state data from 2010
-#' to the latest year available.
-getBEAGovConsumption <- function() {
+#' Get BEA US Gov Consumption data by state (Table 3.10.5 annual) for a specified
+#' year.
+#' @param year A numeric value specifying year of interest.
+#' @return A data frame of BEA US Gov Consumption by state data for the specified
+#' year.
+getBEAGovConsumption <- function(year) {
# Download US Gov Expenditure (NIPA table) from BEA
url <- downloadBEAGovExpenditure()[["url"]]
date_accessed <- downloadBEAGovExpenditure()[["date_accessed"]]
@@ -340,16 +345,14 @@ getBEAGovConsumption <- function() {
skip = 7))
# Assign column name to the description column
colnames(GovConsumption)[2] <- "Description"
- # Find latest data year
- end_year <- colnames(GovConsumption)[ncol(GovConsumption)]
- # Create year_cols
- year_cols <- as.character(2010:end_year)
+ # Create year_col
+ year_col <- as.character(year)
# Save data
- for (year in year_cols) {
+ if (year %in% colnames(GovConsumption)) {
df <- GovConsumption[complete.cases(GovConsumption),
c("Line", "Description", year)]
# Convert values from million $ to $
- GovConsumption[, year_cols] <- GovConsumption[, year]*1E6
+ GovConsumption[, year_col] <- GovConsumption[, year_col]*1E6
# Write data to .rds
data_name <- paste("GovConsumption", year,
utils::packageDescription("stateior", fields = "Version"),
@@ -364,11 +367,13 @@ getBEAGovConsumption <- function() {
url = url,
date_last_modified = date_last_modified,
date_accessed = date_accessed)
+ } else {
+ logging::logwarn(paste(year, "state-level US government consumption data is not",
+ "avaliable from BEA. Nothing is returned."))
}
}
-# Download, save and document BEA US government consumption by state data from
-# 2010 to the latest year available.
-getBEAGovConsumption()
+# Download, save and document BEA US government consumption by state data
+getBEAGovConsumption(year)
diff --git a/data-raw/BEAData_wAPI.R b/data-raw/BEAData_wAPI.R
index d23391cf..ded2eb9f 100644
--- a/data-raw/BEAData_wAPI.R
+++ b/data-raw/BEAData_wAPI.R
@@ -1,8 +1,8 @@
-#' Get BEA state employment (full-time and part-time) data from the earliest to
-#' the latest year available.
-#' @return A data frame of BEA state employment data from the earliest to the
-#' latest year available.
-getBEAStateEmployment <- function() {
+#' Get BEA state employment (full-time and part-time) data for a specified year.
+#' Use BEA API guide https://apps.bea.gov/API/docs/index.htm.
+#' @param year A numeric value specifying year of interest.
+#' @return A data frame of BEA state employment data for the specified year.
+getBEAStateEmployment <- function(year) {
APIkey <- readLines(rappdirs::user_data_dir("BEA_API_KEY.txt"), warn = FALSE)
linecodes_txt <- paste0("https://apps.bea.gov/api/data/?&UserID=",
APIkey,
@@ -19,14 +19,14 @@ getBEAStateEmployment <- function() {
DateLastModified <- data.frame()
for (linecode in keys) {
StateEmp_linecode_txt <- paste0("https://apps.bea.gov/api/data/?&UserID=",
- APIkey,
- "&method=GetData",
- "&datasetname=Regional",
- "&TableName=SAEMP25N",
- "&LineCode=", linecode,
- "&GeoFIPS=STATE",
- "&Year=Last10",
- "&ResultFormat=json")
+ APIkey,
+ "&method=GetData",
+ "&datasetname=Regional",
+ "&TableName=SAEMP25N",
+ "&LineCode=", linecode,
+ "&GeoFIPS=STATE",
+ "&Year=LAST10", # can be "ALL" to incl. 1998-
+ "&ResultFormat=json")
response <- jsonlite::fromJSON(StateEmp_linecode_txt)
# Get employment data by linecode
StateEmp_linecode <- response$BEAAPI$Results$Data
@@ -48,7 +48,7 @@ getBEAStateEmployment <- function() {
}
# Save data
- for (year in min(StateEmp$TimePeriod):max(StateEmp$TimePeriod)) {
+ if (year <= max(StateEmp$TimePeriod)) {
# Reshape to wide table
df <- reshape2::dcast(StateEmp,
GeoFips + GeoName + LineCode ~ TimePeriod,
@@ -67,8 +67,10 @@ getBEAStateEmployment <- function() {
url = "https://apps.bea.gov/api",
date_last_modified = unique(DateLastModified[, 1]),
date_accessed = as.character(Sys.Date()))
+ } else {
+ logging::logwarn(paste(year, "state employment data is not avaliable from BEA.",
+ "Nothing is returned."))
}
}
-# Download, save and document BEA state employment data from the earliest to the
-# latest year available.
-getBEAStateEmployment()
+# Download, save and document BEA state employment data
+getBEAStateEmployment(year)
diff --git a/data-raw/CensusData.R b/data-raw/CensusData.R
index 162fc2d3..6393dbef 100644
--- a/data-raw/CensusData.R
+++ b/data-raw/CensusData.R
@@ -1,8 +1,8 @@
#' Get US import/export table from usatrade.census.gov, and convert it to Census
#' import/export table format.
-#' @param year A numeric value between 2012 and 2017 specifying the year of interest.
+#' @param year A numeric value specifying year of interest.
#' @param flow_ratio_type Type of commodity flow, can be "export" or "import".
-#' @return A data frame contains US import/export data from 2012-2017.
+#' @return A data frame contains US import/export data for the specified year.
getCensusUSATradebyNAICS <- function(year, flow_ratio_type) {
# Load the downloaded table from usatrade.census.gov
FileName <- paste0("Census_USATrade",
@@ -42,12 +42,14 @@ getCensusUSATradebyNAICS <- function(year, flow_ratio_type) {
date_accessed = date_last_modified)
}
# Download, save and document 2012 state trade data (from Census USA Trade Export and Import)
-Census_USATradeExport_2012 <- getCensusUSATradebyNAICS(2012, "export")
-Census_USATradeImport_2012 <- getCensusUSATradebyNAICS(2012, "import")
+if (year == 2012) {
+ getCensusUSATradebyNAICS(2012, "export")
+ getCensusUSATradebyNAICS(2012, "import")
+}
#' Get Census export by NAICS data for a specific year.
#' Find guide at https://www.census.gov/foreign-trade/reference/guides/Guide%20to%20International%20Trade%20Datasets.pdf
-#' @param year A numeric value between 2013 and current year specifying the year
+#' @param year A numeric value larger than 2012 specifying year of interest.
#' of interest.
#' @return A data frame contains state export by NAICS data for the specified year.
getCensusStateExportbyNAICS <- function(year) {
@@ -59,44 +61,52 @@ getCensusStateExportbyNAICS <- function(year) {
"?get=NAICS,CTY_NAME,STATE,ALL_VAL_YR&YEAR=",
year,
"&MONTH=12")
- # Download table and convert to dataframe
- export <- as.data.frame(jsonlite::fromJSON(url),
- stringsAsFactors = FALSE)[-1, -6]
# Get date_last_modified
date_last_modified <- jsonlite::fromJSON(base_url)$dataset$modified
- # Add column names
- colnames(export) <- c("NAICS", "CountryName", "State", "Value", "Year")
- # Convert specific columns to numeric format
- export[, c("Value", "Year")] <- sapply(export[, c("Value", "Year")], as.numeric)
- # Keep export by state (!STATE=="") and convert state abbreviation to state name
- export_states <- export[!export$NAICS == "" & export$State %in% c(state.abb, "DC"), ]
- state_names <- c(state.name, "District of Columbia")
- export_states$State <- state_names[match(export_states$State, c(state.abb, "DC"))]
- # Write data to .rds
- data_name <- paste("Census_StateExport", year,
- utils::packageDescription("stateior", fields = "Version"),
- sep = "_")
- saveRDS(object = export_states,
- file = paste0(file.path("data", data_name), ".rds"))
- # Write metadata to JSON
- useeior:::writeMetadatatoJSON(package = "stateior",
- name = data_name,
- year = year,
- source = "US Census Bureau",
- url = url,
- date_last_modified = date_last_modified,
- date_accessed = as.character(Sys.Date()))
+ # Download table and convert to dataframe
+ tryCatch(
+ exp = {
+ default_options <- options()
+ export <- as.data.frame(jsonlite::fromJSON(url),
+ stringsAsFactors = FALSE)[-1, -6]
+ options(default_options)
+ # Add column names
+ colnames(export) <- c("NAICS", "CountryName", "State", "Value", "Year")
+ # Convert specific columns to numeric format
+ export[, c("Value", "Year")] <- sapply(export[, c("Value", "Year")], as.numeric)
+ # Keep export by state (!STATE=="") and convert state abbreviation to state name
+ export_states <- export[!export$NAICS == "" & export$State %in% c(state.abb, "DC"), ]
+ state_names <- c(state.name, "District of Columbia")
+ export_states$State <- state_names[match(export_states$State, c(state.abb, "DC"))]
+ # Write data to .rds
+ data_name <- paste("Census_StateExport", year,
+ utils::packageDescription("stateior", fields = "Version"),
+ sep = "_")
+ saveRDS(object = export_states,
+ file = paste0(file.path("data", data_name), ".rds"))
+ # Write metadata to JSON
+ useeior:::writeMetadatatoJSON(package = "stateior",
+ name = data_name,
+ year = year,
+ source = "US Census Bureau",
+ url = url,
+ date_last_modified = date_last_modified,
+ date_accessed = as.character(Sys.Date()))
+ },
+ error = function(e) {
+ stop(paste(year, "state export data is not avaliable from Census.",
+ "Nothing is returned."))
+ }
+ )
}
-# Download, save and document Census state export data from 2013 to the latest
-# year available
-for (year in 2013:(as.numeric(format(Sys.Date(), "%Y")) - 1)) {
+# Download, save and document Census state export data for specified year
+if (year >= 2013) {
getCensusStateExportbyNAICS(year)
}
#' Get Census import by NAICS data for a specific year.
#' Find guide at https://www.census.gov/foreign-trade/reference/guides/Guide%20to%20International%20Trade%20Datasets.pdf
-#' @param year A numeric value between 2013 and current year specifying the year
-#' of interest.
+#' @param year A numeric value larger than 2012 specifying year of interest.
#' @return A data frame contains state import by NAICS data for the specified year.
getCensusStateImportbyNAICS <- function(year) {
# Create URL
@@ -107,43 +117,51 @@ getCensusStateImportbyNAICS <- function(year) {
"?get=NAICS,CTY_NAME,STATE,GEN_VAL_YR&YEAR=",
year,
"&MONTH=12")
- # Download table and convert to dataframe
- import <- as.data.frame(jsonlite::fromJSON(url),
- stringsAsFactors = FALSE)[-1, -6]
# Get date_last_modified
date_last_modified <- jsonlite::fromJSON(base_url)$dataset$modified
- # Add column names
- colnames(import) <- c("NAICS", "CountryName", "State", "Value", "Year")
- # Convert specific columns to numeric format
- import[, c("Value", "Year")] <- sapply(import[, c("Value", "Year")], as.numeric)
- # Keep import by state (!STATE=="") and convert state abbreviation to state name
- import_states <- import[!import$NAICS == "" & import$State %in% c(state.abb, "DC"), ]
- state_names <- c(state.name, "District of Columbia")
- import_states$State <- state_names[match(import_states$State, c(state.abb, "DC"))]
- # Write data to .rds
- data_name <- paste("Census_StateImport", year,
- utils::packageDescription("stateior", fields = "Version"),
- sep = "_")
- saveRDS(object = import_states,
- file = paste0(file.path("data", data_name), ".rds"))
- # Write metadata to JSON
- useeior:::writeMetadatatoJSON(package = "stateior",
- name = data_name,
- year = year,
- source = "US Census Bureau",
- url = url,
- date_last_modified = date_last_modified,
- date_accessed = as.character(Sys.Date()))
+ tryCatch(
+ exp = {
+ # Download table and convert to dataframe
+ default_options <- options()
+ import <- as.data.frame(jsonlite::fromJSON(url),
+ stringsAsFactors = FALSE)[-1, -6]
+ options(default_options)
+ # Add column names
+ colnames(import) <- c("NAICS", "CountryName", "State", "Value", "Year")
+ # Convert specific columns to numeric format
+ import[, c("Value", "Year")] <- sapply(import[, c("Value", "Year")], as.numeric)
+ # Keep import by state (!STATE=="") and convert state abbreviation to state name
+ import_states <- import[!import$NAICS == "" & import$State %in% c(state.abb, "DC"), ]
+ state_names <- c(state.name, "District of Columbia")
+ import_states$State <- state_names[match(import_states$State, c(state.abb, "DC"))]
+ # Write data to .rds
+ data_name <- paste("Census_StateImport", year,
+ utils::packageDescription("stateior", fields = "Version"),
+ sep = "_")
+ saveRDS(object = import_states,
+ file = paste0(file.path("data", data_name), ".rds"))
+ # Write metadata to JSON
+ useeior:::writeMetadatatoJSON(package = "stateior",
+ name = data_name,
+ year = year,
+ source = "US Census Bureau",
+ url = url,
+ date_last_modified = date_last_modified,
+ date_accessed = as.character(Sys.Date()))
+ },
+ error = function(e) {
+ stop(paste(year, "state import data is not avaliable from Census.",
+ "Nothing is returned."))
+ }
+ )
}
-# Download, save and document Census state import data from 2013 to the latest
-# year available
-for (year in 2013:(as.numeric(format(Sys.Date(), "%Y")) - 1)) {
+# Download, save and document Census state import data for specified year
+if (year >= 2013) {
getCensusStateImportbyNAICS(year)
}
#' Download Census state and local gov expenditure for a specific year.
-#' @param year A numeric value between 2012 and 2017 specifying the year
-#' of interest.
+#' @param year A numeric value specifying year of interest.
#' @return A data frame containing Census state and local gov expenditure for
#' the specified year.
getStateLocalGovExpenditure <- function(year) {
@@ -159,67 +177,84 @@ getStateLocalGovExpenditure <- function(year) {
} else {
FileType <- ".xlsx"
}
- # Create url
- url <- paste0(base_url, year, "/summary-tables/", substr(year, 3, 4),
- "slsstab1", table, FileType)
- TableName <- paste0(substr(year, 3, 4), "slsstab1", table, FileType)
- directory <- "inst/extdata/StateLocalGovFinances/"
- if (!file.exists(directory)) {
- dir.create(directory, recursive = TRUE)
- }
- FullFileName <- file.path(directory, TableName)
- # Download file
- if (!file.exists(FullFileName)) {
- utils::download.file(url, FullFileName, mode = "wb")
- }
- date_accessed <- as.character(as.Date(file.mtime(FullFileName)))
- # Specify rows to skip based on year
- if (year %in% c(2008, 2013:2016)) {
- skip_rows <- 9
- } else if (year %in% c(2009:2011)) {
- skip_rows <- 8
+ if (year == 2018) {
+ suffix <- "_revised"
} else {
- skip_rows <- 7
+ suffix <- ""
}
- # Load table
- df_i <- as.data.frame(readxl::read_excel(FullFileName, sheet = 1,
- col_names = TRUE, skip = skip_rows))
- # Save date_last_modified
- date_last_modified_i <- sub("Revision date: ",
- "",
- df_i[grep("Revision date: ",
- df_i$Description), "Description"])
- date_last_modified_ls[[table]] <- date_last_modified_i
- # Keep Expenditures only
- df_i <- df_i[which(df_i$Description == "Expenditure1"):nrow(df_i), ]
- if (year > 2011) {
- Line <- as.integer(df_i[complete.cases(df_i), 1])
+ # Create url
+ url <- paste0(base_url, year, "/summary-tables/", substr(year, 3, 4),
+ "slsstab1", table, suffix, FileType)
+ if (year >= 2018) {
+ url <- sub("summary-tables/", "", url)
}
- df_i <- df_i[, colnames(df_i) %in% c("Description", "United States Total",
- state.name, "District of Columbia")]
- df_ls[[table]] <- df_i[complete.cases(df_i), ]
+ TableName <- paste0(substr(year, 3, 4), "slsstab1", table, suffix, FileType)
+ directory <- "inst/extdata/StateLocalGovFinances"
+ tryCatch(
+ exp = {
+ if (!file.exists(directory)) {
+ dir.create(directory, recursive = TRUE)
+ }
+ FullFileName <- file.path(directory, TableName)
+ # Download file
+ if (!file.exists(FullFileName)) {
+ suppressWarnings(utils::download.file(url, FullFileName, mode = "wb"))
+ }
+ date_accessed <- as.character(as.Date(file.mtime(FullFileName)))
+ # Specify rows to skip based on year
+ if (year %in% c(2012, 2017)) {
+ skip_rows <- 7
+ } else if (year %in% c(2009:2011)) {
+ skip_rows <- 8
+ } else {
+ skip_rows <- 9
+ }
+ # Load table
+ df_i <- as.data.frame(readxl::read_excel(FullFileName, sheet = 1,
+ col_names = TRUE, skip = skip_rows))
+ # Save date_last_modified
+ date_last_modified_i <- sub("Revision date: ",
+ "",
+ df_i[grep("Revision date: ",
+ df_i$Description), "Description"])
+ date_last_modified_ls[[table]] <- date_last_modified_i
+ # Keep Expenditures only
+ df_i <- df_i[which(df_i$Description == "Expenditure1"):nrow(df_i), ]
+ if (year > 2011) {
+ Line <- as.integer(df_i[complete.cases(df_i), 1])
+ }
+ df_i <- df_i[, colnames(df_i) %in% c("Description", "United States Total",
+ state.name, "District of Columbia")]
+ df_ls[[table]] <- df_i[complete.cases(df_i), ]
+ },
+ error = function(e) {
+ stop(paste(year, "state and local government expenditure data",
+ "is not avaliable from Census. Nothing is returned."))
+ }
+ )
+ }
+ if (length(df_ls) > 0) {
+ df_ls[["b"]][, "Description"] <- NULL
+ df <- cbind(Line, df_ls[["a"]], df_ls[["b"]])
+ # Convert values to numeric and $
+ df[, 3:ncol(df)] <- sapply(df[, 3:ncol(df)], as.numeric)*1E3
+ date_last_modified <- unique(unlist(date_last_modified_ls))
+ # Write data to .rds
+ data_name <- paste("Census_StateLocalGovExpenditure", year,
+ utils::packageDescription("stateior", fields = "Version"),
+ sep = "_")
+ saveRDS(object = df,
+ file = paste0(file.path("data", data_name), ".rds"))
+ # Write metadata to JSON
+ useeior:::writeMetadatatoJSON(package = "stateior",
+ name = data_name,
+ year = year,
+ source = "US Census Bureau",
+ url = base_url,
+ date_last_modified = date_last_modified,
+ date_accessed = date_accessed)
}
- df_ls[["b"]][, "Description"] <- NULL
- df <- cbind(Line, df_ls[["a"]], df_ls[["b"]])
- # Convert values to numeric and $
- df[, 3:ncol(df)] <- sapply(df[, 3:ncol(df)], as.numeric)*1E3
- date_last_modified <- unique(unlist(date_last_modified_ls))
- # Write data to .rds
- data_name <- paste("Census_StateLocalGovExpenditure", year,
- utils::packageDescription("stateior", fields = "Version"),
- sep = "_")
- saveRDS(object = df,
- file = paste0(file.path("data", data_name), ".rds"))
- # Write metadata to JSON
- useeior:::writeMetadatatoJSON(package = "stateior",
- name = data_name,
- year = year,
- source = "US Census Bureau",
- url = base_url,
- date_last_modified = date_last_modified,
- date_accessed = date_accessed)
-}
-# Download, save and document 2013-2017 state local government expenditure (from Census)
-for (year in 2012:2017) {
- getStateLocalGovExpenditure(year)
}
+# Download, save and document Census state local government expenditure data
+# for specified year
+getStateLocalGovExpenditure(year)
diff --git a/data-raw/EIAData.R b/data-raw/EIAData.R
index 8f8dbacf..57381a1d 100644
--- a/data-raw/EIAData.R
+++ b/data-raw/EIAData.R
@@ -13,7 +13,7 @@ getEIASEDSCodeDescription <- function() {
"Released: (.*?)
")[2]
date_accessed <- as.character(as.Date(file.mtime(CodeDescFile)))
CodeDesc <- as.data.frame(readxl::read_excel(CodeDescFile,
- sheet = "MSN Descriptions",
+ sheet = "Codes_and_Descriptions",
skip = 9))
# Write data to .rds
data_name <- paste("EIA_SEDS_CodeDescription",
@@ -34,11 +34,13 @@ getEIASEDSCodeDescription <- function() {
getEIASEDSCodeDescription()
#' Get state electricity consumption data (total consumption and interstate trade,
-#' in million kilowatt hours) from EIA State Energy Data Systems (SEDS), from
-#' 2012 to the latest year available
+#' in million kilowatt hours) from EIA State Energy Data Systems (SEDS), for a
+#' specified year.
+#' @param year A numeric value specifying year of interest.
#' @return A data frame of state electricity consumption data (total consumption
-#' and interstate trade, in million kilowatt hours) from EIA SEDS.
-getEIASEDSStateElectricityConsumption <- function() {
+#' and interstate trade, in million kilowatt hours) from EIA SEDS for the specified
+#' year.
+getEIASEDSStateElectricityConsumption <- function(year) {
# Download state electricity consumption data from EIA State Energy Data Systems (SEDS)
ConsumptionFile <- "inst/extdata/EIA_SEDS_consumption.csv"
url <- "https://www.eia.gov/state/seds/sep_use/total/csv/use_all_phy.csv"
@@ -52,12 +54,8 @@ getEIASEDSStateElectricityConsumption <- function() {
Consumption <- utils::read.table(ConsumptionFile, sep = ",", header = TRUE,
stringsAsFactors = FALSE, check.names = FALSE,
fill = TRUE)
- # Find latest data year
- end_year <- colnames(Consumption)[ncol(Consumption)]
- # Create year_cols
- year_cols <- as.character(2012:end_year)
- # Save data
- for (year in year_cols) {
+ if (year %in% colnames(Consumption)) {
+ # Save data
df <- Consumption[, c("State", "MSN", year)]
# Write data to .rds
data_name <- paste("EIA_SEDS_StateElectricityConsumption", year,
@@ -73,8 +71,10 @@ getEIASEDSStateElectricityConsumption <- function() {
url = url,
date_last_modified = date_last_modified,
date_accessed = date_accessed)
+ } else {
+ logging::logwarn(paste(year, "state electricity consumption data is not",
+ "avaliable from EIA SEDS. Nothing is returned."))
}
}
-# Download, save and document EIA's state electricity consumption from 2012 to
-# the latest year available
-getEIASEDSStateElectricityConsumption()
+# Download, save and document EIA SEDS state electricity consumption
+getEIASEDSStateElectricityConsumption(year)
diff --git a/data-raw/FAFData.R b/data-raw/FAFData.R
index aa4521d5..2de27c62 100644
--- a/data-raw/FAFData.R
+++ b/data-raw/FAFData.R
@@ -1,72 +1,99 @@
-# Get Freight Analysis Framework (FAF) data from 2012-2018.
-#' @param year A numeric value between 2012 and 2017 specifying the year of interest.
-#' @return A data frame contains FAF data from 2012-2018.
+# Get Freight Analysis Framework (FAF) data since 2012.
+#' @param year A numeric value specifying year of interest.
+#' @return A data frame contains FAF data since 2012.
getFAF <- function(year) {
- # Create the placeholder file
- if (year == 2012) {
- FAFzip <- "inst/extdata/FAF4.5.1_csv_State.zip"
- } else if (year %in% c(2013:2018)) {
- FAFzip <- "inst/extdata/FAF4.5.1_csv_State_2013-2018.zip"
+ if (year <= 2018) {
+ ### FAF 4.5.1 ###
+ # Create placeholder for zip file and specify filename based on year
+ if (year == 2012) {
+ FAFzip <- "inst/extdata/FAF4.5.1_csv_State.zip"
+ filename <- "inst/extdata/FAF4.5.1_State.csv"
+ } else if (year %in% c(2013:2018)) {
+ FAFzip <- "inst/extdata/FAF4.5.1_csv_State_2013-2018.zip"
+ filename <- paste0("inst/extdata/FAF4.5.1_State_", year, ".csv")
+ }
+ file_baseurl <- paste0("https://www.bts.gov/sites/bts.dot.gov/files/",
+ "legacy/AdditionalAttachmentFiles/")
+ # Use published date on www.bts.gov as the date last modified for FAF data
+ url <- "https://www.bts.gov/faf/faf4"
+ notes <- readLines(url)
+ date_note <- notes[grep("About the Freight Analysis Framework", notes) - 4]
+ date_last_modified <- stringr::str_match(date_note, "day, (.*?)")[2]
+ } else {
+ ### FAF 5.3 ###
+ # Create placeholder for zip file and specify filename based on year
+ # Use forecast data set that includes 2019 and 2020 (mid-range estimates only)
+ FAFzip <- "inst/extdata/FAF5.3_State.zip"
+ filename <- "inst/extdata/FAF5.3_State.csv"
+ file_baseurl <- "https://faf.ornl.gov/faf5/data/download_files/"
+ # Use last modified date on www.faf.ornl.gov
+ url <- "https://faf.ornl.gov/faf5"
+ notes <- readLines(url)
+ date_note <- notes[grep("Last modified:", notes)]
+ date_last_modified <- stringr::str_match(date_note,
+ "Last modified:
(.*?)")[2]
}
+
# Download all FAF tables into the placeholder file
if (!file.exists(FAFzip)) {
- utils::download.file(paste0("https://www.bts.gov/sites/bts.dot.gov/files/",
- "legacy/AdditionalAttachmentFiles/",
- gsub("inst/extdata/", "", FAFzip)),
+ utils::download.file(paste0(file_baseurl, gsub("inst/extdata/", "", FAFzip)),
FAFzip, mode = "wb")
# Get the name of all files in the zip archive
fname <- unzip(FAFzip, list = TRUE)[unzip(FAFzip, list = TRUE)$Length > 0, ]$Name
# Unzip the file to the designated directory
unzip(FAFzip, files = fname, exdir = paste0("inst/extdata"), overwrite = TRUE)
+ file.remove(FAFzip)
}
- # Use published date on www.bts.gov as the date last modified for FAF data
- notes <- readLines("https://www.bts.gov/faf/faf4")
- date_note <- notes[grep("About the Freight Analysis Framework", notes) - 4]
- date_last_modified <- stringr::str_match(date_note, "Monday, (.*?)")[2]
-
- # Specify filename based on year
- if (year == 2012) {
- filename <- "inst/extdata/FAF4.5.1_State.csv"
- } else if (year %in% c(2013:2018)) {
- filename <- paste0("inst/extdata/FAF4.5.1_State_", year, ".csv")
- }
+ # Find date accessed
date_accessed <- as.character(as.Date(file.mtime(filename)))
# Load state data
FAF <- utils::read.table(filename, sep = ",", header = TRUE,
stringsAsFactors = FALSE,
check.names = FALSE, fill = TRUE)
- # Keep columns for year
- if (year == 2012) {
- FAF <- FAF[, c(colnames(FAF)[1:9],
- paste(c("value", "tons", "tmiles"), year, sep = "_"))]
- } else if (year %in% c(2013:2018)) {
- FAF <- FAF[, c(colnames(FAF)[1:9],
- paste(c("value", "curval", "tons", "tmiles"), year, sep = "_"))]
- # Convert current value from million $ to $
- FAF[, paste0("curval_", year)] <- FAF[, paste0("curval_", year)]*1E6
+ if (year %in% gsub(".*_", "", colnames(FAF))) {
+ # Keep columns for year
+ if (year == 2012) {
+ FAF <- FAF[, c(colnames(FAF)[1:9],
+ paste(c("value", "tons", "tmiles"), year, sep = "_"))]
+ } else if (year %in% c(2013:2018)) {
+ FAF <- FAF[, c(colnames(FAF)[1:9],
+ paste(c("value", "curval", "tons", "tmiles"), year, sep = "_"))]
+ # Convert current value from million $ to $
+ FAF[, paste0("curval_", year)] <- FAF[, paste0("curval_", year)]*1E6
+ } else if (year == 2019) {
+ FAF <- FAF[, c(colnames(FAF)[1:9],
+ paste(c("value", "current_value", "tons", "tmiles"), year, sep = "_"))]
+ # Convert current value from million $ to $
+ FAF[, paste0("current_value_", year)] <- FAF[, paste0("current_value_", year)]*1E6
+ } else {
+ FAF <- FAF[, c(colnames(FAF)[1:9],
+ paste(c("value", "tons", "tmiles"), year, sep = "_"))]
+ }
+ # Convert value from million $ to $
+ FAF[, paste0("value_", year)] <- FAF[, paste0("value_", year)]*1E6
+ # Convert weight from thousand tons to tons
+ FAF[, paste0("tons_", year)] <- FAF[, paste0("tons_", year)]*1E3
+ # Convert wright-distance from million ton-miles to ton-miles
+ FAF[, paste0("tmiles_", year)] <- FAF[, paste0("tmiles_", year)]*1E6
+ # Write data to .rds
+ data_name <- paste("FAF", year,
+ utils::packageDescription("stateior", fields = "Version"),
+ sep = "_")
+ saveRDS(object = FAF,
+ file = paste0(file.path("data", data_name), ".rds"))
+ # Write metadata to JSON
+ useeior:::writeMetadatatoJSON(package = "stateior",
+ name = data_name,
+ year = year,
+ source = "US Oak Ridge National Laboratory",
+ url = url,
+ date_last_modified = date_last_modified,
+ date_accessed = date_accessed)
+ } else {
+ logging::logwarn(paste(year, "FAF data is not avaliable from ORNL.",
+ "Nothing is returned."))
}
- # Convert value from million $ to $
- FAF[, paste0("value_", year)] <- FAF[, paste0("value_", year)]*1E6
- # Convert weight from thousand tons to tons
- FAF[, paste0("tons_", year)] <- FAF[, paste0("tons_", year)]*1E3
- # Convert wright-distance from million ton-miles to ton-miles
- FAF[, paste0("tmiles_", year)] <- FAF[, paste0("tmiles_", year)]*1E6
- # Write data to .rds
- data_name <- paste("FAF", year,
- utils::packageDescription("stateior", fields = "Version"),
- sep = "_")
- saveRDS(object = FAF,
- file = paste0(file.path("data", data_name), ".rds"))
- # Write metadata to JSON
- useeior:::writeMetadatatoJSON(package = "stateior",
- name = data_name,
- year = year,
- source = "US Oak Ridge National Laboratory",
- url = "https://www.bts.gov/faf/faf4",
- date_last_modified = date_last_modified,
- date_accessed = date_accessed)
-}
-# Download, save and document 2012-2018 state FAF data (from ORNL)
-for (year in 2012:2018) {
- getFAF(year)
}
+
+# Download, save and document state FAF data
+getFAF(year)
diff --git a/data-raw/StateSupplyModel.R b/data-raw/StateSupplyModel.R
index 29b8fb17..b9389377 100644
--- a/data-raw/StateSupplyModel.R
+++ b/data-raw/StateSupplyModel.R
@@ -1,23 +1,21 @@
# Generate and save state Make tables
-for (year in 2012:2017) {
- # Build model
- StateSupplyModel <- buildStateSupplyModel(year)
- # Subset data set
- for (name in names(StateSupplyModel)) {
- df <- StateSupplyModel[[name]]
- # Write data to .rds
- data_name <- paste("State_Summary", name, year,
- utils::packageDescription("stateior", fields = "Version"),
- sep = "_")
- saveRDS(object = df,
- file = paste0(file.path("data", data_name), ".rds"))
- # Write metadata to JSON
- useeior:::writeMetadatatoJSON(package = "stateior",
- name = data_name,
- year = year,
- source = "stateior",
- url = NULL,
- date_last_modified = as.character(Sys.Date()),
- date_accessed = NULL)
- }
+# Build model
+StateSupplyModel <- buildStateSupplyModel(year)
+# Subset data set
+for (name in names(StateSupplyModel)) {
+ df <- StateSupplyModel[[name]]
+ # Write data to .rds
+ data_name <- paste("State_Summary", name, year,
+ utils::packageDescription("stateior", fields = "Version"),
+ sep = "_")
+ saveRDS(object = df,
+ file = paste0(file.path("data", data_name), ".rds"))
+ # Write metadata to JSON
+ useeior:::writeMetadatatoJSON(package = "stateior",
+ name = data_name,
+ year = year,
+ source = "stateior",
+ url = NULL,
+ date_last_modified = as.character(Sys.Date()),
+ date_accessed = NULL)
}
diff --git a/data-raw/StateUseModel.R b/data-raw/StateUseModel.R
index 0cc19146..d544f7ec 100644
--- a/data-raw/StateUseModel.R
+++ b/data-raw/StateUseModel.R
@@ -1,23 +1,21 @@
# Generate and save state Use and Domestic Use tables and Industry and Commodity Output
-for (year in 2012:2017) {
- # Build model
- StateUseModel <- buildStateUseModel(year)
- # Subset data set
- for (name in names(StateUseModel)) {
- df <- StateUseModel[[name]]
- # Write data to .rds
- data_name <- paste("State_Summary", name, year,
- utils::packageDescription("stateior", fields = "Version"),
- sep = "_")
- saveRDS(object = df,
- file = paste0(file.path("data", data_name), ".rds"))
- # Write metadata to JSON
- useeior:::writeMetadatatoJSON(package = "stateior",
- name = data_name,
- year = year,
- source = "stateior",
- url = NULL,
- date_last_modified = as.character(Sys.Date()),
- date_accessed = NULL)
- }
+# Build model
+StateUseModel <- buildStateUseModel(year)
+# Subset data set
+for (name in names(StateUseModel)) {
+ df <- StateUseModel[[name]]
+ # Write data to .rds
+ data_name <- paste("State_Summary", name, year,
+ utils::packageDescription("stateior", fields = "Version"),
+ sep = "_")
+ saveRDS(object = df,
+ file = paste0(file.path("data", data_name), ".rds"))
+ # Write metadata to JSON
+ useeior:::writeMetadatatoJSON(package = "stateior",
+ name = data_name,
+ year = year,
+ source = "stateior",
+ url = NULL,
+ date_last_modified = as.character(Sys.Date()),
+ date_accessed = NULL)
}
diff --git a/data-raw/USASpendingData.R b/data-raw/USASpendingData.R
index 38c427b7..ddd80ed7 100644
--- a/data-raw/USASpendingData.R
+++ b/data-raw/USASpendingData.R
@@ -1,5 +1,6 @@
#' Download Federal Government Spending data by 6-digit NAICS code
#' By state and county from USASpending.gov.
+#' @param year A numeric value specifying year of interest.
#' @return A list of Federal Government Spending data by 6-digit NAICS
#' by state and county from 2012 to 2017.
getFedGovSpending <- function(year) {
@@ -14,9 +15,9 @@ getFedGovSpending <- function(year) {
PSC[PSC$Final_Demand_Category == "Structures", "4_Digit_PSC"])
names(psc_ls) <- c("Intermediate", "Equipment", "IP", "Structure")
- # Because the original data is by fiscal year (Oct-Sept) instead of calendar year (Jan-Dec)
- # Download and load data from all years to compile complete data by calendar year
- # Need get 2012-2017 data, extend the range to 2011-2018 to retrieve complete records
+ # Because the original data is by fiscal year (Oct-Sept) instead of calendar year,
+ # download data from three years (year - 1, year, year + 1). For example,
+ # need 2012 data, extend the range to 2011-2013 to retrieve complete records.
year_range <- (year - 1):(year + 1)
df_ls <- list()
df_ls[as.character(year_range)] <- data.frame()
@@ -27,92 +28,98 @@ getFedGovSpending <- function(year) {
date_last_modified <- stringr::str_match(notes[grep("USAspending Database", notes)],
"Database (.*?) zip")[2]
data_date <- gsub("-", "", date_last_modified)
- for (year_N in year_range) {
- # Create the placeholder file
- FedGovExpzip <- paste0("inst/extdata/FY", year_N, "_All_Contracts_Full_",
- data_date, ".zip")
- if (!file.exists(FedGovExpzip)) {
- utils::download.file(paste0("https://files.usaspending.gov/award_data_archive/FY",
- year_N, "_All_Contracts_Full_", data_date, ".zip"),
- FedGovExpzip, mode = "wb",
- timeout = max(500, getOption("timeout")))
- }
- # Get the name of all files in the zip archive
- fname <- unzip(FedGovExpzip, list = TRUE)[unzip(FedGovExpzip, list = TRUE)$Length > 0, ]$Name
- # Unzip the file to the designated directory
- unzip(FedGovExpzip, files = fname, exdir = "inst/extdata/USAspending", overwrite = TRUE)
- # Load data
- df <- data.frame()
- for (i in 1:length(fname)) {
- # Specify desired columns
- columns <- c("award_id_piid", "action_date", "awarding_agency_name",
- "federal_action_obligation",
- "primary_place_of_performance_country_code",
- "primary_place_of_performance_state_code",
- "primary_place_of_performance_county_name",
- "award_type_code", "naics_code", "product_or_service_code")
- # Define filename
- filename <- paste0("inst/extdata/USAspending/", fname[i])
+ # Use date_last_modified to determine whether data for input year is available
+ if (year + 1 <= gsub("\\-.*", "", date_last_modified)) {
+ for (year_N in year_range) {
+ # Create the placeholder file
+ FedGovExpzip <- paste0("inst/extdata/FY", year_N, "_All_Contracts_Full_",
+ data_date, ".zip")
+ if (!file.exists(FedGovExpzip)) {
+ utils::download.file(paste0("https://files.usaspending.gov/award_data_archive/FY",
+ year_N, "_All_Contracts_Full_", data_date, ".zip"),
+ FedGovExpzip, mode = "wb")
+ }
+ # Get the name of all files in the zip archive
+ fname <- unzip(FedGovExpzip, list = TRUE)[unzip(FedGovExpzip, list = TRUE)$Length > 0, ]$Name
+ # Unzip the file to the designated directory
+ unzip(FedGovExpzip, files = fname, exdir = "inst/extdata/USAspending", overwrite = TRUE)
+ file.remove(FedGovExpzip)
# Load data
- df_slice <- as.data.frame(data.table::fread(filename,
- select = columns,
- stringsAsFactors = FALSE))
- # Subset data
- df_slice <- unique(df_slice[df_slice$primary_place_of_performance_country_code == "USA" &
- df_slice$award_type_code %in% c("A", "B", "C", "D") &
- df_slice$primary_place_of_performance_state_code %in% c(state.abb, "DC") &
- !is.na(df_slice$federal_action_obligation) &
- !is.na(df_slice$naics_code) &
- df_slice$federal_action_obligation >= 0, ])
- # Assign calendar Year column
- df_slice$Year <- as.integer(substr(df_slice$action_date, 1, 4))
- df <- rbind(df, df_slice)
- rm(df_slice)
+ df <- data.frame()
+ for (i in 1:length(fname)) {
+ # Specify desired columns
+ columns <- c("award_id_piid", "action_date", "awarding_agency_name",
+ "federal_action_obligation",
+ "primary_place_of_performance_country_code",
+ "primary_place_of_performance_state_code",
+ "primary_place_of_performance_county_name",
+ "award_type_code", "naics_code", "product_or_service_code")
+ # Define filename
+ filename <- paste0("inst/extdata/USAspending/", fname[i])
+ # Load data
+ df_slice <- as.data.frame(data.table::fread(filename,
+ select = columns,
+ stringsAsFactors = FALSE))
+ # Subset data
+ df_slice <- unique(df_slice[df_slice$primary_place_of_performance_country_code == "USA" &
+ df_slice$award_type_code %in% c("A", "B", "C", "D") &
+ df_slice$primary_place_of_performance_state_code %in% c(state.abb, "DC") &
+ !is.na(df_slice$federal_action_obligation) &
+ !is.na(df_slice$naics_code) &
+ df_slice$federal_action_obligation >= 0, ])
+ # Assign calendar Year column
+ df_slice$Year <- as.integer(substr(df_slice$action_date, 1, 4))
+ df <- rbind(df, df_slice)
+ rm(df_slice)
+ }
+ # Paste df in df_ls
+ df_ls[[as.character(year_N)]] <- rbind(df_ls[[as.character(year_N)]],
+ df[df$Year == year_N, ])
+ df_ls[[as.character(year_N - 1)]] <- rbind(df_ls[[as.character(year_N - 1)]],
+ df[df$Year == (year_N - 1), ])
}
- # Paste df in df_ls
- df_ls[[as.character(year_N)]] <- rbind(df_ls[[as.character(year_N)]],
- df[df$Year == year_N, ])
- df_ls[[as.character(year_N - 1)]] <- rbind(df_ls[[as.character(year_N - 1)]],
- df[df$Year == (year_N - 1), ])
- }
- # Subset data
- # Load df for the year
- df_year <- df_ls[[as.character(year)]]
- # Subset df_year by category and type (Defense and NonDefense)
- for (category in names(psc_ls)) {
- # Extract records for Defense and Non-Defense (based on awarding agency and PSC code)
- for (type in c("Defense", "NonDefense")) {
- if (type == "Defense") {
- df_type <- df_year[df_year$product_or_service_code %in% psc_ls[[category]] &
- df_year$awarding_agency_name == "DEPARTMENT OF DEFENSE (DOD)" |
- df_year$product_or_service_code %in% PSC[grep("DEFENSE", PSC$PSC_Code), "4_Digit_PSC"], ]
- } else {
- df_type <- df_year[df_year$product_or_service_code %in% psc_ls[[category]] &
- df_year$awarding_agency_name != "DEPARTMENT OF DEFENSE (DOD)", ]
+ # Subset data
+ # Load df for the year
+ df_year <- df_ls[[as.character(year)]]
+ # Subset df_year by category and type (Defense and NonDefense)
+ for (category in names(psc_ls)) {
+ # Extract records for Defense and Non-Defense (based on awarding agency and PSC code)
+ for (type in c("Defense", "NonDefense")) {
+ if (type == "Defense") {
+ df_type <- df_year[df_year$product_or_service_code %in% psc_ls[[category]] &
+ df_year$awarding_agency_name == "DEPARTMENT OF DEFENSE (DOD)" |
+ df_year$product_or_service_code %in% PSC[grep("DEFENSE", PSC$PSC_Code), "4_Digit_PSC"], ]
+ } else {
+ df_type <- df_year[df_year$product_or_service_code %in% psc_ls[[category]] &
+ df_year$awarding_agency_name != "DEPARTMENT OF DEFENSE (DOD)", ]
+ }
+ # Aggregate
+ df <- stats::aggregate(df_type$federal_action_obligation,
+ by = list(df_type$Year, df_type$naics_code,
+ df_type$primary_place_of_performance_state_code,
+ df_type$primary_place_of_performance_county_name),
+ sum)
+ colnames(df) <- c("Year", "NAICS", "State", "County", "Amount")
+ # Write data to .rds
+ data_name <- paste("FedGovExp", category, type, year,
+ utils::packageDescription("stateior", fields = "Version"),
+ sep = "_")
+ saveRDS(object = df,
+ file = paste0(file.path("data", data_name), ".rds"))
+ # Write metadata to JSON
+ useeior:::writeMetadatatoJSON(package = "stateior",
+ name = data_name,
+ year = year,
+ source = "USA spending",
+ url = "https://www.usaspending.gov/download_center/award_data_archive",
+ date_last_modified = date_last_modified,
+ date_accessed = as.character(Sys.Date()))
}
- # Aggregate
- df <- stats::aggregate(df_type$federal_action_obligation,
- by = list(df_type$Year, df_type$naics_code,
- df_type$primary_place_of_performance_state_code,
- df_type$primary_place_of_performance_county_name),
- sum)
- colnames(df) <- c("Year", "NAICS", "State", "County", "Amount")
- # Write data to .rds
- data_name <- paste("FedGovExp", category, type, year,
- utils::packageDescription("stateior", fields = "Version"),
- sep = "_")
- saveRDS(object = df,
- file = paste0(file.path("data", data_name), ".rds"))
- # Write metadata to JSON
- useeior:::writeMetadatatoJSON(package = "stateior",
- name = data_name,
- year = year,
- source = "USA spending",
- url = "https://www.usaspending.gov/download_center/award_data_archive",
- date_last_modified = date_last_modified,
- date_accessed = as.character(Sys.Date()))
}
+ } else {
+ logging::logwarn(paste(year, "Federal Government spending data is not avaliable",
+ "from USAspending. Nothing is returned."))
}
}
-# Download, save and document 2012-2017 federal government spending data by state (from USASpending)
+# Download, save and document federal government spending data by state
getFedGovSpending(year)
diff --git a/inst/doc/output/ValidateModel_2018.md b/inst/doc/output/ValidateModel_2018.md
new file mode 100644
index 00000000..16a10ee6
--- /dev/null
+++ b/inst/doc/output/ValidateModel_2018.md
@@ -0,0 +1,525 @@
+This document presents validation results of 2018 summary-level state IO
+model.
+
+### Prepare data
+
+#### 0. Load state and two-region IO data.
+
+State and two-region IO data successfully loaded.
+
+### Check state IO tables
+
+#### 1. Check if industry output from state Make and Use are almost equal (\<= 0.01).
+
+There are no failures.
+
+### Compare state to US IO tables (negativity in the same cell & state sum == US totals)
+
+#### 2. Sum of each cell across all state Make tables must almost equal (\<= 0.001) the same cell in US Make table.
+
+There is 1 failure, and it is
+
+| | rownames | variable | result | check |
+|------|:---------|:---------|-------:|:-------------------------|
+| 5107 | HS | HS | 0.001 | abs(result) \< tolerance |
+
+#### 3. There should not be any negative values in state Make table, unless they are negative in US Make table.
+
+Note: only exception being Overseas, which isn’t used for further
+calculations, and if the same cell in US Make table is also negative.
+There are no failures.
+
+#### 4. Sum of each industry’s output across all states must almost equal (\<= 1E7, or $10 million by industry) the industry output in US Make Table.
+
+The threshold is set to 1E7 because there are differences (within +/-
+$10 million) between US industry output summed from Make and that summed
+from Use, comparing sum of state industry output (summed from state Use)
+to US industry output summed from US Make should account for those
+inherent differences at the national level. There are no failures.
+
+#### 5. Sum of each commodity’s output across all states must almost equal (\<= 1E7, or $10 million by commodity) the commodity output in US Make Table.
+
+The threshold is set to 1E7 because there are differences (within +/-
+$10 million) between US industry output summed from Make and that summed
+from Use, comparing sum of state industry output (summed from state Use)
+to US industry output summed from US Make should account for those
+inherent differences at the national level. There are no failures.
+
+#### 6. Sum of each commodity’s output across all states must almost equal (\<= 1E^7, or $10 million by commodity) commodity output in US Use Table.
+
+Note: even if the threshold is met, track the difference for each
+commodity. Save result as a type of quality control check.
+
+There are no failures.
+
+| | q_state_sum - q_US_use |
+|--------|-----------------------:|
+| 111CA | 1.000e+06 |
+| 113FF | 1.000e+06 |
+| 211 | 3.000e+06 |
+| 212 | 4.000e+06 |
+| 213 | 2.000e+06 |
+| 22 | 0.000e+00 |
+| 23 | -3.000e+06 |
+| 321 | -1.530e-05 |
+| 327 | -3.000e+06 |
+| 331 | 0.000e+00 |
+| 332 | 1.000e+06 |
+| 333 | -2.000e+06 |
+| 334 | -2.000e+06 |
+| 335 | 3.000e+06 |
+| 3361MV | -1.000e+06 |
+| 3364OT | -1.000e+06 |
+| 337 | -2.000e+06 |
+| 339 | 3.000e+06 |
+| 311FT | -1.000e+06 |
+| 313TT | -7.600e-06 |
+| 315AL | 2.000e+06 |
+| 322 | -2.000e+06 |
+| 323 | -3.000e+06 |
+| 324 | -3.000e+06 |
+| 325 | 4.000e+06 |
+| 326 | 6.000e+06 |
+| 42 | 5.000e+06 |
+| 441 | 3.000e+06 |
+| 445 | -1.000e+06 |
+| 452 | 4.000e+06 |
+| 4A0 | 2.441e-04 |
+| 481 | 2.000e+06 |
+| 482 | 2.000e+06 |
+| 483 | 1.000e+06 |
+| 484 | -6.000e+06 |
+| 485 | 4.000e+06 |
+| 486 | 0.000e+00 |
+| 487OS | 2.000e+06 |
+| 493 | 1.000e+06 |
+| 511 | -3.000e+06 |
+| 512 | 2.000e+06 |
+| 513 | 3.000e+06 |
+| 514 | 3.000e+06 |
+| 521CI | -1.000e+06 |
+| 523 | -3.000e+06 |
+| 524 | -1.000e+06 |
+| 525 | 3.050e-05 |
+| HS | 7.324e-04 |
+| ORE | 0.000e+00 |
+| 532RL | 2.000e+06 |
+| 5411 | 1.000e+06 |
+| 5415 | 0.000e+00 |
+| 5412OP | -1.000e+06 |
+| 55 | 2.000e+06 |
+| 561 | -5.000e+06 |
+| 562 | -1.530e-05 |
+| 61 | -1.000e+06 |
+| 621 | 2.441e-04 |
+| 622 | -1.000e+06 |
+| 623 | 6.100e-05 |
+| 624 | 3.050e-05 |
+| 711AS | -6.100e-05 |
+| 713 | -1.000e+06 |
+| 721 | -1.000e+06 |
+| 722 | 2.000e+06 |
+| 81 | 0.000e+00 |
+| GFGD | 2.441e-04 |
+| GFGN | 0.000e+00 |
+| GFE | 1.000e+06 |
+| GSLG | -2.441e-04 |
+| GSLE | 2.000e+06 |
+| Used | -1.000e+06 |
+| Other | 1.000e+06 |
+
+#### 7. All cells that are zero in US Make table must remain zero in state Make tables. Find zero values in US Make table.
+
+There are no failures.
+
+#### 8. Sum of each cell across all state Use tables must almost equal (\<= 5E6, or $5 million) the same cell in US Use table. This validates that Total state demand == Total national demand.
+
+Note: failures associated with ‘F050 - Imports’ are acceptable. Because
+state imports are not directly derived from US imports, a gap in imports
+between state sum and national total is reasonable.
+
+##### 8.1 State Use tables (checking absolute differences)
+
+There are 2 failures, and they are
+
+| Commodity | Industry/Final Demand | Absolute Diff | Validation | AbsDiffPortioninNationalTotals |
+|:----------|:----------------------|--------------:|:-------------------------|-------------------------------:|
+| 511 | F050 | 8000000 | abs(result) \< tolerance | -0.0018055 |
+| 524 | F050 | -5000612 | abs(result) \< tolerance | 0.0001107 |
+
+##### 8.2 State Domestic Use tables (checking absolute differences)
+
+There are no failures.
+
+##### 8.3 State Use tables (checking relative differences)
+
+There are 9 failures, and they are
+
+| Commodity | Industry/Final Demand | Relative Diff | Validation | US | StateSum |
+|:----------|:----------------------|--------------:|:-------------------------|-----------:|-----------:|
+| 511 | F050 | -0.002 | abs(result) \< tolerance | -4.431e+09 | -4.423e+09 |
+| 513 | F050 | -0.025 | abs(result) \< tolerance | -1.620e+08 | -1.580e+08 |
+| 514 | F050 | -0.001 | abs(result) \< tolerance | -9.760e+08 | -9.750e+08 |
+| 521CI | F050 | -0.043 | abs(result) \< tolerance | -4.600e+07 | -4.400e+07 |
+| 523 | F050 | -0.052 | abs(result) \< tolerance | -5.800e+07 | -5.500e+07 |
+| 561 | F050 | -0.002 | abs(result) \< tolerance | -1.857e+09 | -1.853e+09 |
+| 562 | F050 | -0.013 | abs(result) \< tolerance | -2.260e+08 | -2.230e+08 |
+| 711AS | F050 | -0.003 | abs(result) \< tolerance | -1.038e+09 | -1.035e+09 |
+| GFE | F050 | 0.007 | abs(result) \< tolerance | -2.940e+08 | -2.960e+08 |
+
+##### 8.4 State Domestic Use tables (checking relative differences)
+
+There are no failures.
+
+### Check two-region model results
+
+#### 9. Check if commodity output from two-region Make and Domestic Use are almost equal (relative difference \<= 0.01).
+
+There are no failures.
+
+#### 10. If SoI commodity output == 0, SoI2SoI ICF ratio == 0
+
+There are no failures.
+
+#### 11. SoI and RoUS interregional exports \>= 0, interregional imports \>= 0
+
+There are no failures.
+
+#### 12. SoI net exports + RoUS net exports == 0
+
+There are no failures.
+
+#### 13. Check row sum of SoI2SoI \<= state commodity supply. Row sum of RoUS2RoUS \<= RoUS commodity supply.
+
+There are no failures.
+
+#### 14. Value in SoI2SoI and RoUS2RoUS can be negative only when the same cell is negative in national Use table
+
+There are no failures.
+
+#### 15. SoI interregional imports == RoUS interregional exports, or difference \<= 0.001
+
+There are no failures.
+
+#### 16.1. Total state commodity supply == state demand by intermediate consumption, plus final demand (except imports and international trade adjustment) + Interregional Exports + Export Residual. Difference must be \<= 0.001.
+
+There are no failures.
+
+#### 16.2. Total SoI and RoUS commodity supply (output) == SoI and RoUS demand (domestic intermediate consumption + ITA + Export Residual).
+
+There are no failures.
+
+#### 17. Number of negative cells in SoI2SoI, SoI2RoUS, RoUS2SoI and RoUS2RoUS \<= Number of negative cells in national Use table
+
+There are no failures.
+
+#### 18. Non-square model verification. Validate L matrix of two-region model and final demand against SoI and RoUS output.
+
+##### Absolute difference: L\*y - output \<= 1^6, or $1 million.
+
+##### Relative difference: (L\*y - output)/output \<= 1^-2, or 1%.
+
+##### 18.1 Alabama and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.2 Alaska and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.3 Arizona and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.4 Arkansas and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.5 California and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.6 Colorado and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.7 Connecticut and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.8 Delaware and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.10 Florida and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.11 Georgia and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.12 Hawaii and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.13 Idaho and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.14 Illinois and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.15 Indiana and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.16 Iowa and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.17 Kansas and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.18 Kentucky and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.19 Louisiana and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.20 Maine and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.21 Maryland and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.22 Massachusetts and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.23 Michigan and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.24 Minnesota and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.25 Mississippi and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.26 Missouri and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.27 Montana and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.28 Nebraska and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.29 Nevada and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.30 New Hampshire and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.31 New Jersey and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.32 New Mexico and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.33 New York and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.34 North Carolina and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.35 North Dakota and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.36 Ohio and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.37 Oklahoma and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.38 Oregon and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.40 Pennsylvania and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.41 Rhode Island and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.42 South Carolina and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.43 South Dakota and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.44 Tennessee and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.45 Texas and Rest of the US
+
+Absolute Difference: There are 2 failures, and they are
+
+| | rownames | result | check |
+|-----|:-------------------|---------:|:------------|
+| 151 | Texas.213.Industry | 3084054 | L\*y-output |
+| 222 | RoUS.213.Industry | -3078983 | L\*y-output |
+
+Relative Difference: There are no failures.
+
+##### 18.46 Utah and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.47 Vermont and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.48 Virginia and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.49 Washington and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.50 West Virginia and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.51 Wisconsin and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.52 Wyoming and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
diff --git a/inst/doc/output/ValidateModel_2019.md b/inst/doc/output/ValidateModel_2019.md
new file mode 100644
index 00000000..9d14703f
--- /dev/null
+++ b/inst/doc/output/ValidateModel_2019.md
@@ -0,0 +1,529 @@
+This document presents validation results of 2019 summary-level state IO
+model.
+
+### Prepare data
+
+#### 0. Load state and two-region IO data.
+
+State and two-region IO data successfully loaded.
+
+### Check state IO tables
+
+#### 1. Check if industry output from state Make and Use are almost equal (\<= 0.01).
+
+There are no failures.
+
+### Compare state to US IO tables (negativity in the same cell & state sum == US totals)
+
+#### 2. Sum of each cell across all state Make tables must almost equal (\<= 0.001) the same cell in US Make table.
+
+There are no failures.
+
+#### 3. There should not be any negative values in state Make table, unless they are negative in US Make table.
+
+Note: only exception being Overseas, which isn’t used for further
+calculations, and if the same cell in US Make table is also negative.
+There are no failures.
+
+#### 4. Sum of each industry’s output across all states must almost equal (\<= 1E7, or $10 million by industry) the industry output in US Make Table.
+
+The threshold is set to 1E7 because there are differences (within +/-
+$10 million) between US industry output summed from Make and that summed
+from Use, comparing sum of state industry output (summed from state Use)
+to US industry output summed from US Make should account for those
+inherent differences at the national level. There are no failures.
+
+#### 5. Sum of each commodity’s output across all states must almost equal (\<= 1E7, or $10 million by commodity) the commodity output in US Make Table.
+
+The threshold is set to 1E7 because there are differences (within +/-
+$10 million) between US industry output summed from Make and that summed
+from Use, comparing sum of state industry output (summed from state Use)
+to US industry output summed from US Make should account for those
+inherent differences at the national level. There are no failures.
+
+#### 6. Sum of each commodity’s output across all states must almost equal (\<= 1E^7, or $10 million by commodity) commodity output in US Use Table.
+
+Note: even if the threshold is met, track the difference for each
+commodity. Save result as a type of quality control check.
+
+There are no failures.
+
+| | q_state_sum - q_US_use |
+|--------|-----------------------:|
+| 111CA | -6.100e-05 |
+| 113FF | -1.000e+06 |
+| 211 | 4.000e+06 |
+| 212 | 1.530e-05 |
+| 213 | 1.000e+06 |
+| 22 | -1.000e+06 |
+| 23 | -2.000e+06 |
+| 321 | -1.000e+06 |
+| 327 | 1.000e+06 |
+| 331 | -2.000e+06 |
+| 332 | 5.000e+06 |
+| 333 | -3.000e+06 |
+| 334 | -5.000e+06 |
+| 335 | -1.000e+06 |
+| 3361MV | -3.000e+06 |
+| 3364OT | -1.000e+06 |
+| 337 | 2.000e+06 |
+| 339 | 1.000e+06 |
+| 311FT | -1.000e+06 |
+| 313TT | -1.530e-05 |
+| 315AL | 3.000e+06 |
+| 322 | 5.000e+06 |
+| 323 | -1.000e+06 |
+| 324 | 2.000e+06 |
+| 325 | 4.000e+06 |
+| 326 | -2.000e+06 |
+| 42 | -3.000e+06 |
+| 441 | 5.000e+06 |
+| 445 | -1.000e+06 |
+| 452 | -2.000e+06 |
+| 4A0 | 1.000e+06 |
+| 481 | 1.000e+06 |
+| 482 | 1.530e-05 |
+| 483 | 1.000e+06 |
+| 484 | -1.000e+06 |
+| 485 | -2.000e+06 |
+| 486 | -2.000e+06 |
+| 487OS | -2.000e+06 |
+| 493 | -1.000e+06 |
+| 511 | 2.000e+06 |
+| 512 | 6.100e-05 |
+| 513 | -2.000e+06 |
+| 514 | 4.000e+06 |
+| 521CI | -1.000e+06 |
+| 523 | -2.000e+06 |
+| 524 | 1.000e+06 |
+| 525 | 1.000e+06 |
+| HS | -9.766e-04 |
+| ORE | 2.000e+06 |
+| 532RL | -4.000e+06 |
+| 5411 | 0.000e+00 |
+| 5415 | 4.000e+06 |
+| 5412OP | -5.000e+06 |
+| 55 | 2.000e+06 |
+| 561 | 1.221e-04 |
+| 562 | 3.000e+06 |
+| 61 | -1.000e+06 |
+| 621 | -2.000e+06 |
+| 622 | 0.000e+00 |
+| 623 | 0.000e+00 |
+| 624 | -1.000e+06 |
+| 711AS | -1.000e+06 |
+| 713 | 3.000e+06 |
+| 721 | -3.000e+06 |
+| 722 | -2.000e+06 |
+| 81 | -2.000e+06 |
+| GFGD | 0.000e+00 |
+| GFGN | 1.221e-04 |
+| GFE | 1.000e+06 |
+| GSLG | 0.000e+00 |
+| GSLE | 1.000e+06 |
+| Used | 0.000e+00 |
+| Other | 1.000e+06 |
+
+#### 7. All cells that are zero in US Make table must remain zero in state Make tables. Find zero values in US Make table.
+
+There are no failures.
+
+#### 8. Sum of each cell across all state Use tables must almost equal (\<= 5E6, or $5 million) the same cell in US Use table. This validates that Total state demand == Total national demand.
+
+Note: failures associated with ‘F050 - Imports’ are acceptable. Because
+state imports are not directly derived from US imports, a gap in imports
+between state sum and national total is reasonable.
+
+##### 8.1 State Use tables (checking absolute differences)
+
+There are 2 failures, and they are
+
+| Commodity | Industry/Final Demand | Absolute Diff | Validation | AbsDiffPortioninNationalTotals |
+|:----------|:----------------------|--------------:|:-------------------------|-------------------------------:|
+| 513 | F050 | 5e+06 | abs(result) \< tolerance | -0.0299401 |
+| 711AS | F050 | 6e+06 | abs(result) \< tolerance | -0.0079576 |
+
+##### 8.2 State Domestic Use tables (checking absolute differences)
+
+There are no failures.
+
+##### 8.3 State Use tables (checking relative differences)
+
+There are 10 failures, and they are
+
+| Commodity | Industry/Final Demand | Relative Diff | Validation | US | StateSum |
+|:----------|:----------------------|--------------:|:-------------------------|-----------:|------------:|
+| 212 | F050 | 0.002 | abs(result) \< tolerance | 5.430e+08 | 544000000 |
+| 213 | F050 | 0.001 | abs(result) \< tolerance | -7.030e+08 | -704000000 |
+| 22 | F050 | -0.001 | abs(result) \< tolerance | -2.084e+09 | -2081000000 |
+| 487OS | F050 | 0.001 | abs(result) \< tolerance | 3.934e+09 | 3937971396 |
+| 513 | F050 | -0.030 | abs(result) \< tolerance | -1.670e+08 | -162000000 |
+| 514 | F050 | -0.002 | abs(result) \< tolerance | -1.309e+09 | -1306000000 |
+| 521CI | F050 | -0.042 | abs(result) \< tolerance | -4.800e+07 | -46000000 |
+| 523 | F050 | -0.067 | abs(result) \< tolerance | -6.000e+07 | -56000000 |
+| 711AS | F050 | -0.008 | abs(result) \< tolerance | -7.540e+08 | -748000000 |
+| GFE | F050 | 0.008 | abs(result) \< tolerance | -2.630e+08 | -265000000 |
+
+##### 8.4 State Domestic Use tables (checking relative differences)
+
+There are no failures.
+
+### Check two-region model results
+
+#### 9. Check if commodity output from two-region Make and Domestic Use are almost equal (relative difference \<= 0.01).
+
+There are no failures.
+
+#### 10. If SoI commodity output == 0, SoI2SoI ICF ratio == 0
+
+There are no failures.
+
+#### 11. SoI and RoUS interregional exports \>= 0, interregional imports \>= 0
+
+There are no failures.
+
+#### 12. SoI net exports + RoUS net exports == 0
+
+There are no failures.
+
+#### 13. Check row sum of SoI2SoI \<= state commodity supply. Row sum of RoUS2RoUS \<= RoUS commodity supply.
+
+There are no failures.
+
+#### 14. Value in SoI2SoI and RoUS2RoUS can be negative only when the same cell is negative in national Use table
+
+There are no failures.
+
+#### 15. SoI interregional imports == RoUS interregional exports, or difference \<= 0.001
+
+There are no failures.
+
+#### 16.1. Total state commodity supply == state demand by intermediate consumption, plus final demand (except imports and international trade adjustment) + Interregional Exports + Export Residual. Difference must be \<= 0.001.
+
+There are no failures.
+
+#### 16.2. Total SoI and RoUS commodity supply (output) == SoI and RoUS demand (domestic intermediate consumption + ITA + Export Residual).
+
+There are no failures.
+
+#### 17. Number of negative cells in SoI2SoI, SoI2RoUS, RoUS2SoI and RoUS2RoUS \<= Number of negative cells in national Use table
+
+There are no failures.
+
+#### 18. Non-square model verification. Validate L matrix of two-region model and final demand against SoI and RoUS output.
+
+##### Absolute difference: L\*y - output \<= 1^6, or $1 million.
+
+##### Relative difference: (L\*y - output)/output \<= 1^-2, or 1%.
+
+##### 18.1 Alabama and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.2 Alaska and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.3 Arizona and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.4 Arkansas and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.5 California and Rest of the US
+
+Absolute Difference: There are 2 failures, and they are
+
+| | rownames | result | check |
+|-----|:------------------------|---------:|:------------|
+| 159 | California.334.Industry | 1170883 | L\*y-output |
+| 230 | RoUS.334.Industry | -1170779 | L\*y-output |
+
+Relative Difference: There are no failures.
+
+##### 18.6 Colorado and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.7 Connecticut and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.8 Delaware and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.10 Florida and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.11 Georgia and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.12 Hawaii and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.13 Idaho and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.14 Illinois and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.15 Indiana and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.16 Iowa and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.17 Kansas and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.18 Kentucky and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.19 Louisiana and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.20 Maine and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.21 Maryland and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.22 Massachusetts and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.23 Michigan and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.24 Minnesota and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.25 Mississippi and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.26 Missouri and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.27 Montana and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.28 Nebraska and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.29 Nevada and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.30 New Hampshire and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.31 New Jersey and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.32 New Mexico and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.33 New York and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.34 North Carolina and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.35 North Dakota and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.36 Ohio and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.37 Oklahoma and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.38 Oregon and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.40 Pennsylvania and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.41 Rhode Island and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.42 South Carolina and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.43 South Dakota and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.44 Tennessee and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.45 Texas and Rest of the US
+
+Absolute Difference: There are 4 failures, and they are
+
+| | rownames | result | check |
+|-----|:-------------------|---------:|:------------|
+| 170 | Texas.324.Industry | -1035754 | L\*y-output |
+| 193 | Texas.525.Industry | -1060201 | L\*y-output |
+| 241 | RoUS.324.Industry | 1037574 | L\*y-output |
+| 264 | RoUS.525.Industry | 1049360 | L\*y-output |
+
+Relative Difference: There are no failures.
+
+##### 18.46 Utah and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.47 Vermont and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.48 Virginia and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.49 Washington and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.50 West Virginia and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.51 Wisconsin and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.52 Wyoming and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
diff --git a/inst/doc/output/ValidateModel_2020.md b/inst/doc/output/ValidateModel_2020.md
new file mode 100644
index 00000000..6b9315b7
--- /dev/null
+++ b/inst/doc/output/ValidateModel_2020.md
@@ -0,0 +1,531 @@
+This document presents validation results of 2020 summary-level state IO
+model.
+
+### Prepare data
+
+#### 0. Load state and two-region IO data.
+
+State and two-region IO data successfully loaded.
+
+### Check state IO tables
+
+#### 1. Check if industry output from state Make and Use are almost equal (\<= 0.01).
+
+There are no failures.
+
+### Compare state to US IO tables (negativity in the same cell & state sum == US totals)
+
+#### 2. Sum of each cell across all state Make tables must almost equal (\<= 0.001) the same cell in US Make table.
+
+There are no failures.
+
+#### 3. There should not be any negative values in state Make table, unless they are negative in US Make table.
+
+Note: only exception being Overseas, which isn’t used for further
+calculations, and if the same cell in US Make table is also negative.
+There are no failures.
+
+#### 4. Sum of each industry’s output across all states must almost equal (\<= 1E7, or $10 million by industry) the industry output in US Make Table.
+
+The threshold is set to 1E7 because there are differences (within +/-
+$10 million) between US industry output summed from Make and that summed
+from Use, comparing sum of state industry output (summed from state Use)
+to US industry output summed from US Make should account for those
+inherent differences at the national level. There are no failures.
+
+#### 5. Sum of each commodity’s output across all states must almost equal (\<= 1E7, or $10 million by commodity) the commodity output in US Make Table.
+
+The threshold is set to 1E7 because there are differences (within +/-
+$10 million) between US industry output summed from Make and that summed
+from Use, comparing sum of state industry output (summed from state Use)
+to US industry output summed from US Make should account for those
+inherent differences at the national level. There are no failures.
+
+#### 6. Sum of each commodity’s output across all states must almost equal (\<= 1E^7, or $10 million by commodity) commodity output in US Use Table.
+
+Note: even if the threshold is met, track the difference for each
+commodity. Save result as a type of quality control check.
+
+There are no failures.
+
+| | q_state_sum - q_US_use |
+|--------|-----------------------:|
+| 111CA | -4.000e+06 |
+| 113FF | 2.000e+06 |
+| 211 | 8.000e+06 |
+| 212 | -1.530e-05 |
+| 213 | -1.000e+06 |
+| 22 | -1.000e+06 |
+| 23 | 9.766e-04 |
+| 321 | -3.050e-05 |
+| 327 | -1.000e+06 |
+| 331 | -3.000e+06 |
+| 332 | -2.000e+06 |
+| 333 | 3.000e+06 |
+| 334 | 1.000e+06 |
+| 335 | -3.000e+06 |
+| 3361MV | 7.000e+06 |
+| 3364OT | 6.100e-05 |
+| 337 | -3.000e+06 |
+| 339 | 2.000e+06 |
+| 311FT | 1.000e+06 |
+| 313TT | -2.000e+06 |
+| 315AL | -7.600e-06 |
+| 322 | 1.000e+06 |
+| 323 | -3.810e-05 |
+| 324 | -4.000e+06 |
+| 325 | 3.000e+06 |
+| 326 | 1.000e+06 |
+| 42 | -4.000e+06 |
+| 441 | 2.000e+06 |
+| 445 | 3.000e+06 |
+| 452 | 3.000e+06 |
+| 4A0 | 0.000e+00 |
+| 481 | -3.000e+06 |
+| 482 | 1.000e+06 |
+| 483 | -2.000e+06 |
+| 484 | 4.000e+06 |
+| 485 | 4.000e+06 |
+| 486 | -5.000e+06 |
+| 487OS | 2.000e+06 |
+| 493 | 1.000e+06 |
+| 511 | -4.000e+06 |
+| 512 | 2.000e+06 |
+| 513 | -3.000e+06 |
+| 514 | -2.000e+06 |
+| 521CI | 4.000e+06 |
+| 523 | -4.000e+06 |
+| 524 | -1.000e+06 |
+| 525 | 3.050e-05 |
+| HS | 0.000e+00 |
+| ORE | -1.000e+06 |
+| 532RL | -1.000e+06 |
+| 5411 | -3.000e+06 |
+| 5415 | 1.000e+06 |
+| 5412OP | 3.000e+06 |
+| 55 | 2.000e+06 |
+| 561 | 1.000e+06 |
+| 562 | 3.000e+06 |
+| 61 | -1.000e+06 |
+| 621 | 1.000e+06 |
+| 622 | 0.000e+00 |
+| 623 | 1.000e+06 |
+| 624 | 6.100e-05 |
+| 711AS | -1.000e+06 |
+| 713 | 1.000e+06 |
+| 721 | 3.050e-05 |
+| 722 | 4.000e+06 |
+| 81 | -1.000e+06 |
+| GFGD | -1.221e-04 |
+| GFGN | 6.100e-05 |
+| GFE | -2.000e+06 |
+| GSLG | 7.324e-04 |
+| GSLE | 1.000e+06 |
+| Used | 3.000e+06 |
+| Other | 2.000e+06 |
+
+#### 7. All cells that are zero in US Make table must remain zero in state Make tables. Find zero values in US Make table.
+
+There are no failures.
+
+#### 8. Sum of each cell across all state Use tables must almost equal (\<= 5E6, or $5 million) the same cell in US Use table. This validates that Total state demand == Total national demand.
+
+Note: failures associated with ‘F050 - Imports’ are acceptable. Because
+state imports are not directly derived from US imports, a gap in imports
+between state sum and national total is reasonable.
+
+##### 8.1 State Use tables (checking absolute differences)
+
+There are 2 failures, and they are
+
+| Commodity | Industry/Final Demand | Absolute Diff | Validation | AbsDiffPortioninNationalTotals |
+|:----------|:----------------------|--------------:|:-------------------------|-------------------------------:|
+| 5412OP | F050 | 5e+06 | abs(result) \< tolerance | -0.0000444 |
+| 562 | F050 | 5e+06 | abs(result) \< tolerance | -0.0172414 |
+
+##### 8.2 State Domestic Use tables (checking absolute differences)
+
+There are no failures.
+
+##### 8.3 State Use tables (checking relative differences)
+
+There are 10 failures, and they are
+
+| Commodity | Industry/Final Demand | Relative Diff | Validation | US | StateSum |
+|:----------|:----------------------|--------------:|:-------------------------|-----------:|------------:|
+| 213 | F050 | -0.001 | abs(result) \< tolerance | -8.660e+08 | -865000000 |
+| 22 | F050 | -0.001 | abs(result) \< tolerance | -2.081e+09 | -2078000000 |
+| 487OS | F050 | 0.001 | abs(result) \< tolerance | 3.968e+09 | 3972028009 |
+| 513 | F050 | -0.024 | abs(result) \< tolerance | -1.230e+08 | -120000000 |
+| 514 | F050 | -0.001 | abs(result) \< tolerance | -1.439e+09 | -1437000000 |
+| 521CI | F050 | -0.057 | abs(result) \< tolerance | -3.500e+07 | -33000000 |
+| 523 | F050 | -0.023 | abs(result) \< tolerance | -4.400e+07 | -43000000 |
+| 562 | F050 | -0.017 | abs(result) \< tolerance | -2.900e+08 | -285000000 |
+| 711AS | F050 | -0.008 | abs(result) \< tolerance | -3.590e+08 | -356000000 |
+| GFE | F050 | 0.004 | abs(result) \< tolerance | -2.830e+08 | -284000000 |
+
+##### 8.4 State Domestic Use tables (checking relative differences)
+
+There are no failures.
+
+### Check two-region model results
+
+#### 9. Check if commodity output from two-region Make and Domestic Use are almost equal (relative difference \<= 0.01).
+
+There are no failures.
+
+#### 10. If SoI commodity output == 0, SoI2SoI ICF ratio == 0
+
+There are no failures.
+
+#### 11. SoI and RoUS interregional exports \>= 0, interregional imports \>= 0
+
+There are no failures.
+
+#### 12. SoI net exports + RoUS net exports == 0
+
+There are no failures.
+
+#### 13. Check row sum of SoI2SoI \<= state commodity supply. Row sum of RoUS2RoUS \<= RoUS commodity supply.
+
+There are no failures.
+
+#### 14. Value in SoI2SoI and RoUS2RoUS can be negative only when the same cell is negative in national Use table
+
+There are no failures.
+
+#### 15. SoI interregional imports == RoUS interregional exports, or difference \<= 0.001
+
+There are no failures.
+
+#### 16.1. Total state commodity supply == state demand by intermediate consumption, plus final demand (except imports and international trade adjustment) + Interregional Exports + Export Residual. Difference must be \<= 0.001.
+
+There are no failures.
+
+#### 16.2. Total SoI and RoUS commodity supply (output) == SoI and RoUS demand (domestic intermediate consumption + ITA + Export Residual).
+
+There are no failures.
+
+#### 17. Number of negative cells in SoI2SoI, SoI2RoUS, RoUS2SoI and RoUS2RoUS \<= Number of negative cells in national Use table
+
+There are no failures.
+
+#### 18. Non-square model verification. Validate L matrix of two-region model and final demand against SoI and RoUS output.
+
+##### Absolute difference: L\*y - output \<= 1^6, or $1 million.
+
+##### Relative difference: (L\*y - output)/output \<= 1^-2, or 1%.
+
+##### 18.1 Alabama and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.2 Alaska and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.3 Arizona and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.4 Arkansas and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.5 California and Rest of the US
+
+Absolute Difference: There are 6 failures, and they are
+
+| | rownames | result | check |
+|-----|:------------------------|---------:|:------------|
+| 159 | California.334.Industry | 1244441 | L\*y-output |
+| 182 | California.485.Industry | -1138421 | L\*y-output |
+| 189 | California.514.Industry | -2019761 | L\*y-output |
+| 230 | RoUS.334.Industry | -1244026 | L\*y-output |
+| 253 | RoUS.485.Industry | 1140077 | L\*y-output |
+| 260 | RoUS.514.Industry | 2016320 | L\*y-output |
+
+Relative Difference: There are no failures.
+
+##### 18.6 Colorado and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.7 Connecticut and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.8 Delaware and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.10 Florida and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.11 Georgia and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.12 Hawaii and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.13 Idaho and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.14 Illinois and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.15 Indiana and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.16 Iowa and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.17 Kansas and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.18 Kentucky and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.19 Louisiana and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.20 Maine and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.21 Maryland and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.22 Massachusetts and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.23 Michigan and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.24 Minnesota and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.25 Mississippi and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.26 Missouri and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.27 Montana and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.28 Nebraska and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.29 Nevada and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.30 New Hampshire and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.31 New Jersey and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.32 New Mexico and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.33 New York and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.34 North Carolina and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.35 North Dakota and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.36 Ohio and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.37 Oklahoma and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.38 Oregon and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.40 Pennsylvania and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.41 Rhode Island and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.42 South Carolina and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.43 South Dakota and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.44 Tennessee and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.45 Texas and Rest of the US
+
+Absolute Difference: There are 2 failures, and they are
+
+| | rownames | result | check |
+|-----|:-------------------|---------:|:------------|
+| 193 | Texas.525.Industry | -1384039 | L\*y-output |
+| 264 | RoUS.525.Industry | 1370124 | L\*y-output |
+
+Relative Difference: There are no failures.
+
+##### 18.46 Utah and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.47 Vermont and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.48 Virginia and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.49 Washington and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.50 West Virginia and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.51 Wisconsin and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
+
+##### 18.52 Wyoming and Rest of the US
+
+Absolute Difference: There are no failures.
+
+Relative Difference: There are no failures.
diff --git a/inst/extdata/EIA_SEDS_CodesDescriptions.xlsx b/inst/extdata/EIA_SEDS_CodesDescriptions.xlsx
deleted file mode 100644
index ab2e9ce0..00000000
Binary files a/inst/extdata/EIA_SEDS_CodesDescriptions.xlsx and /dev/null differ
diff --git a/inst/extdata/EIA_SEDS_consumption.csv b/inst/extdata/EIA_SEDS_consumption.csv
deleted file mode 100644
index 50c8d984..00000000
--- a/inst/extdata/EIA_SEDS_consumption.csv
+++ /dev/null
@@ -1,7856 +0,0 @@
-Data_Status,State,MSN,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019
-2019F,AK,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,1,0,10,2,0,-3,0,1,0,1,1,21,18,26,33,17,28,17,26,32,33,46,38,3,8,0,-3,-1,0,0,-1,0,-1,0,0,-3,-2
-2019F,AK,ARICP,47,84,74,89,119,132,248,125,114,146,274,297,327,244,247,319,317,361,314,207,309,266,368,344,438,485,373,257,698,274,269,259,264,43,66,83,26,55,65,131,310,1542,362,59,268,186,50,139,82,1537,1905,2250,2161,1923,1859,1876,1863,2044,724,1804
-2019F,AK,ARTCP,47,84,74,89,119,132,248,125,114,146,274,297,327,244,247,319,317,361,314,207,309,266,368,344,438,485,373,257,698,274,269,259,264,43,66,83,26,55,65,131,310,1542,362,59,268,186,50,139,82,1537,1905,2250,2161,1923,1859,1876,1863,2044,724,1804
-2019F,AK,ARTXP,47,84,74,89,119,132,248,125,114,146,274,297,327,244,247,319,317,361,314,207,309,266,368,344,438,485,373,257,698,274,269,259,264,43,66,83,26,55,65,131,310,1542,362,59,268,186,50,139,82,1537,1905,2250,2161,1923,1859,1876,1863,2044,724,1804
-2019F,AK,AVACP,1032,1276,1030,648,459,293,215,701,703,687,462,377,387,399,480,466,381,432,437,433,498,504,369,375,392,490,617,208,407,491,491,618,459,410,171,389,142,407,152,529,521,245,179,156,182,277,250,248,200,217,169,159,154,139,130,259,246,245,250,247
-2019F,AK,AVTCP,1032,1276,1030,648,459,293,215,701,703,687,462,377,387,399,480,466,381,432,437,433,498,504,369,375,392,490,617,208,407,491,491,618,459,410,171,389,142,407,152,529,521,245,179,156,182,277,250,248,200,217,169,159,154,139,130,259,246,245,250,247
-2019F,AK,AVTXP,1032,1276,1030,648,459,293,215,701,703,687,462,377,387,399,480,466,381,432,437,433,498,504,369,375,392,490,617,208,407,491,491,618,459,410,171,389,142,407,152,529,521,245,179,156,182,277,250,248,200,217,169,159,154,139,130,259,246,245,250,247
-2019F,AK,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,4,12,34,46,40,42,34,116,7,56,171,8,211,160,160,160
-2019F,AK,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,4,12,34,46,40,42,34,116,7,56,171,8,211,160,160,160
-2019F,AK,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,CLACP,4,2,2,2,2,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,CLCCP,26,26,31,21,16,15,19,17,14,14,10,10,15,9,11,12,10,10,0,0,0,387,413,390,406,341,382,0,0,0,395,413,422,462,442,455,417,448,472,486,466,421,414,390,447,465,508,426,558,527,558,621,603,585,544,559,460,476,458,435
-2019F,AK,CLEIP,52,64,78,84,131,151,153,134,149,163,249,274,247,238,266,257,252,251,270,265,273,321,336,321,314,296,272,274,276,299,290,298,277,298,271,293,229,235,481,465,500,515,562,342,393,398,408,414,427,437,410,409,427,400,655,731,644,623,702,745
-2019F,AK,CLICP,256,473,552,493,465,339,672,808,674,523,467,504,449,498,427,594,511,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,2,2,1,1,1,1,1,0,1,2,2,2,0,4,4,5,1,1,1,1,1,1,1,1
-2019F,AK,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,CLOCP,256,473,552,493,465,339,672,808,674,523,467,504,449,498,427,594,511,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,2,2,1,1,1,1,1,0,1,2,2,2,0,4,4,5,1,1,1,1,1,1,1,1
-2019F,AK,CLRCP,38,38,45,29,22,20,25,23,18,18,13,10,11,5,5,5,4,4,0,0,0,85,85,74,95,96,114,0,0,0,99,91,93,101,78,68,57,55,58,66,58,52,57,58,50,40,50,47,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,CLTCP,376,603,708,628,636,525,872,984,857,719,740,799,722,751,710,868,778,584,270,265,273,792,834,785,815,733,769,274,276,299,784,802,792,863,796,815,706,740,1012,1019,1024,989,1034,790,891,905,968,889,985,968,971,1035,1031,986,1200,1291,1105,1101,1161,1182
-2019F,AK,CLTXP,325,539,630,544,505,375,718,850,708,556,491,525,475,512,443,611,525,333,0,0,0,472,498,464,501,437,497,0,0,0,494,504,514,565,525,523,477,505,531,554,524,475,472,449,498,507,560,475,558,531,561,626,604,586,545,560,461,478,459,437
-2019F,AK,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4079,3919,3708,3032,2137,2513,1731,1500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,DFACP,528,630,652,573,583,789,831,858,934,813,1000,1418,2256,1922,2407,2157,2912,2942,2737,1748,2605,2489,1701,3550,3754,5793,4061,3573,3858,6338,6042,4723,5324,5825,4681,6053,4340,5002,4632,4898,5308,5384,5195,4894,8596,7509,8065,7771,7186,7987,7388,7643,6375,5550,5738,5949,4618,4908,5952,6398
-2019F,AK,DFCCP,268,283,297,321,347,344,374,404,442,415,422,555,437,532,534,502,620,698,821,292,577,532,481,1041,1220,901,850,893,815,834,1049,970,1570,1796,1832,1035,1181,947,1068,1310,1155,1686,1239,932,1158,1006,1166,981,1226,1093,1924,1743,1481,1170,1264,1520,1034,1141,1289,1269
-2019F,AK,DFEIP,95,120,148,165,251,308,302,345,396,424,394,451,476,487,479,694,803,905,891,920,538,557,585,598,557,518,437,421,424,506,486,530,608,538,573,592,655,598,537,629,415,494,553,511,529,538,586,633,651,594,489,568,510,560,507,581,807,880,844,871
-2019F,AK,DFICP,878,978,931,1029,1209,1238,1373,1540,1777,1859,1923,2143,1709,1802,1708,2117,3201,3643,3720,1906,1784,2059,2420,923,1082,1713,1162,852,1876,1857,1413,1945,2250,2334,2331,3099,3733,3583,3595,3295,2266,2288,2337,2195,2089,1912,2187,2691,2709,3292,2455,3309,4056,4225,4022,4167,3457,1981,2131,1574
-2019F,AK,DFRCP,866,913,960,1036,1120,1110,1207,1306,1427,1340,1362,1791,1411,1719,1724,1621,2001,2253,2652,942,1172,910,1125,1194,1400,1274,1081,1367,1196,1536,1557,1589,1831,1894,1941,2024,1927,1849,1672,2033,1731,1824,1491,1472,1687,1619,1932,1458,1248,1500,1504,1393,1356,1200,1155,1349,1246,1347,1111,1141
-2019F,AK,DFTCP,2636,2922,2989,3124,3509,3788,4087,4453,4976,4851,5100,6357,6289,6462,6851,7090,9536,10441,10821,5808,6677,6546,6312,7305,8013,10198,7591,7106,8168,11071,10548,9756,11583,12388,11357,12803,11837,11979,11503,12164,10875,11675,10815,10004,14059,12584,13936,13534,13020,14466,13761,14657,13778,12705,12686,13565,11162,10257,11326,11254
-2019F,AK,DFTXP,2541,2803,2841,2959,3259,3480,3785,4108,4581,4428,4706,5907,5813,5975,6372,6396,8733,9536,9930,4888,6138,5990,5726,6708,7456,9680,7154,6685,7744,10565,10061,9226,10975,11849,10784,12211,11181,11381,10966,11535,10461,11181,10262,9493,13529,12046,13351,12901,12370,13872,13272,14089,13268,12145,12179,12984,10355,9377,10482,10383
-2019F,AK,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,0
-2019F,AK,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,0
-2019F,AK,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,181,199,167,97,111,49,118,93,63,123,0,0,0,0,0,0,0,0,0,574,0,0,0,0,0
-2019F,AK,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,2,2,2,1,14,2,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0
-2019F,AK,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,1,0,0,2,1,1,2,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0
-2019F,AK,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,184,210,170,100,113,49,134,97,64,127,0,0,0,0,0,0,0,0,0,592,0,0,0,0,0
-2019F,AK,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,ESCCP,99,123,149,183,206,267,302,332,379,417,478,562,597,693,737,657,752,816,852,981,728,691,772,844,1728,1898,1957,1894,1913,2048,2133,2187,2195,2245,2334,2372,2429,2359,2508,2583,2418,2483,2445,2473,2601,2695,2819,2828,2852,2841,2830,2854,2875,2824,2762,2763,2731,2705,2646,2639
-2019F,AK,ESICP,45,49,52,74,75,59,63,63,67,76,101,106,124,123,124,485,504,590,619,436,757,997,1081,1185,340,417,466,520,542,450,459,466,504,501,511,546,584,756,818,844,1037,1079,1088,1104,1126,1156,1243,1384,1344,1311,1324,1331,1381,1340,1360,1352,1385,1421,1352,1252
-2019F,AK,ESRCP,151,173,197,227,253,292,328,348,393,445,527,631,628,686,754,898,983,1071,1110,1067,1092,1228,1408,1453,1597,1674,1625,1548,1590,1643,1661,1603,1640,1629,1688,1713,1766,1726,1768,1866,1855,1891,1932,1987,2062,2062,2120,2114,2130,2117,2093,2134,2160,2104,2044,2044,2006,2060,1975,1928
-2019F,AK,ESRPP,662,727,801,886,963,1077,1211,1251,1379,1504,1733,2001,1936,2077,2212,2386,2452,2655,2742,2649,2694,2934,3133,2976,3109,3144,2985,2871,2934,3004,3003,2811,2786,2718,2798,2834,2902,2816,2852,2986,2954,2985,3008,3064,3127,3091,3140,3108,3098,3030,2932,2955,2956,2852,2773,2768,2702,2781,2681,2628
-2019F,AK,ESTCP,296,344,398,483,535,618,693,742,839,938,1106,1299,1349,1502,1615,2039,2240,2478,2581,2484,2577,2915,3261,3482,3665,3988,4048,3962,4045,4142,4254,4256,4339,4375,4533,4632,4780,4841,5095,5293,5310,5454,5465,5564,5788,5913,6182,6327,6326,6270,6247,6320,6416,6268,6165,6159,6123,6186,5972,5819
-2019F,AK,ESTPP,1294,1447,1619,1888,2033,2279,2558,2670,2944,3169,3639,4117,4157,4545,4737,5422,5587,6141,6377,6168,6358,6967,7253,7129,7134,7489,7438,7347,7463,7569,7688,7464,7370,7298,7514,7663,7854,7897,8218,8471,8456,8607,8509,8580,8780,8865,9155,9300,9202,8972,8750,8749,8780,8498,8364,8341,8246,8348,8108,7932
-2019F,AK,ESTXP,296,344,398,483,535,618,693,742,839,938,1106,1299,1349,1502,1615,2039,2240,2478,2581,2484,2577,2915,3261,3482,3665,3988,4048,3962,4045,4142,4254,4256,4339,4375,4533,4632,4780,4841,5095,5293,5310,5454,5465,5564,5788,5913,6182,6327,6326,6270,6247,6320,6416,6268,6165,6159,6123,6186,5972,5819
-2019F,AK,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,FSICP,0,0,0,16,15,18,19,17,17,31,37,56,58,52,59,63,66,87,124,85,104,58,67,84,112,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,HLACP,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,4,0,4,6,19,14,9,6,8,7,6,4,4,2,4,2,4,2,1,0,0,2,23,4,2,4,4,3,1,1,2,2,3,4,1,1,1,3,3,2
-2019F,AK,HLCCP,18,34,24,34,37,39,39,46,48,36,39,45,48,68,43,35,51,31,57,47,30,21,35,55,79,98,77,80,86,101,153,165,163,98,77,80,99,63,50,109,96,109,108,127,83,98,110,84,131,183,150,163,184,199,196,167,172,177,194,205
-2019F,AK,HLICP,4,3,2,0,0,0,8,1,0,41,60,71,82,62,75,130,231,338,356,83,119,104,128,80,72,91,81,79,72,38,25,17,14,10,70,85,9,180,204,16,0,7,47,34,33,6,25,16,9,43,51,37,20,28,32,25,40,26,22,35
-2019F,AK,HLRCP,24,44,31,44,48,51,51,59,63,46,51,59,63,88,55,46,66,40,75,61,39,27,46,71,103,128,101,105,112,132,200,215,213,128,101,104,130,82,65,142,125,143,140,149,91,158,138,106,193,183,153,130,131,96,101,92,91,116,120,104
-2019F,AK,HLTCP,46,81,56,79,86,91,98,106,111,124,151,176,193,218,173,211,348,409,488,192,191,152,212,212,272,331,268,271,277,278,384,402,393,238,252,272,241,326,320,266,221,261,318,314,209,266,277,209,334,411,357,333,338,327,329,285,303,323,338,346
-2019F,AK,HLTXP,46,81,56,79,86,91,98,106,111,124,151,176,193,218,173,211,348,409,488,192,191,152,212,212,272,331,268,271,277,278,384,402,393,238,252,272,241,326,320,266,221,261,318,314,209,266,277,209,334,411,357,333,338,327,329,285,303,323,338,346
-2019F,AK,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,182,176,130
-2019F,AK,HYEGP,290,297,304,325,322,350,316,363,364,341,363,363,346,286,326,357,383,512,472,459,539,590,561,593,693,748,809,872,935,873,975,896,918,1303,1345,1372,1266,1099,1113,817,1002,1346,1439,1583,1498,1464,1224,1291,1172,1324,1433,1345,1575,1435,1539,1569,1491,1462,1489,1493
-2019F,AK,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,HYTCP,290,297,304,325,322,350,316,363,364,341,363,363,346,286,326,357,383,512,472,459,539,590,561,593,693,748,809,872,935,873,975,896,918,1303,1345,1372,1266,1099,1113,817,1002,1346,1439,1583,1498,1464,1224,1291,1172,1324,1433,1345,1575,1435,1539,1569,1659,1644,1664,1623
-2019F,AK,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,182,176,130
-2019F,AK,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,JFACP,1972,2356,2838,2895,3003,3005,3733,4562,5119,6534,6735,7573,8019,7393,7470,7420,7409,7910,8273,8506,9618,10877,11530,12252,15178,15231,16187,14850,16899,18586,17367,17116,14720,14693,16080,16921,18652,21108,21886,23612,25872,24262,25111,27355,30954,31940,31747,29053,23817,18746,20083,18190,16313,15348,15080,16068,15832,16197,16377,16155
-2019F,AK,JFTCP,1972,2356,2838,2895,3003,3005,3733,4562,5119,6534,6735,7573,8019,7393,7470,7420,7409,7910,8273,8506,9618,10877,11530,12252,15178,15231,16187,14850,16899,18586,17367,17116,14720,14693,16080,16921,18652,21108,21886,23612,25872,24262,25111,27355,30954,31940,31747,29053,23817,18746,20083,18190,16313,15348,15080,16068,15832,16197,16377,16155
-2019F,AK,JFTXP,1972,2356,2838,2895,3003,3005,3733,4562,5119,6534,6735,7573,8019,7393,7470,7420,7409,7910,8273,8506,9618,10877,11530,12252,15178,15231,16187,14850,16899,18586,17367,17116,14720,14693,16080,16921,18652,21108,21886,23612,25872,24262,25111,27355,30954,31940,31747,29053,23817,18746,20083,18190,16313,15348,15080,16068,15832,16197,16377,16155
-2019F,AK,KSCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,5,5,3,4981,4791,189,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,185,106,94,12,16,18,14,5,3,3,4,0,0,0
-2019F,AK,KSICP,90,33,21,23,0,0,0,0,1,1,14,14,8,8,28,32,35,43,42,291,19,36,1238,9,6,4,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,KSRCP,0,9,3,6,8,10,8,7,8,6,19,19,13,10,77,91,30,44,40,761,0,0,0,2,3,1,1,1,3,1,3,8,1,1,10,0,0,0,1,17,13,16,0,15,20,31,275,161,140,14,15,25,7,5,6,7,11,0,0,0
-2019F,AK,KSTCP,90,42,24,29,8,10,8,7,9,7,33,33,21,18,105,123,64,86,82,1052,19,36,1262,17,14,7,4985,4792,192,2,3,8,1,5,11,1,1,1,1,17,14,17,0,15,20,32,465,271,237,26,31,44,21,10,9,10,14,0,0,0
-2019F,AK,KSTXP,90,42,24,29,8,10,8,7,9,7,33,33,21,18,105,123,64,86,82,1052,19,36,1262,17,14,7,4985,4792,192,2,3,8,1,5,11,1,1,1,1,17,14,17,0,15,20,32,465,271,237,26,31,44,21,10,9,10,14,0,0,0
-2019F,AK,LUACP,3,3,35,35,36,40,42,39,43,58,59,48,52,49,47,121,134,94,101,106,94,90,82,86,92,86,84,95,91,94,96,86,88,90,94,92,89,94,99,100,98,90,89,82,83,83,81,83,77,70,102,100,79,77,84,93,78,77,81,90
-2019F,AK,LUICP,4,4,3,3,3,1,1,0,0,1,1,1,1,1,1,24,27,21,22,23,21,20,18,19,20,19,18,21,20,21,21,19,19,20,20,20,20,21,22,22,22,20,19,18,18,18,18,18,17,15,324,306,307,273,256,263,242,218,192,181
-2019F,AK,LUTCP,7,7,38,38,39,41,43,39,43,59,60,49,53,50,48,145,161,115,123,129,115,110,100,105,112,104,102,115,111,114,117,105,107,109,114,112,109,115,120,122,120,110,108,100,102,101,98,102,94,85,426,406,386,350,340,356,320,294,273,270
-2019F,AK,LUTXP,7,7,38,38,39,41,43,39,43,59,60,49,53,50,48,145,161,115,123,129,115,110,100,105,112,104,102,115,111,114,117,105,107,109,114,112,109,115,120,122,120,110,108,100,102,101,98,102,94,85,426,406,386,350,340,356,320,294,273,270
-2019F,AK,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-389,-351,-250,-124,-494,-813,-363,-161,166,164,-73,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,MGACP,1527,1669,1758,1808,1858,2113,1733,1809,1765,2038,2267,2539,2411,2688,3036,3658,4287,4244,4063,4248,3306,4205,4726,4478,5099,4964,4839,4751,5205,4963,5747,4963,5766,5928,6475,7065,6377,6187,6543,6312,5884,5627,5713,5797,6740,6583,6530,6685,6518,6575,6518,6321,6355,6169,6564,6481,6715,6575,6485,6376
-2019F,AK,MGCCP,130,143,157,197,220,253,76,621,279,200,246,112,444,396,413,415,290,477,354,313,258,250,349,261,221,268,200,52,50,52,52,88,57,8,10,21,294,71,116,88,64,680,124,9,95,168,156,176,116,64,157,128,95,85,72,300,153,104,104,104
-2019F,AK,MGICP,0,0,0,0,0,83,105,250,160,164,107,193,829,114,96,106,120,124,116,120,111,12,14,14,5,406,386,402,64,64,55,57,58,40,57,62,64,54,79,25,25,76,86,113,112,102,103,66,73,69,202,194,211,228,127,97,99,100,104,104
-2019F,AK,MGTCP,1657,1811,1915,2004,2078,2450,1915,2681,2205,2401,2621,2844,3685,3197,3545,4179,4697,4845,4533,4681,3676,4468,5089,4752,5324,5638,5425,5205,5319,5079,5854,5108,5881,5976,6542,7148,6735,6312,6737,6426,5973,6383,5923,5919,6947,6853,6789,6927,6708,6708,6877,6643,6661,6482,6763,6878,6967,6778,6694,6584
-2019F,AK,MGTXP,1657,1811,1915,2004,2078,2450,1915,2681,2205,2401,2621,2844,3685,3197,3545,4179,4697,4845,4533,4681,3676,4468,5089,4752,5324,5638,5425,5205,5319,5079,5854,5108,5881,5976,6542,7148,6735,6312,6737,6426,5973,6383,5923,5919,6947,6853,6789,6927,6708,6708,6877,6643,6661,6482,6763,6878,6967,6778,6694,6584
-2019F,AK,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,NGACP,2,47,72,42,0,0,0,0,0,0,17306,17210,8784,170,110,94,150,260,187,880,129,271,254,256,5921,5147,5954,2109,1961,1876,1708,2597,2864,2859,3024,2425,2012,4946,5573,7260,7376,5083,4375,4080,3816,2655,2853,2143,2073,2340,3304,3420,3985,553,337,625,454,353,566,349
-2019F,AK,NGCCP,0,118,18,1614,1925,2270,2562,2722,4713,11018,12519,14256,16011,12277,13106,14415,14191,14564,15208,15862,16513,16149,24232,24693,24654,20344,20874,20224,20842,21738,21622,20897,21299,20003,20698,24979,27315,26908,27079,27667,26485,15849,15691,17270,18373,16903,18544,18756,17025,16620,15920,19399,19898,18694,17925,18472,15953,15544,14489,14570
-2019F,AK,NGEIP,0,0,0,965,1598,2149,3856,4481,5668,6696,8198,10300,13094,15812,17117,19619,22204,23534,24431,28295,28763,29071,30988,31348,31582,34194,34409,30530,30841,32746,34366,31330,28953,28025,29048,29809,31154,33510,28785,30528,35570,32588,31704,34403,37641,39284,43288,40901,43199,38078,39732,41738,39758,33944,31944,30207,28224,28933,25393,24401
-2019F,AK,NGICP,1793,1869,3284,2200,2170,1738,4070,2728,4874,20439,19492,19047,28375,29790,28378,40230,42659,66638,93033,104886,100023,68332,171853,172469,183534,139824,133125,184149,221475,251580,270724,298831,315654,313497,299560,357788,371450,344884,357818,339728,341872,338623,351170,341629,328288,356102,288548,288322,258151,265243,255642,250639,258089,259893,261005,265725,268134,282647,296078,301693
-2019F,AK,NGRCP,170,188,537,685,1045,1437,1794,1958,2293,4573,6211,6893,8394,5024,4163,10393,10917,11282,12166,7313,7917,7904,10554,10434,11833,13256,12091,12256,12529,13589,14165,13562,14350,13858,14895,15231,16179,15146,15617,17634,15987,16818,16191,16853,18200,18029,20616,19843,21439,19978,18714,20262,21380,19215,17734,18574,17787,20247,18607,17951
-2019F,AK,NGTCP,1965,2222,3911,5506,6738,7594,12282,11889,17548,42726,63726,67706,74658,63073,62874,84751,90121,116278,145025,157236,153345,121727,237881,239200,257524,212765,206453,249268,287648,321529,342585,367217,383121,378240,367225,430231,448110,425394,434871,422817,427289,408960,419131,414234,406318,432972,373849,369966,341887,342259,333312,335458,343110,332299,328945,333603,330552,347724,355133,358964
-2019F,AK,NGTPP,8.6,9.3,15.9,21.5,25.6,28,45.3,42.8,61.6,144.3,209.6,214.6,230.1,190.8,184.3,225.3,224.8,288.2,358.3,390.4,378.3,290.9,529.1,489.7,501.3,399.6,379.3,462.2,530.7,587.6,619.2,644,650.8,631,608.7,711.8,736.3,694,701.5,676.7,680.4,645.3,652.5,638.8,616.3,649.2,553.6,543.8,497.3,489.7,466.8,464.4,469.5,450.5,446.3,451.8,445.1,469.3,482.1,489.3
-2019F,AK,NGTXP,1965,2222,3911,4541,5140,5445,8426,7408,11880,36030,55528,57406,61564,47261,45757,65132,67917,92744,120594,128941,124582,92656,206893,207852,225942,178571,172044,218738,256807,288783,308219,335888,354167,350216,338177,400423,416956,391884,406086,392289,391719,376372,387427,379831,368678,393688,330561,329065,298688,304181,293580,293720,303352,298355,297001,303396,302328,318791,329740,334563
-2019F,AK,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,OPICP,0,0,0,273,273,284,280,268,276,530,523,598,731,798,776,771,749,1027,1361,1411,1446,874,966,5360,5243,5215,4828,4329,5181,4683,4582,2312,3377,3028,3375,3195,4138,4104,4056,4217,3805,5119,4828,5500,5421,5724,5981,5795,4488,4064,4356,4403,3778,3562,2917,2152,2209,2259,2295,2338
-2019F,AK,OPTCP,0,0,0,273,273,284,280,268,276,530,523,598,731,798,776,771,749,1027,1361,1411,1446,874,966,5360,5243,5215,4828,4329,5181,4683,4582,2312,3377,3028,3375,3195,4138,4104,4056,4217,3805,5119,4828,5500,5421,5724,5981,5795,4488,4064,4356,4403,3778,3562,2917,2152,2209,2259,2295,2338
-2019F,AK,OPTXP,0,0,0,273,273,284,280,268,276,530,523,598,731,798,776,771,749,1027,1361,1411,1446,874,966,5360,5243,5215,4828,4329,5181,4683,4582,2312,3377,3028,3375,3195,4138,4104,4056,4217,3805,5119,4828,5500,5421,5724,5981,5795,4488,4064,4356,4403,3778,3562,2917,2152,2209,2259,2295,2338
-2019F,AK,P1ICP,141,120,98,387,396,417,529,393,391,678,812,909,1067,1051,1052,1146,1129,1452,1739,1932,1795,1196,2590,5732,5707,6433,5223,4607,5900,4978,4872,2590,3660,3095,3462,3298,4184,4180,4143,4370,4137,6681,5210,5578,5707,5927,6053,5956,4590,5616,6586,6960,6247,5758,5032,4291,4315,4521,3211,4323
-2019F,AK,P1TCP,1176,1408,1166,1077,900,760,794,1140,1144,1430,1352,1353,1519,1509,1656,1824,1674,2021,2317,3232,2387,1790,3065,6201,6199,7013,10906,9701,6590,5564,5462,3302,4208,3595,3737,3780,4416,4681,4395,5016,4770,7032,5479,5832,5993,6319,6844,6555,5101,5928,6887,7262,6501,5983,5255,4653,4653,4843,3542,4660
-2019F,AK,P1TXP,1176,1408,1166,1077,900,760,794,1140,1144,1430,1352,1353,1519,1509,1656,1824,1674,2021,2317,3232,2387,1790,3065,6201,6199,7013,10906,9701,6590,5564,5462,3302,4208,3595,3737,3780,4416,4681,4395,5016,4770,7032,5479,5832,5993,6319,6844,6555,5101,5928,6887,7262,6501,5983,5255,4653,4653,4843,3542,4660
-2019F,AK,PAACP,5077,5951,6334,5989,5960,6307,6600,8013,8608,10253,10659,12192,13367,12777,13772,14305,15939,16760,17384,15348,16125,18172,18412,20802,24588,26596,25910,23601,26608,30598,29888,27583,26674,27064,27604,30636,29608,32803,33319,35680,37801,35663,36360,38302,46558,46407,46704,44105,37993,33595,34296,32484,29336,27287,27597,28850,27490,28005,29148,29268
-2019F,AK,PACCP,880,901,892,940,1228,1387,1330,1651,1359,1472,1514,1512,1783,1644,1668,1510,1422,1777,1723,664,869,803,892,1362,1526,1269,7759,7778,1449,988,1254,1222,1790,1903,1919,1136,1574,1081,1234,1508,1315,2476,1471,1067,1336,1272,1620,1347,1569,1352,2247,2053,1774,1459,1535,1989,1362,1422,1587,1578
-2019F,AK,PAEIP,99,123,152,167,254,312,305,349,400,429,399,455,478,492,482,696,817,909,892,922,891,775,884,934,1008,994,966,727,688,736,658,769,755,845,854,849,1171,1321,1357,1467,1085,1550,1560,1363,1231,1234,1268,1105,848,1140,795,800,886,654,626,697,807,880,844,871
-2019F,AK,PAICP,1252,1287,1311,1745,1755,1798,2092,2258,2453,2782,2975,3340,3745,3091,2996,3530,4691,5567,6011,4040,3823,3390,5152,6749,6866,11220,11641,6960,7911,6936,6481,4888,6280,5777,6261,6920,8376,8134,8021,7705,6428,9070,7680,7920,7942,7948,8368,8729,7382,9024,9298,10500,10535,10239,9212,8581,7911,6628,5467,6037
-2019F,AK,PARCP,890,966,994,1087,1177,1171,1266,1372,1498,1393,1432,1869,1487,1817,1856,1758,2097,2337,2767,1765,1211,937,1170,1268,1505,1402,1183,1473,1311,1669,1759,1812,2044,2023,2052,2129,2057,1931,1738,2191,1870,1982,1631,1636,1797,1808,2346,1725,1581,1697,1672,1549,1494,1301,1261,1448,1347,1463,1230,1245
-2019F,AK,PATCP,8197,9229,9683,9928,10373,10975,11593,13643,14319,16329,16979,19368,20860,19821,20775,21800,24967,27350,28777,22739,22919,24077,26511,31115,35494,41482,47458,40538,37966,40926,40041,36275,37544,37612,38690,41669,42786,45270,45669,48552,48500,50742,48702,50288,58864,58670,60306,57012,49373,46808,48309,47386,44024,40940,40232,41565,38918,38398,38277,38999
-2019F,AK,PATPP,35.8,38.8,39.4,38.8,39.4,40.5,42.8,49.1,50.2,55.2,55.9,61.4,64.3,60,60.9,58,62.3,67.8,71.1,56.5,56.5,57.5,59,63.7,69.1,77.9,87.2,75.2,70.1,74.8,72.4,63.6,63.8,62.7,64.1,68.9,70.3,73.9,73.7,77.7,77.2,80.1,75.8,77.6,89.3,88,89.3,83.8,71.8,67,67.7,65.6,60.2,55.5,54.6,56.3,52.4,51.8,52,53.2
-2019F,AK,PATXP,8099,9106,9531,9761,10119,10663,11288,13294,13918,15900,16580,18913,20382,19330,20293,21104,24150,26442,27886,21817,22028,23302,25627,30181,34485,40488,46492,39812,37279,40190,39383,35506,36789,36767,37836,40821,41616,43949,44312,47085,47415,49191,47142,48926,57633,57436,59037,55907,48525,45668,47514,46586,43138,40286,39606,40868,38111,37518,37433,38128
-2019F,AK,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,4,1,1,1,3,3,2
-2019F,AK,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,150,163,184,199,196,167,172,177,194,205
-2019F,AK,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,37,20,28,32,25,40,26,22,35
-2019F,AK,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153,130,131,96,101,92,91,116,120,104
-2019F,AK,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,357,333,338,327,329,285,303,323,338,346
-2019F,AK,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,357,333,338,327,329,285,303,323,338,346
-2019F,AK,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AK,RFACP,15,17,20,30,19,66,46,43,44,122,135,236,242,328,332,484,816,1139,1773,306,0,7,0,55,56,19,113,118,140,117,138,73,313,117,100,114,4,2,7,230,118,54,51,13,0,12,27,263,193,0,34,69,57,0,0,0,0,0,0,0
-2019F,AK,RFCCP,464,442,414,389,624,751,841,580,590,822,807,800,853,648,679,558,462,571,490,12,4,0,3,0,1,0,1650,1962,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,RFEIP,3,3,3,2,3,4,4,4,5,5,5,4,2,4,3,1,15,3,1,2,353,219,299,337,451,476,529,306,264,230,171,240,147,306,281,257,515,723,821,838,670,1057,1007,851,702,696,682,471,197,546,306,232,376,94,119,116,0,0,0,0
-2019F,AK,RFICP,229,186,281,328,151,60,77,75,124,40,73,24,57,62,66,31,11,11,80,0,14,20,0,0,0,2577,4789,1020,0,0,116,278,298,299,340,375,387,139,0,0,0,18,0,0,0,0,0,0,1,3,4,0,0,0,0,0,0,0,0,0
-2019F,AK,RFTCP,711,649,719,749,797,881,967,702,763,988,1020,1065,1154,1042,1080,1075,1303,1724,2345,319,371,245,302,392,508,3072,7081,3406,713,347,426,591,758,723,721,746,906,864,828,1068,788,1129,1057,864,702,708,713,734,392,549,343,302,432,94,119,116,0,0,0,0
-2019F,AK,RFTXP,708,646,715,747,794,877,963,698,759,983,1015,1060,1152,1038,1077,1073,1289,1721,2344,317,18,27,3,55,56,2596,6553,3100,450,117,254,351,611,416,441,489,391,141,7,230,118,72,51,13,0,12,30,263,195,3,37,69,57,0,0,0,0,0,0,0
-2019F,AK,SGICP,0,0,0,258,258,266,260,251,259,499,486,542,674,746,717,708,683,941,1238,1326,1342,1609,1764,1749,1870,2576,3519,3478,3514,3794,3932,3535,4183,4236,4191,4143,4474,4393,5212,5279,5301,5378,5303,5659,5659,5675,5712,5544,4663,4304,4273,4238,3627,3523,3086,2179,2197,2148,2251,2136
-2019F,AK,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1
-2019F,AK,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3
-2019F,AK,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4
-2019F,AK,TPOPP,229,238,246,256,263,271,271,278,285,296,304,316,324,331,341,376,401,403,405,403,405,418,450,488,514,532,544,539,542,547,553,570,589,599,603,604,609,613,620,625,628,634,642,648,659,667,675,680,687,699,714,722,731,738,737,738,743,741,737,734
-2019F,AK,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-413,-522,-303,-534,-746,-911,-923,-682,-1008,-1014,-1149,-1057,-1208,-838,-966,-362,-322,-1173,-1089,-1512,-285,-507,-191,-285,11,266,244,-175,-237,84,165,152,39,-169,-27,13,112,47,204
-2019F,AK,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,7,13,12,37,145,152,160,169,142,155,143
-2019F,AK,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AK,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,7,13,12,37,145,152,160,169,142,155,143
-2019F,AK,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,11,1,0,6,1,0,-2,0,0,0,0,0,10,8,11,15,6,10,6,8,12,11,14,14,1,3,0,-1,0,0,0,-1,0,-1,0,0,-2,-2
-2019F,AL,ARICP,2160,2149,2273,2471,2548,2749,2627,2746,2582,3222,3176,3094,3348,3638,3107,2706,2963,3200,3718,3150,3132,3747,3584,3719,3625,3757,3486,4564,4132,4484,4321,5286,4943,4984,5059,4994,5704,5467,4455,4597,5129,4335,4540,4643,6725,7007,6464,5283,5294,2666,2657,2739,2670,2557,2484,2413,2466,2245,1954,1879
-2019F,AL,ARTCP,2160,2149,2273,2471,2548,2749,2627,2746,2582,3222,3176,3094,3348,3638,3107,2706,2963,3200,3718,3150,3132,3747,3584,3719,3625,3757,3486,4564,4132,4484,4321,5286,4943,4984,5059,4994,5704,5467,4455,4597,5129,4335,4540,4643,6725,7007,6464,5283,5294,2666,2657,2739,2670,2557,2484,2413,2466,2245,1954,1879
-2019F,AL,ARTXP,2160,2149,2273,2471,2548,2749,2627,2746,2582,3222,3176,3094,3348,3638,3107,2706,2963,3200,3718,3150,3132,3747,3584,3719,3625,3757,3486,4564,4132,4484,4321,5286,4943,4984,5059,4994,5704,5467,4455,4597,5129,4335,4540,4643,6725,7007,6464,5283,5294,2666,2657,2739,2670,2557,2484,2413,2466,2245,1954,1879
-2019F,AL,AVACP,280,292,321,373,333,446,398,381,425,405,349,355,358,331,306,249,232,244,240,235,248,226,173,177,172,172,204,143,157,133,116,109,106,103,110,97,93,103,82,102,83,82,54,74,77,77,118,116,61,45,74,70,66,51,56,62,62,63,68,71
-2019F,AL,AVTCP,280,292,321,373,333,446,398,381,425,405,349,355,358,331,306,249,232,244,240,235,248,226,173,177,172,172,204,143,157,133,116,109,106,103,110,97,93,103,82,102,83,82,54,74,77,77,118,116,61,45,74,70,66,51,56,62,62,63,68,71
-2019F,AL,AVTXP,280,292,321,373,333,446,398,381,425,405,349,355,358,331,306,249,232,244,240,235,248,226,173,177,172,172,204,143,157,133,116,109,106,103,110,97,93,103,82,102,83,82,54,74,77,77,118,116,61,45,74,70,66,51,56,62,62,63,68,71
-2019F,AL,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,6,12,41,117,158,136,144,116,397,490,829,626,794,1311,1086,1079,971
-2019F,AL,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,6,12,41,117,158,136,144,116,397,490,829,626,794,1311,1086,1079,971
-2019F,AL,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,CLACP,136,30,28,25,28,29,27,23,21,17,18,13,11,7,5,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,CLCCP,112,78,125,132,61,42,45,39,41,56,56,54,68,60,25,14,9,20,140,123,180,72,101,112,116,96,99,102,115,56,84,14,73,33,9,6,39,65,8,20,47,14,3,3,0,2,23,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,CLEIP,7264,8371,9748,10809,10766,12572,14163,13784,15118,15515,16331,15714,16828,18624,17901,17301,17850,18809,16597,18698,19593,19504,15584,17164,17786,21545,21436,20746,20002,21975,22084,23778,25066,27621,25910,28839,31303,30925,31560,33548,35636,33801,33545,35600,35083,36997,37168,37233,35845,27583,30985,28151,23020,24400,23901,21025,17448,16231,16235,14245
-2019F,AL,CLICP,7904,6660,7006,6729,7589,8774,9187,9449,9753,10338,11177,10282,10733,9919,9397,9288,8384,7424,6969,8573,7221,6187,5250,4682,6007,5476,5265,5804,6291,5656,5525,5633,6433,5474,5646,5543,5792,5694,4846,4645,4415,3877,3523,3703,3824,3570,3358,3189,3141,2316,2685,2519,2674,2834,3234,2554,2358,2263,2174,1781
-2019F,AL,CLKCP,6777,5585,5899,5691,6472,7147,7597,7848,7724,8404,8745,7587,8053,7464,6977,6693,6711,5657,5067,5947,4849,3869,2462,1853,2921,2883,2674,3150,3383,3314,3288,3166,3297,3206,3253,3257,3247,2956,2404,2308,2172,1581,1390,1648,1715,1695,1557,1484,1418,975,1309,1251,1352,1334,1546,1204,1253,1308,1242,978
-2019F,AL,CLOCP,1127,1075,1107,1039,1116,1627,1590,1601,2029,1934,2432,2694,2681,2455,2420,2595,1673,1767,1902,2626,2372,2318,2788,2828,3086,2593,2591,2654,2908,2341,2237,2468,3136,2268,2394,2286,2545,2738,2442,2337,2243,2297,2133,2055,2110,1874,1800,1705,1724,1341,1376,1268,1322,1500,1688,1350,1105,955,932,803
-2019F,AL,CLRCP,162,112,180,182,85,56,59,52,52,71,71,52,51,35,12,6,3,8,42,31,48,16,21,21,27,27,30,30,33,15,21,3,16,7,2,1,5,8,1,3,6,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,CLTCP,15578,15251,17087,17877,18529,21473,23481,23347,24986,25998,27653,26116,27692,28646,27339,26609,26246,26261,23748,27424,27042,25779,20956,21979,23936,27145,26831,26683,26441,27701,27713,29428,31588,33135,31567,34389,37140,36692,36415,38216,40103,37694,37072,39306,38908,40568,40551,40423,38987,29899,33670,30670,25695,27235,27135,23580,19806,18494,18408,16026
-2019F,AL,CLTXP,8314,6879,7338,7068,7763,8901,9318,9563,9868,10483,11322,10402,10864,10022,9438,9309,8396,7452,7151,8727,7449,6275,5372,4815,6150,5599,5394,5937,6439,5726,5630,5650,6522,5514,5657,5550,5836,5766,4855,4668,4468,3894,3527,3706,3825,3571,3383,3190,3141,2316,2685,2519,2674,2834,3234,2554,2358,2263,2174,1781
-2019F,AL,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,DFACP,2582,2412,2902,3173,3051,3090,3021,2373,4437,4894,5353,5799,7390,8699,9226,9087,9953,11068,11819,9369,11049,12291,11201,9974,10037,10899,10811,12433,14098,16544,16110,16139,16421,16251,17871,18421,17676,17842,17637,19453,20440,18709,18259,19375,23139,22368,22750,22963,19652,18784,20300,21417,20648,20312,20567,21988,24484,23938,22182,22738
-2019F,AL,DFCCP,264,132,179,178,242,175,191,151,183,199,264,260,412,493,580,547,892,807,723,660,641,996,237,954,755,913,719,719,714,869,739,740,776,766,939,644,556,537,567,570,748,837,783,1092,1105,749,1533,1265,991,977,1138,1210,1122,735,677,751,844,841,859,803
-2019F,AL,DFEIP,0,0,0,0,0,0,0,0,0,5,26,95,498,796,634,514,631,840,1075,108,131,96,64,128,72,88,67,58,174,216,133,163,141,130,220,181,300,230,473,296,469,541,359,460,240,272,177,148,215,177,215,187,141,109,177,126,63,56,138,29
-2019F,AL,DFICP,2511,1773,1856,1766,2580,1962,1904,1525,1775,2222,2833,2669,3737,4363,4549,4475,6677,6959,6892,4829,3356,4544,3865,4284,3391,2597,3029,2796,2786,3663,4580,4086,4067,3831,4488,4397,5086,4407,3726,3735,2938,3212,3281,7025,6823,6488,5571,4899,5505,4173,3852,4114,5229,4005,3447,3781,3964,3557,3965,3504
-2019F,AL,DFRCP,36,18,24,24,33,24,26,21,25,27,36,35,56,67,79,74,121,109,98,89,13,17,55,45,36,24,29,19,27,24,17,14,8,12,11,10,10,40,6,6,12,39,37,8,13,14,9,8,9,97,121,11,18,15,18,21,16,14,12,4
-2019F,AL,DFTCP,5393,4335,4962,5141,5906,5251,5141,4070,6419,7347,8512,8858,12093,14418,15067,14697,18274,19783,20607,15056,15190,17944,15422,15386,14290,14520,14655,16026,17799,21316,21579,21142,21413,20991,23529,23653,23628,23057,22409,24061,24607,23337,22718,27959,31319,29891,30040,29284,26373,24208,25625,26940,27158,25176,24885,26666,29372,28407,27157,27077
-2019F,AL,DFTXP,5393,4335,4962,5141,5906,5251,5141,4070,6419,7342,8486,8764,11595,13622,14434,14183,17643,18944,19532,14947,15059,17847,15358,15257,14218,14432,14588,15968,17625,21100,21447,20979,21272,20861,23310,23472,23328,22827,21936,23764,24138,22797,22359,27499,31080,29619,29862,29135,26158,24031,25411,26752,27017,25068,24708,26541,29309,28350,27019,27048
-2019F,AL,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-12516,-20207,-25274,-26034,-24964,-26383,-39351,-35978,-31424,-30252,-30760,-37513,-40454,-44130,-39822,-38526,-39996,-40102,-44550,-49563,-49870,-56124,-55268,-52068,-47963,-53290,-43895,-43529,-44588,-44514
-2019F,AL,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,68,77,362,559,1119,999,558,461,459,737,389,418,574,99,98,81,11,0,366,249,360,711,47,43,134,1060,2594,6640,6272,6079,6249,6299,6460,6590,6548,6113,6146
-2019F,AL,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,6,5,3,2,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,5,5,4,5,5,107,136,109,109,107
-2019F,AL,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,5,10,8,6,4,4,6,4,5,7,1,1,1,0,0,6,4,7,15,1,1,2,17,42,70,66,49,52,54,88,89,90,87,83
-2019F,AL,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,69,78,369,567,1136,1012,566,467,465,745,394,424,581,101,99,82,11,0,373,254,367,726,48,44,137,1078,2638,6714,6343,6133,6306,6358,6655,6815,6747,6308,6336
-2019F,AL,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,ESCCP,2390,2434,2729,2944,3203,3443,3608,3882,4238,4730,5144,5395,5868,6484,6686,6493,6480,6683,6833,6752,7190,9131,9307,9440,8454,8805,9292,9930,10239,11113,11589,11948,11554,11906,12503,12845,13948,17043,18307,18820,19734,19607,20430,20411,21166,21608,22120,22873,22533,21918,22984,22257,21799,22603,22929,23438,23634,22744,23483,23076
-2019F,AL,ESICP,8966,9283,10172,11080,12276,13636,14503,15429,16305,18014,18041,18171,20184,21523,21847,20473,23747,25715,26958,28439,26708,24835,19962,19832,24383,24179,24046,25478,26758,27232,27618,27985,29476,30524,31919,32847,33523,32617,33539,34533,35034,31949,32615,34017,35595,36279,36281,36172,34990,29437,32350,33735,33751,33870,34635,33499,32535,33317,33717,32603
-2019F,AL,ESRCP,4129,4291,4911,5240,5739,6150,6631,7117,9115,10257,11527,12237,13348,14704,14687,13409,14087,15247,15739,15029,16469,15912,15782,15814,17012,17182,18259,19294,19641,19842,20719,21293,21137,22628,23159,24314,25634,24893,27327,27048,28756,27802,30022,29416,30109,31315,32277,32783,32185,31489,35529,33003,30632,31379,32930,31909,32056,30181,33080,32416
-2019F,AL,ESRPP,1261,1294,1478,1561,1691,1786,1914,2058,2645,2982,3340,3499,3771,4108,4050,3645,3772,4033,4107,3887,4222,4061,4021,4020,4305,4325,4574,4805,4881,4923,5116,5195,5088,5369,5436,5659,5919,5699,6204,6105,6459,6223,6701,6532,6646,6853,6973,7016,6821,6618,7424,6876,6360,6494,6798,6573,6587,6187,6763,6605
-2019F,AL,ESTCP,15485,16009,17812,19265,21218,23230,24742,26427,29657,33001,34713,35803,39400,42711,43221,40375,44314,47645,49530,50220,50367,49878,45051,45087,49849,50166,51597,54703,56638,58187,59926,61227,62167,65058,67581,70007,73104,74554,79173,80401,83524,79358,83067,83844,86871,89202,90678,91828,89707,82845,90863,88995,86183,87852,90494,88846,88225,86242,90280,88095
-2019F,AL,ESTPP,4730,4828,5360,5737,6250,6747,7143,7642,8606,9593,10059,10238,11132,11931,11918,10975,11864,12603,12926,12989,12913,12729,11477,11460,12614,12628,12926,13624,14075,14438,14796,14937,14965,15438,15863,16293,16879,17068,17975,18149,18760,17763,18541,18618,19174,19520,19589,19652,19013,17412,18987,18542,17893,18183,18683,18301,18128,17680,18456,17949
-2019F,AL,ESTXP,15485,16009,17812,19265,21218,23230,24742,26427,29657,33001,34713,35803,39400,42711,43221,40375,44314,47645,49530,50220,50367,49878,45051,45087,49849,50166,51597,54703,56638,58187,59926,61227,62167,65058,67581,70007,73104,74554,79173,80401,83524,79358,83067,83844,86871,89202,90678,91828,89707,82845,90863,88995,86183,87852,90494,88846,88225,86242,90280,88095
-2019F,AL,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,FSICP,0,0,0,16,15,18,20,27,24,23,32,39,39,32,42,92,105,121,139,101,123,63,84,49,91,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,HLACP,31,30,51,59,77,43,67,75,98,124,98,116,121,119,91,87,107,112,122,60,46,132,164,195,220,161,146,100,90,89,96,94,85,117,193,93,78,68,17,15,40,11,16,66,186,74,80,55,122,83,58,61,58,52,42,45,50,3,11,23
-2019F,AL,HLCCP,685,738,765,833,917,871,1021,1073,1421,1651,1603,1718,1884,1718,1392,1276,1456,1553,1264,775,844,874,747,889,656,680,778,924,904,990,876,753,721,932,912,928,952,980,844,1522,1605,1294,1099,920,914,524,670,629,813,573,655,689,534,582,568,438,447,530,560,550
-2019F,AL,HLICP,708,730,944,1064,1230,1020,1111,1073,1337,1696,1696,1708,2062,2166,2003,1846,1818,2075,2174,2900,1857,1284,1563,1048,793,1031,1068,1218,1084,1107,901,994,1279,1551,1646,1670,1330,661,187,1517,1548,2481,1290,1030,997,794,957,1459,722,532,527,500,575,518,474,450,429,465,413,517
-2019F,AL,HLRCP,1787,1927,1997,2175,2394,2273,2665,2801,3709,4309,4185,4483,4918,4484,3634,3331,3801,4053,3299,2022,2202,2282,1950,2319,1713,1776,2032,2411,2359,2583,2286,1966,1883,2433,2380,2423,2486,2559,2204,3972,4189,3377,2868,2178,2361,1615,1664,1782,1970,2030,2214,1530,1096,1220,1287,1405,1312,1239,1495,1571
-2019F,AL,HLTCP,3211,3426,3757,4130,4618,4207,4864,5022,6564,7780,7583,8025,8985,8488,7121,6540,7182,7793,6860,5756,4949,4573,4424,4450,3382,3648,4024,4653,4438,4768,4160,3807,3968,5033,5132,5115,4845,4269,3252,7025,7381,7163,5273,4195,4458,3007,3371,3925,3627,3217,3455,2779,2262,2372,2370,2338,2238,2237,2478,2661
-2019F,AL,HLTXP,3211,3426,3757,4130,4618,4207,4864,5022,6564,7780,7583,8025,8985,8488,7121,6540,7182,7793,6860,5756,4949,4573,4424,4450,3382,3648,4024,4653,4438,4768,4160,3807,3968,5033,5132,5115,4845,4269,3252,7025,7381,7163,5273,4195,4458,3007,3371,3925,3627,3217,3455,2779,2262,2372,2370,2338,2238,2237,2478,2661
-2019F,AL,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,HYEGP,6213,6722,7515,6359,8736,7078,6901,9113,7357,7491,7607,9912,10208,11778,10344,12188,9433,10330,7869,11843,9385,6014,10707,11141,10774,6862,5227,7449,5359,13153,10367,10758,10260,9034,11429,9502,11082,11521,10565,7760,5818,8356,8825,12665,10626,10145,7252,4136,6136,12535,8704,8884,7435,12899,9467,9862,6985,9237,11143,11405
-2019F,AL,HYICP,26,25,24,25,24,25,25,25,25,25,25,25,25,25,25,25,25,24,24,25,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,HYTCP,6239,6747,7540,6384,8760,7103,6926,9139,7382,7515,7632,9936,10233,11803,10369,12213,9458,10354,7893,11867,9408,6038,10731,11165,10798,6886,5251,7472,5383,13153,10367,10758,10260,9034,11429,9502,11082,11521,10565,7760,5818,8356,8825,12665,10626,10145,7252,4136,6136,12535,8704,8884,7435,12899,9467,9862,6985,9237,11143,11405
-2019F,AL,HYTXP,26,25,24,25,24,25,25,25,25,25,25,25,25,25,25,25,25,24,24,25,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,JFACP,1126,1144,1281,1286,1326,1156,1192,1426,1814,1867,1799,1786,1704,1681,1706,1707,1654,1773,1785,1702,2048,1754,1581,1643,3695,3516,3745,3872,1872,2046,1899,2292,2108,1973,3472,3843,3508,2184,3525,1963,2348,2343,2257,2569,2554,2466,2313,2321,2169,1744,1607,1777,1708,1433,1547,1435,1390,1566,1572,1618
-2019F,AL,JFTCP,1126,1144,1281,1286,1326,1156,1192,1426,1814,1867,1799,1786,1704,1681,1706,1707,1654,1773,1785,1702,2048,1754,1581,1643,3695,3516,3745,3872,1872,2046,1899,2292,2108,1973,3472,3843,3508,2184,3525,1963,2348,2343,2257,2569,2554,2466,2313,2321,2169,1744,1607,1777,1708,1433,1547,1435,1390,1566,1572,1618
-2019F,AL,JFTXP,1126,1144,1281,1286,1326,1156,1192,1426,1814,1867,1799,1786,1704,1681,1706,1707,1654,1773,1785,1702,2048,1754,1581,1643,3695,3516,3745,3872,1872,2046,1899,2292,2108,1973,3472,3843,3508,2184,3525,1963,2348,2343,2257,2569,2554,2466,2313,2321,2169,1744,1607,1777,1708,1433,1547,1435,1390,1566,1572,1618
-2019F,AL,KSCCP,294,186,108,161,199,306,493,224,291,443,426,282,192,447,248,242,212,285,355,246,176,57,331,94,14,16,29,49,13,14,11,15,17,13,11,10,9,9,21,6,9,26,16,24,25,18,10,5,2,1,2,2,1,2,3,2,2,1,2,2
-2019F,AL,KSICP,589,204,155,224,442,434,1077,617,644,890,648,526,384,486,311,297,241,382,488,754,879,284,865,312,31,19,37,28,21,17,15,21,35,23,32,45,48,61,40,34,22,11,5,30,36,47,39,22,10,17,15,8,4,4,4,5,4,2,3,2
-2019F,AL,KSRCP,163,103,60,89,110,169,273,124,161,245,236,156,106,247,137,134,117,158,196,136,198,185,534,601,80,73,64,60,129,81,38,61,30,43,29,66,64,57,40,44,46,39,22,49,67,75,50,32,8,11,15,12,3,3,4,3,2,1,2,2
-2019F,AL,KSTCP,1046,493,323,474,750,908,1843,965,1096,1578,1310,963,682,1180,697,673,570,824,1040,1136,1253,526,1730,1008,125,108,130,137,163,113,64,96,83,80,72,121,121,127,101,83,78,75,43,104,128,140,99,58,21,29,32,22,7,9,11,10,8,3,8,7
-2019F,AL,KSTXP,1046,493,323,474,750,908,1843,965,1096,1578,1310,963,682,1180,697,673,570,824,1040,1136,1253,526,1730,1008,125,108,130,137,163,113,64,96,83,80,72,121,121,127,101,83,78,75,43,104,128,140,99,58,21,29,32,22,7,9,11,10,8,3,8,7
-2019F,AL,LUACP,396,385,377,377,396,430,447,362,397,414,421,437,468,477,457,609,677,486,521,546,486,466,425,445,474,442,432,489,471,483,497,445,454,462,483,475,461,487,509,515,507,465,459,424,430,428,417,430,399,359,490,474,432,451,465,519,526,474,427,421
-2019F,AL,LUICP,265,258,280,280,294,311,323,311,341,384,391,394,422,534,512,440,488,506,544,569,506,486,443,464,495,461,451,509,491,504,519,464,473,482,503,495,480,507,531,537,529,484,479,442,448,446,434,449,416,374,318,312,301,315,308,320,310,276,270,263
-2019F,AL,LUTCP,661,643,657,657,690,741,770,672,739,797,812,831,889,1012,969,1049,1165,992,1065,1114,992,952,868,909,969,903,883,998,963,987,1016,909,927,944,986,969,941,994,1040,1051,1036,949,938,867,878,874,851,879,816,734,808,786,733,765,773,839,836,750,697,684
-2019F,AL,LUTXP,661,643,657,657,690,741,770,672,739,797,812,831,889,1012,969,1049,1165,992,1065,1114,992,952,868,909,969,903,883,998,963,987,1016,909,927,944,986,969,941,994,1040,1051,1036,949,938,867,878,874,851,879,816,734,808,786,733,765,773,839,836,750,697,684
-2019F,AL,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-427,-439,-146,-101,-298,-507,-294,-108,101,78,-46,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,MGACP,23869,24465,25508,26445,27072,28220,29915,30984,32755,34155,36408,38457,40774,43062,43530,44523,46899,48547,50112,47364,43934,42596,42608,43059,43606,42718,45763,47835,48120,48768,48498,48959,50031,51332,52551,54756,54279,54934,56856,57185,56678,56673,60496,58031,60796,61615,62125,63133,61459,61576,62563,60703,60122,60669,60640,62002,63600,62909,62509,64638
-2019F,AL,MGCCP,327,329,331,163,311,327,336,347,367,376,391,410,416,437,446,453,465,497,502,493,258,268,268,253,229,251,253,260,243,223,258,160,138,41,41,42,42,41,41,41,41,43,43,43,44,44,45,45,45,45,44,44,44,46,44,1027,1312,1052,1112,1121
-2019F,AL,MGICP,382,389,374,369,367,372,325,238,238,236,204,199,194,195,140,198,98,135,101,58,104,164,70,68,353,507,432,439,384,497,443,408,435,583,634,674,678,719,519,443,443,1002,1068,1133,1278,1207,1295,1122,1014,994,658,637,487,508,520,844,855,861,885,876
-2019F,AL,MGTCP,24578,25183,26214,26978,27750,28919,30576,31568,33359,34766,37003,39066,41384,43694,44115,45174,47463,49179,50715,47914,44296,43028,42946,43379,44188,43476,46448,48533,48748,49488,49199,49527,50605,51956,53226,55472,54999,55694,57416,57669,57162,57718,61607,59207,62118,62866,63465,64300,62517,62614,63265,61385,60653,61223,61205,63872,65767,64822,64505,66635
-2019F,AL,MGTXP,24578,25183,26214,26978,27750,28919,30576,31568,33359,34766,37003,39066,41384,43694,44115,45174,47463,49179,50715,47914,44296,43028,42946,43379,44188,43476,46448,48533,48748,49488,49199,49527,50605,51956,53226,55472,54999,55694,57416,57669,57162,57718,61607,59207,62118,62866,63465,64300,62517,62614,63265,61385,60653,61223,61205,63872,65767,64822,64505,66635
-2019F,AL,MSICP,176,196,215,114,114,111,119,111,124,116,103,76,78,96,123,166,241,272,237,219,208,671,588,527,453,456,437,439,532,490,441,381,250,237,264,243,77,85,103,97,104,606,651,611,550,547,964,946,1006,1076,1124,1167,1145,250,267,276,280,511,509,463
-2019F,AL,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,NGACP,7600,7586,8462,10478,11398,11998,13044,15221,17383,20398,19869,20616,19066,19795,19327,16833,8194,10190,10839,13037,16457,18187,15833,13167,13149,11078,9827,11767,12115,13534,14639,16482,18645,15576,14922,20090,19173,20745,19998,22170,22694,20054,21839,19012,16018,15135,14991,15778,16497,18929,22229,23283,25542,22356,19166,21808,21406,21313,25476,23176
-2019F,AL,NGCCP,17486,26617,29099,33123,34343,31963,31628,30401,34749,37275,36254,36657,37389,33126,35349,33439,34450,34303,29649,36717,28525,26860,25876,26665,27567,25836,25128,22384,25562,26469,24287,23711,25232,25723,25526,26228,29000,32360,25705,27581,25580,26391,25011,25356,26456,25046,24396,23420,25217,24293,27071,25144,21551,25324,27534,25162,23552,22915,26636,24875
-2019F,AL,NGEIP,9378,8197,6233,5522,4164,5561,6989,7741,11465,14757,15444,9987,2748,4305,4958,5994,3935,3732,7015,6934,1382,1780,1339,554,356,1078,1054,1474,2574,2886,5496,5139,4838,6134,5561,8810,7563,11835,27660,25326,42215,68868,112403,86129,117056,104786,145528,175736,164266,227015,281722,342841,401306,333897,346065,397498,412913,380038,430906,418932
-2019F,AL,NGICP,108957,104065,108467,109025,120842,131551,133719,155270,171907,173658,171151,163846,165867,159157,160010,155508,122531,136509,132798,174212,170542,174256,150959,132930,140400,137757,122240,123055,147191,155199,155509,163452,181917,195057,194847,218334,214733,210728,209233,219551,215691,168138,173607,173275,178978,166133,168046,168098,160383,148158,161542,170664,190734,198771,203552,203930,208603,210763,232444,230154
-2019F,AL,NGRCP,40836,38591,42183,47644,51351,48085,47684,45543,51708,54804,55779,54867,53397,55685,55117,52314,56869,56503,56957,52535,52334,50197,46950,48267,50526,43706,44674,49077,48913,48118,45411,46149,49644,51366,49748,49570,56522,48496,46544,42647,47441,49242,46482,46572,43859,42057,38132,35481,37793,36061,42215,36582,27580,35059,39006,32750,28407,26338,34726,30616
-2019F,AL,NGTCP,184257,185056,194444,205792,222098,229158,233064,254176,287212,300892,298497,285973,278467,272068,274761,264088,225979,241237,237258,283435,269240,271280,240957,221582,231998,219455,202923,207757,236355,246207,245342,254933,280275,293856,290604,323032,326992,324163,329139,337276,353620,332693,379343,350345,382368,353156,391093,418512,404156,454456,534779,598514,666713,615407,635323,681148,694881,661367,750188,727753
-2019F,AL,NGTPP,56.3,55.8,58.5,61.3,65.4,66.6,67.3,73.5,83.3,87.5,86.5,81.8,78.7,76,75.8,71.8,60.5,63.8,61.9,73.3,69,69.2,61.4,56.3,58.7,55.2,50.8,51.7,58.7,61.1,60.6,62.2,67.5,69.7,68.2,75.2,75.5,74.2,74.7,76.1,79.4,74.5,84.7,77.8,84.4,77.3,84.5,89.6,85.7,95.5,111.7,124.7,138.4,127.4,131.2,140.3,142.8,135.6,153.4,148.3
-2019F,AL,NGTXP,174879,176859,188211,200270,217934,223597,226075,246435,275747,286135,283053,275986,275719,267763,269803,258094,222044,237505,230243,276501,267858,269500,239618,221029,231642,218377,201869,206283,233781,243321,239845,249794,275437,287722,285043,314222,319428,312328,301479,311950,311406,263825,266940,264216,265312,248370,245565,242777,239890,227441,253057,255673,265407,281510,289258,283650,281968,281329,319282,308821
-2019F,AL,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,314,6289,2722,4214,19522,22830,22090,23497,23643,27701,25145,24211,14313,11561,11248,12981,11524,12052,15875,19397,17823,20480,20752,29708,29573,28663,30892,31369,30357,31857,31677,31636,31694,31911,34325,38993,39716,37941,39356,40841,40816,41244,41951,39902,42652,39463,43657
-2019F,AL,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,314,6289,2722,4214,19522,22830,22090,23497,23643,27701,25145,24211,14313,11561,11248,12981,11524,12052,15875,19397,17823,20480,20752,29708,29573,28663,30892,31369,30357,31857,31677,31636,31694,31911,34325,38993,39716,37941,39356,40841,40816,41244,41951,39902,42652,39463,43657
-2019F,AL,OPICP,426,438,471,393,462,480,477,606,576,587,633,640,722,746,838,1420,1645,1911,2008,2131,2143,1810,1960,1468,1795,1567,1754,2436,2493,2452,2063,2093,1920,1939,2069,1938,2168,2220,1935,2017,1765,2632,2878,2937,2479,2947,3240,3277,3154,2947,3062,3121,3108,2416,2303,2457,2487,2970,2901,2871
-2019F,AL,OPTCP,426,438,471,393,462,480,477,606,576,587,633,640,722,746,838,1420,1645,1911,2008,2131,2143,1810,1960,1468,1795,1567,1754,2436,2493,2452,2063,2093,1920,1939,2069,1938,2168,2220,1935,2017,1765,2632,2878,2937,2479,2947,3240,3277,3154,2947,3062,3121,3108,2416,2303,2457,2487,2970,2901,2871
-2019F,AL,OPTXP,426,438,471,393,462,480,477,606,576,587,633,640,722,746,838,1420,1645,1911,2008,2131,2143,1810,1960,1468,1795,1567,1754,2436,2493,2452,2063,2093,1920,1939,2069,1938,2168,2220,1935,2017,1765,2632,2878,2937,2479,2947,3240,3277,3154,2947,3062,3121,3108,2416,2303,2457,2487,2970,2901,2871
-2019F,AL,P1ICP,3765,4341,4660,5024,5023,5317,5949,5799,5475,6667,6026,6479,6924,7096,6510,6805,7093,8338,8723,8088,7619,8356,8457,6801,7220,7185,6285,8431,8039,7457,6919,7863,7372,7427,7663,7472,8400,8255,6961,7185,7445,7462,7901,8053,9687,10447,10178,9031,8875,6004,6052,6180,6083,5292,5098,5194,5268,5493,5128,5016
-2019F,AL,P1TCP,4898,5308,5525,6024,6059,6667,7560,6890,6749,8174,7907,8316,8766,9283,9020,8039,8332,9510,10036,9251,8728,9290,9920,8118,7960,7887,7015,9171,8809,8169,7581,8493,7980,8050,8296,8119,9027,8911,7614,7850,8090,8073,8452,8626,10287,11044,10772,9614,9345,6421,6634,6738,6585,5798,5626,5781,5860,6031,5627,5513
-2019F,AL,P1TXP,4898,5308,5525,6024,6059,6667,7560,6890,6749,8174,7458,7708,8047,8598,7660,8039,8332,9510,10036,9251,8728,9290,9920,8118,7960,7887,7015,9171,8809,8169,7581,8493,7980,8050,8296,8119,9027,8911,7614,7850,8090,8073,8452,8626,10287,11044,10772,9614,9345,6421,6634,6738,6585,5798,5626,5781,5860,6031,5627,5513
-2019F,AL,PAACP,30562,30442,31783,33191,33294,34993,36083,37362,41734,43600,46107,48411,52279,56889,60767,63300,66768,70365,72138,62790,61318,59651,58466,57534,59959,59548,62453,66362,66845,70862,70082,71245,72702,73480,76997,80288,78543,77560,79451,80100,82986,79004,83661,81550,88450,88049,89293,90365,84991,83397,86021,85560,84082,83767,84198,86590,91057,89970,87457,90074
-2019F,AL,PACCP,1571,1386,1384,1336,1669,1679,2042,1795,2261,2669,2685,2669,2904,3095,2667,2519,3027,3143,2846,2174,1922,2195,1743,2213,1669,2373,2337,2334,2581,2593,2489,1911,1653,1753,1904,1626,1560,1568,1474,2138,2403,2200,1942,2079,2087,1344,2258,1944,1851,1595,1839,1945,1701,1365,1291,2218,2606,2424,2544,2476
-2019F,AL,PAEIP,0,0,0,0,0,0,0,0,0,5,474,703,1217,1481,1994,613,773,1027,1164,138,131,96,64,128,72,88,67,58,174,216,133,163,141,130,220,181,300,230,473,296,469,541,359,460,240,272,177,148,215,177,215,187,141,109,177,126,63,56,138,29
-2019F,AL,PAICP,9380,9140,9242,9949,10429,9615,9961,9808,9818,12545,12370,12250,14590,17407,18076,19138,22542,25481,25202,22576,16724,16802,17602,13604,12694,11415,11370,13448,12994,13065,13287,13436,13520,14157,15494,14716,16199,14642,12006,13473,13712,14953,15410,17515,19216,19682,18767,17326,17149,12022,11800,12497,13148,10627,9888,10819,11470,11116,10838,10484
-2019F,AL,PARCP,1986,2048,2081,2288,2537,2465,2963,2945,3895,4581,4456,4674,5080,4798,3850,3539,4039,4320,3594,2247,2413,2484,2539,2966,1829,1872,2125,2489,2515,2688,2342,2041,1921,2489,2421,2500,2559,2656,2250,4022,4247,3454,2926,2235,2441,1704,1723,1823,1988,2139,2350,1553,1116,1238,1308,1429,1330,1254,1509,1577
-2019F,AL,PATCP,43498,43016,44490,46764,47928,48752,51050,51910,57707,63400,66093,68706,76070,83670,87355,89108,97149,104337,104944,89925,82507,81229,80414,76444,76223,75297,78351,84691,85108,89424,88333,88795,89937,92009,97036,99312,99161,96656,95655,100029,103818,100151,104297,103839,112435,111052,112219,111606,106195,99331,102225,101742,100189,97106,96861,101181,106526,104820,102486,104640
-2019F,AL,PATPP,13.3,13,13.4,13.9,14.1,14.2,14.7,15,16.7,18.4,19.2,19.6,21.5,23.4,24.1,24.2,26,27.6,27.4,23.3,21.2,20.7,20.5,19.4,19.3,19,19.6,21.1,21.2,22.2,21.8,21.7,21.7,21.8,22.8,23.1,22.9,22.1,21.7,22.6,23.3,22.4,23.3,23.1,24.8,24.3,24.2,23.9,22.5,20.9,21.4,21.2,20.8,20.1,20,20.8,21.9,21.5,21,21.3
-2019F,AL,PATXP,43498,43016,44490,46764,47928,48752,51050,51910,57707,63395,65619,68003,74853,82190,85361,88495,96376,103310,103780,89786,82377,81133,80350,76316,76151,75209,78284,84633,84934,89208,88200,88632,89796,91879,96816,99131,98861,96426,95182,99733,103349,99611,103938,103379,112195,110780,112042,111458,105979,99154,102010,101555,100048,96998,96684,101056,106463,104764,102348,104611
-2019F,AL,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,PCEIP,0,0,0,0,0,0,0,0,0,0,448,608,720,685,1361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,PCICP,326,1292,1480,1655,1275,1342,1444,1519,1331,1585,1178,1826,2047,1691,1743,1942,1757,2340,1965,1484,959,2029,1605,838,1273,1380,558,892,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,PCTCP,326,1292,1480,1655,1275,1342,1444,1519,1331,1585,1626,2434,2767,2376,3104,1942,1757,2340,1965,1484,959,2029,1605,838,1273,1380,558,892,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,PCTXP,326,1292,1480,1655,1275,1342,1444,1519,1331,1585,1178,1826,2047,1691,1743,1942,1757,2340,1965,1484,959,2029,1605,838,1273,1380,558,892,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58,61,58,52,42,45,50,3,11,23
-2019F,AL,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,655,689,534,582,568,438,447,530,560,550
-2019F,AL,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,527,500,575,518,474,450,429,465,413,517
-2019F,AL,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2214,1530,1096,1220,1287,1405,1312,1239,1495,1571
-2019F,AL,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3455,2779,2262,2372,2370,2338,2238,2237,2478,2661
-2019F,AL,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3455,2779,2262,2372,2370,2338,2238,2237,2478,2661
-2019F,AL,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AL,RFACP,2278,1714,1343,1479,1039,1608,1043,1761,1808,1741,1679,1461,1465,2520,5451,7039,7245,8135,7540,3514,3506,2186,2313,2041,1754,1640,1351,1489,2036,2799,2865,3206,3497,3241,2317,2603,2448,1942,826,868,2891,721,2118,1010,1268,1022,1492,1346,1128,806,928,1059,1048,800,880,538,945,1019,688,565
-2019F,AL,RFCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,3,0,160,23,15,514,558,383,707,497,606,242,0,0,1,3,1,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,11,0
-2019F,AL,RFEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,142,188,89,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,RFICP,2014,1906,1408,1726,1228,945,673,1174,993,1724,1611,1194,1673,3586,4874,5814,6856,7975,7312,6701,3787,2454,3647,1404,938,96,556,564,699,342,444,85,367,765,1063,504,705,600,613,594,1338,796,1871,274,431,747,766,814,1034,320,711,1065,775,305,349,550,955,739,448,572
-2019F,AL,RFTCP,4292,3620,2751,3205,2268,2553,1716,2934,2801,3465,3290,2655,3138,6107,10325,12953,14244,16299,14942,10246,7296,4640,6120,3468,2708,2249,2464,2436,3443,3638,3915,3533,3864,4006,3381,3110,3154,2542,1440,1461,4229,1517,3989,1284,1699,1778,2258,2161,2162,1126,1640,2124,1823,1105,1229,1088,1899,1758,1148,1137
-2019F,AL,RFTXP,4292,3620,2751,3205,2268,2553,1716,2934,2801,3465,3290,2655,3138,6107,10325,12854,14102,16112,14853,10216,7296,4640,6120,3468,2708,2249,2464,2436,3443,3638,3915,3533,3864,4006,3381,3110,3154,2542,1440,1461,4229,1517,3989,1284,1699,1778,2258,2161,2162,1126,1640,2124,1823,1105,1229,1088,1899,1758,1148,1137
-2019F,AL,SGICP,243,235,250,258,258,270,263,404,361,374,419,381,451,461,517,1028,1089,1311,1392,1569,1579,1768,2201,1017,1527,1555,2194,2820,2355,2313,1863,2226,1705,1961,1925,1895,1974,2018,1939,1909,1923,1708,1920,1989,1720,2056,1806,1841,1785,1728,1739,1743,1780,1736,1701,1808,1821,1921,1942,1816
-2019F,AL,SNICP,0,0,0,0,69,75,76,63,68,74,79,145,155,156,155,133,153,159,191,194,186,179,167,196,262,201,197,220,173,163,162,175,208,208,161,141,162,157,232,315,211,295,385,303,192,235,309,344,374,204,115,100,65,359,380,356,335,403,370,384
-2019F,AL,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,3,5,5,7,10
-2019F,AL,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,181,357,385
-2019F,AL,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
-2019F,AL,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,3,3
-2019F,AL,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,3,3,39,189,368,399
-2019F,AL,TPOPP,3274,3316,3323,3358,3395,3443,3464,3458,3446,3440,3451,3497,3539,3580,3626,3679,3735,3780,3832,3866,3900,3919,3925,3934,3952,3973,3992,4015,4024,4030,4050,4099,4154,4214,4260,4297,4331,4368,4405,4430,4452,4468,4480,4503,4531,4570,4629,4673,4718,4758,4786,4800,4817,4832,4844,4855,4867,4878,4892,4908
-2019F,AL,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-453,-652,-176,-436,-450,-568,-748,-457,-614,-481,-724,-431,-559,-385,-442,-160,-148,-436,-394,-549,-90,-184,-67,-87,4,84,81,-67,-95,34,68,74,19,-93,-22,11,100,40,174
-2019F,AL,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,WXICP,7,7,6,6,6,6,0,0,0,0,0,0,0,0,0,0,58,48,50,49,48,0,0,0,0,0,0,0,0,0,0,81,86,92,93,93,104,93,90,80,70,105,93,90,89,91,76,64,56,35,50,44,44,53,47,39,41,35,43,36
-2019F,AL,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AL,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,1,0,3,0,0,-1,0,0,0,0,0,5,4,6,7,3,5,3,5,6,6,9,8,1,2,0,-1,0,0,0,0,0,0,0,0,-1,-1
-2019F,AR,ARICP,1003,1036,1139,1133,1181,1295,1689,1785,2015,2031,2104,2381,2410,2600,2441,2276,2452,2502,2655,3208,2770,2110,1915,1832,757,1263,982,1018,1373,778,495,533,1174,1453,1066,1246,975,1012,859,1023,1017,888,2608,1810,884,475,1334,1234,349,1203,1654,2184,1619,1551,1884,1163,2163,2245,1876,1994
-2019F,AR,ARTCP,1003,1036,1139,1133,1181,1295,1689,1785,2015,2031,2104,2381,2410,2600,2441,2276,2452,2502,2655,3208,2770,2110,1915,1832,757,1263,982,1018,1373,778,495,533,1174,1453,1066,1246,975,1012,859,1023,1017,888,2608,1810,884,475,1334,1234,349,1203,1654,2184,1619,1551,1884,1163,2163,2245,1876,1994
-2019F,AR,ARTXP,1003,1036,1139,1133,1181,1295,1689,1785,2015,2031,2104,2381,2410,2600,2441,2276,2452,2502,2655,3208,2770,2110,1915,1832,757,1263,982,1018,1373,778,495,533,1174,1453,1066,1246,975,1012,859,1023,1017,888,2608,1810,884,475,1334,1234,349,1203,1654,2184,1619,1551,1884,1163,2163,2245,1876,1994
-2019F,AR,AVACP,177,165,347,400,435,482,440,373,338,323,293,287,314,293,295,254,244,259,272,252,275,249,193,200,113,86,111,92,100,103,125,144,152,134,157,143,121,135,122,118,93,183,118,103,127,67,111,110,87,110,86,81,82,70,39,48,48,48,47,48
-2019F,AR,AVTCP,177,165,347,400,435,482,440,373,338,323,293,287,314,293,295,254,244,259,272,252,275,249,193,200,113,86,111,92,100,103,125,144,152,134,157,143,121,135,122,118,93,183,118,103,127,67,111,110,87,110,86,81,82,70,39,48,48,48,47,48
-2019F,AR,AVTXP,177,165,347,400,435,482,440,373,338,323,293,287,314,293,295,254,244,259,272,252,275,249,193,200,113,86,111,92,100,103,125,144,152,134,157,143,121,135,122,118,93,183,118,103,127,67,111,110,87,110,86,81,82,70,39,48,48,48,47,48
-2019F,AR,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,5,10,35,101,137,117,124,100,342,383,719,534,596,879,750,841,746
-2019F,AR,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,5,10,35,101,137,117,124,100,342,383,719,534,596,879,750,841,746
-2019F,AR,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,CLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,CLCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,5,0,2,0,3,1,0,0,0,3,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,CLEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,1451,1774,5555,6902,9628,9036,12302,12505,11764,12295,11278,11836,11978,12241,11116,12250,13216,14467,13772,14276,14974,14866,15110,14165,14310,15318,14031,14614,15629,15678,14994,16537,17465,17023,18766,19281,12815,14066,15193,17452,13763
-2019F,AR,CLICP,14,11,6,5,7,6,4,4,5,0,0,2,2,97,115,40,167,245,310,345,296,358,350,436,396,379,344,302,260,267,256,283,295,330,346,325,348,296,287,324,382,437,422,417,415,368,365,397,388,298,288,233,217,215,227,197,200,198,175,172
-2019F,AR,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,CLOCP,14,11,6,5,7,6,4,4,5,0,0,2,2,97,115,40,167,245,310,345,296,358,350,436,396,379,344,302,260,267,256,283,295,330,346,325,348,296,287,324,382,437,422,417,415,368,365,397,388,298,288,233,217,215,227,197,200,198,175,172
-2019F,AR,CLRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,CLTCP,14,11,6,5,7,6,4,4,5,0,0,2,2,97,115,40,167,248,1273,1796,2076,5914,7254,10065,9435,12682,12849,12066,12555,11547,12092,12261,12538,11447,12596,13540,14816,14068,14563,15299,15249,15547,14587,14726,15733,14399,14979,16028,16067,15292,16825,17699,17240,18980,19508,13012,14267,15391,17627,13935
-2019F,AR,CLTXP,14,11,6,5,7,6,4,4,5,0,0,2,2,97,115,40,167,248,313,345,302,358,352,436,400,380,344,302,260,270,256,283,297,331,347,325,348,296,287,325,382,437,422,417,415,368,365,399,388,298,288,233,217,215,227,197,200,198,175,172
-2019F,AR,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,DFACP,926,2023,1190,1731,1980,1703,2020,1898,2683,2957,3383,3473,4813,6423,6703,6410,6609,6837,7026,7421,6699,8262,8390,6578,7090,7690,7649,8488,8837,9952,9722,9951,9937,10738,12282,12569,13066,13582,14345,13824,14346,15633,16811,16563,17189,16739,16529,16825,16433,16330,16942,17169,15633,15793,15448,15410,15541,16134,16970,16550
-2019F,AR,DFCCP,14,26,23,14,28,24,18,20,25,34,40,39,87,92,122,92,109,131,127,237,112,176,139,1516,1200,829,138,225,162,311,298,258,285,356,382,301,291,270,358,260,376,593,446,744,515,714,93,90,102,975,660,621,380,365,570,594,534,553,591,695
-2019F,AR,DFEIP,1,1,1,2,1,0,1,1,2,4,8,28,35,16,26,62,49,162,271,86,180,33,31,47,15,12,13,10,130,143,140,127,95,126,122,94,97,100,179,167,67,82,69,71,62,72,48,63,44,64,55,81,53,65,45,98,72,83,56,78
-2019F,AR,DFICP,1055,971,1173,767,1279,1057,1105,1255,1318,1571,1962,1885,2869,3199,3247,2841,3190,4431,4640,6399,3544,4612,4538,4993,3952,4273,3896,2918,3155,2563,2424,2016,3309,3174,3155,4041,3393,3997,3816,3528,4026,4589,4347,5330,5583,6890,6952,7091,9047,4419,5782,5347,5120,5605,5157,3881,3530,2844,3523,3466
-2019F,AR,DFRCP,24,46,41,24,48,43,31,36,44,59,70,69,153,161,214,161,191,231,224,416,152,20,14,1,1,1,1,1,1,1,0,1,9,1,1,2,1,1,1,1,1,1,9,4,6,1,3,3,2,4,9,10,4,4,5,8,13,8,7,1
-2019F,AR,DFTCP,2021,3067,2429,2538,3336,2828,3174,3209,4072,4624,5462,5494,7957,9892,10310,9566,10147,11793,12289,14558,10686,13103,13111,13134,12257,12804,11696,11642,12284,12969,12585,12352,13635,14394,15943,17007,16848,17950,18699,17781,18815,20897,21682,22712,23356,24418,23624,24072,25627,21791,23449,23228,21190,21832,21225,19991,19691,19622,21147,20789
-2019F,AR,DFTXP,2019,3066,2428,2536,3336,2828,3174,3208,4071,4620,5455,5466,7923,9875,10284,9504,10097,11630,12018,14473,10506,13070,13081,13087,12243,12792,11683,11632,12154,12826,12444,12225,13540,14268,15821,16913,16751,17850,18520,17614,18748,20816,21613,22641,23294,24346,23576,24009,25583,21727,23394,23147,21137,21768,21180,19893,19619,19539,21091,20711
-2019F,AR,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-8441,-8795,-7728,-4823,-5446,-2943,-5440,-3882,-1750,-1815,2777,-1004,-155,-2402,-2896,3660,-277,-1818,-3387,-9231,-7467,-8156,-12827,-8403,-9525,-4955,-9948,-10481,-14165,-12325
-2019F,AR,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,20,29,63,18,0,0,0,0,144,91,64,45,8,9,1,0,0,0,0,0,0,0,0,27,25,80,649,1691,3608,3396,3303,3336,3478,3495,3615,3620,3339,3329
-2019F,AR,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,17,7,8,6,8,64,56,56,53,52
-2019F,AR,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,13,34,80,79,70,78,67,75,79,79,76,72
-2019F,AR,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,20,29,65,19,0,0,0,0,146,92,65,45,8,9,1,0,0,0,0,0,0,0,0,28,26,83,664,1732,3705,3483,3381,3420,3554,3634,3750,3756,3468,3452
-2019F,AR,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,ESCCP,1161,1197,1345,1484,1651,1834,1984,2125,2352,2577,2789,2982,3215,3460,3438,4382,4491,4839,5058,5001,5326,4814,5034,5099,5592,5848,5915,6131,6396,6566,6681,6922,6760,7292,7451,7771,8063,8236,8910,9064,9472,9894,10035,10568,10731,11366,11581,11801,11703,11477,12188,12146,12102,11898,11988,12153,12178,11913,12278,11949
-2019F,AR,ESICP,3161,2923,3345,3716,4313,4883,5259,5621,5975,6254,6333,6546,6949,7269,7397,5994,8338,9341,9614,10854,10946,10055,8627,9301,10235,9049,7763,8358,8931,9562,10126,10518,11251,12609,13526,14483,15139,15632,16066,16680,17268,16734,16887,16942,17322,17665,17990,17839,17038,14710,16775,16994,16848,16565,16651,16038,16226,17146,18065,17412
-2019F,AR,ESRCP,1339,1375,1621,1828,2092,2333,2571,2773,3251,3793,4321,4737,5483,6142,6082,7751,7746,8816,9322,8862,10227,8426,8617,8798,8764,8936,9254,9708,9946,9957,10558,11001,10440,11762,11642,12417,12934,12990,14339,14045,14871,15104,15527,15598,15619,17134,17065,17415,17392,16986,19231,18787,17909,18219,18441,18273,17784,17027,19259,18732
-2019F,AR,ESRPP,749,762,875,975,1103,1232,1354,1458,1709,1983,2237,2402,2716,2982,2894,3589,3569,3991,4156,3902,4468,3674,3756,3815,3778,3840,3968,4144,4245,4244,4480,4616,4321,4788,4668,4897,5029,4994,5460,5296,5552,5612,5738,5725,5680,6161,6048,6113,6050,5863,6581,6388,6065,6154,6212,6133,5944,5668,6394,6201
-2019F,AR,ESTCP,5662,5496,6312,7028,8055,9051,9815,10518,11578,12624,13444,14265,15647,16871,16917,18128,20576,22997,23994,24717,26499,23295,22277,23198,24591,23833,22932,24196,25273,26085,27365,28440,28451,31663,32619,34671,36137,36858,39315,39789,41611,41732,42450,43108,43672,46165,46636,47055,46135,43173,48194,47928,46860,46683,47080,46465,46188,46086,49603,48093
-2019F,AR,ESTPP,3165,3043,3406,3748,4246,4779,5168,5533,6087,6599,6958,7233,7751,8193,8051,8394,9481,10410,10697,10882,11578,10158,9710,10061,10601,10242,9834,10330,10788,11117,11612,11934,11776,12890,13079,13675,14049,14170,14970,15004,15535,15505,15688,15821,15883,16600,16527,16518,16049,14904,16494,16296,15869,15769,15859,15594,15438,15342,16467,15920
-2019F,AR,ESTXP,5662,5496,6312,7028,8055,9051,9815,10518,11578,12624,13444,14265,15647,16871,16917,18128,20576,22997,23994,24717,26499,23295,22277,23198,24591,23833,22932,24196,25273,26085,27365,28440,28451,31663,32619,34671,36137,36858,39315,39789,41611,41732,42450,43108,43672,46165,46636,47055,46135,43173,48194,47928,46860,46683,47080,46465,46188,46086,49603,48093
-2019F,AR,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,FSICP,0,0,0,65,64,75,83,78,77,76,91,96,51,50,58,62,65,67,74,47,55,23,26,33,43,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,HLACP,309,372,383,402,540,434,454,455,547,667,692,834,928,765,673,679,790,780,744,49,205,217,326,387,190,147,92,75,74,71,83,78,62,68,125,51,45,42,33,457,93,89,54,51,51,83,81,59,154,77,31,30,18,20,14,15,13,3,2,3
-2019F,AR,HLCCP,620,662,691,663,781,748,944,1013,1157,1409,1434,1523,1655,1483,1307,1129,1195,1156,810,613,469,381,362,430,396,456,503,420,411,447,405,366,328,374,365,328,326,345,256,662,588,618,462,369,667,287,279,204,432,300,291,307,304,290,379,324,225,212,306,284
-2019F,AR,HLICP,1183,1224,1179,1162,1617,1141,1034,906,1295,1837,1798,1755,2202,2050,2204,2715,2504,2042,1661,1697,2122,1500,1810,1405,851,1076,1006,1171,1269,1313,1202,1262,1188,1400,1290,1416,1317,1171,915,1955,3269,2741,1507,1109,1143,875,966,1069,846,786,780,792,723,694,915,750,682,648,816,955
-2019F,AR,HLRCP,2711,2898,3024,2902,3418,3275,4133,4433,5064,6168,6275,6665,7244,6491,5721,4943,5228,5057,3544,2681,2051,1665,1583,1883,1734,1995,2202,1837,1798,1956,1772,1603,1435,1635,1598,1434,1427,1510,1119,2899,2572,2704,2023,1682,1609,1461,1441,1416,1797,1770,1575,1318,994,1326,1292,1093,832,768,1039,1066
-2019F,AR,HLTCP,4823,5155,5276,5130,6355,5599,6565,6807,8064,10081,10198,10777,12029,10790,9905,9466,9716,9035,6759,5040,4847,3763,4082,4106,3172,3673,3803,3503,3552,3786,3463,3309,3012,3478,3378,3229,3116,3068,2322,5973,6522,6152,4047,3211,3470,2705,2767,2749,3229,2932,2676,2447,2040,2329,2601,2182,1753,1631,2163,2308
-2019F,AR,HLTXP,4823,5155,5276,5130,6355,5599,6565,6807,8064,10081,10198,10777,12029,10790,9905,9466,9716,9035,6759,5040,4847,3763,4082,4106,3172,3673,3803,3503,3552,3786,3463,3309,3012,3478,3378,3229,3116,3068,2322,5973,6522,6152,4047,3211,3470,2705,2767,2749,3229,2932,2676,2447,2040,2329,2601,2182,1753,1631,2163,2308
-2019F,AR,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,HYEGP,992,1395,1061,493,561,1080,1587,1228,3005,2883,2160,1804,1644,4252,4271,3433,2022,1791,2421,3375,1695,1235,2106,3315,2723,4434,2813,2407,2785,3084,3655,3547,3377,4509,3463,3218,2797,3516,3117,2694,2370,2548,3436,2655,3643,3083,1551,3237,4660,4193,3659,2958,2198,2655,2640,3569,3570,2943,3009,4135
-2019F,AR,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,HYTCP,992,1395,1061,493,561,1080,1587,1228,3005,2883,2160,1804,1644,4252,4271,3433,2022,1791,2421,3375,1695,1235,2106,3315,2723,4434,2813,2407,2785,3084,3655,3547,3377,4509,3463,3218,2797,3516,3117,2694,2370,2548,3436,2655,3643,3083,1551,3237,4660,4193,3659,2958,2198,2655,2640,3569,3570,2943,3009,4135
-2019F,AR,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,JFACP,2237,2227,2397,2458,2568,2094,2241,2500,2870,2561,2204,2292,2181,2012,2031,1995,1906,2029,1920,1921,2035,1747,2011,1604,2016,2030,1919,2063,2221,1938,1693,1792,1134,1031,1634,1179,1534,1539,1528,4575,4868,1036,794,822,722,1251,1183,1226,1085,800,926,909,914,917,939,975,990,1119,922,976
-2019F,AR,JFTCP,2237,2227,2397,2458,2568,2094,2241,2500,2870,2561,2204,2292,2181,2012,2031,1995,1906,2029,1920,1921,2035,1747,2011,1604,2016,2030,1919,2063,2221,1938,1693,1792,1134,1031,1634,1179,1534,1539,1528,4575,4868,1036,794,822,722,1251,1183,1226,1085,800,926,909,914,917,939,975,990,1119,922,976
-2019F,AR,JFTXP,2237,2227,2397,2458,2568,2094,2241,2500,2870,2561,2204,2292,2181,2012,2031,1995,1906,2029,1920,1921,2035,1747,2011,1604,2016,2030,1919,2063,2221,1938,1693,1792,1134,1031,1634,1179,1534,1539,1528,4575,4868,1036,794,822,722,1251,1183,1226,1085,800,926,909,914,917,939,975,990,1119,922,976
-2019F,AR,KSCCP,38,18,11,23,34,39,70,29,50,87,90,68,49,146,100,79,74,110,142,45,132,57,76,1719,198,84,7,5,10,2,1,2,5,5,4,5,5,5,7,4,4,9,4,3,17,20,12,9,9,0,1,0,0,0,0,1,1,1,2,3
-2019F,AR,KSICP,465,136,96,147,310,283,597,404,284,544,584,426,405,682,490,480,438,645,796,370,439,256,382,271,25,41,20,18,16,16,17,20,9,13,17,20,9,10,17,13,4,19,5,2,1,3,1,1,1,1,1,1,0,0,0,1,4,2,3,1
-2019F,AR,KSRCP,62,29,18,37,55,63,114,47,81,142,147,110,80,237,162,128,120,178,231,73,0,42,51,883,82,31,25,21,25,29,20,14,7,10,6,14,12,19,15,36,25,24,20,16,11,14,9,6,2,5,6,2,1,1,3,2,1,0,1,1
-2019F,AR,KSTCP,565,184,125,207,399,386,782,480,415,773,821,604,534,1065,751,688,631,933,1169,488,571,355,509,2873,304,156,52,44,51,47,38,36,22,28,28,39,26,34,39,53,33,52,29,21,28,37,22,16,12,6,8,3,1,1,3,3,6,3,6,5
-2019F,AR,KSTXP,565,184,125,207,399,386,782,480,415,773,821,604,534,1065,751,688,631,933,1169,488,571,355,509,2873,304,156,52,44,51,47,38,36,22,28,28,39,26,34,39,53,33,52,29,21,28,37,22,16,12,6,8,3,1,1,3,3,6,3,6,5
-2019F,AR,LUACP,274,267,312,312,328,305,317,265,291,294,300,277,296,326,312,308,343,432,464,485,432,414,378,396,422,393,384,435,419,430,442,396,404,411,429,422,410,433,453,458,451,413,408,377,382,380,371,383,355,319,333,315,280,288,295,321,308,287,276,264
-2019F,AR,LUICP,269,262,114,114,119,163,169,150,165,227,231,229,245,267,255,308,342,268,288,301,268,257,234,245,262,244,238,270,260,267,274,246,250,255,266,262,254,268,281,284,280,256,253,234,237,236,230,237,220,198,232,233,203,208,212,214,200,175,163,154
-2019F,AR,LUTCP,543,528,426,426,447,468,486,416,457,522,531,505,541,593,568,616,684,700,751,786,700,671,612,641,684,637,623,704,679,697,717,641,654,666,696,684,664,701,734,742,731,669,661,611,619,616,600,620,576,518,564,548,483,496,507,535,509,462,438,417
-2019F,AR,LUTXP,543,528,426,426,447,468,486,416,457,522,531,505,541,593,568,616,684,700,751,786,700,671,612,641,684,637,623,704,679,697,717,641,654,666,696,684,664,701,734,742,731,669,661,611,619,616,600,620,576,518,564,548,483,496,507,535,509,462,438,417
-2019F,AR,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-158,-137,-98,-47,-147,-207,-84,-38,37,37,-20,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,MGACP,14093,14680,15592,16234,16607,17310,18109,18495,19967,21014,21985,23357,25352,26599,26753,27299,28836,29623,30437,24646,26276,26096,25754,25846,26757,25857,27302,27975,28965,28943,28438,28461,28891,30051,30421,31644,31599,32684,32585,33120,32719,32280,32995,33173,33267,33139,33079,33889,33338,34235,33999,32869,32954,32386,33484,33542,34886,34785,34142,35005
-2019F,AR,MGCCP,151,153,141,146,118,127,121,305,187,186,181,135,130,131,128,143,146,143,178,180,162,172,167,132,91,119,117,130,124,108,142,81,71,28,29,29,29,28,29,28,29,30,110,99,104,140,145,123,128,137,160,71,76,56,80,618,545,538,540,543
-2019F,AR,MGICP,431,456,498,511,490,485,433,524,367,295,291,260,250,194,125,169,113,11,0,7,51,39,25,16,485,630,482,470,451,358,416,453,439,393,425,449,454,472,648,549,550,936,999,1071,1257,1218,1336,950,688,688,755,766,703,758,649,718,760,764,779,757
-2019F,AR,MGTCP,14675,15290,16231,16891,17215,17922,18663,19324,20521,21495,22457,23752,25732,26924,27005,27611,29095,29778,30615,24833,26490,26306,25946,25993,27334,26607,27900,28575,29540,29409,28997,28995,29401,30472,30874,32121,32081,33184,33261,33698,33297,33246,34103,34343,34628,34498,34560,34962,34154,35059,34914,33706,33732,33201,34213,34879,36191,36087,35460,36305
-2019F,AR,MGTXP,14675,15290,16231,16891,17215,17922,18663,19324,20521,21495,22457,23752,25732,26924,27005,27611,29095,29778,30615,24833,26490,26306,25946,25993,27334,26607,27900,28575,29540,29409,28997,28995,29401,30472,30874,32121,32081,33184,33261,33698,33297,33246,34103,34343,34628,34498,34560,34962,34154,35059,34914,33706,33732,33201,34213,34879,36191,36087,35460,36305
-2019F,AR,MSICP,0,0,0,0,0,0,0,0,0,0,0,114,117,145,185,250,363,411,357,330,313,277,243,218,187,188,39,39,47,44,39,52,34,32,36,33,277,304,370,348,371,204,219,205,185,184,188,184,196,210,219,228,223,352,376,389,394,253,251,229
-2019F,AR,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,NGACP,9147,9189,9366,9610,11388,11341,11363,12057,12268,12356,13429,11716,13151,15423,13557,12217,9452,9042,11259,12279,11452,9685,8658,7503,10405,8203,5987,5780,7513,9677,8643,8340,8085,9662,11867,11483,12551,11649,10271,9078,8858,8801,7980,8523,7964,8953,10640,10248,9939,9136,9560,11307,10627,11464,11712,8827,8268,6797,7325,7601
-2019F,AR,NGCCP,17161,17833,20113,22670,23918,27953,32737,35295,37886,39962,39169,30832,32457,33789,31040,33291,34011,33913,34612,33442,30690,28282,29438,27739,28995,26731,24949,24603,27457,27271,25129,25986,25314,28998,27407,27409,31006,29441,28062,27898,33180,32031,32928,31746,29821,31521,31286,32187,36924,36373,40232,39986,41435,47636,50673,47651,45810,47496,55453,55100
-2019F,AR,NGEIP,46779,42571,52362,58288,65122,67510,66719,53697,72640,84387,107446,86433,72332,49014,39648,31818,15972,6905,6993,30254,58863,54915,33443,33275,24962,11411,28425,32057,22075,29462,32090,27903,27015,21191,24977,32750,33998,24805,40574,40089,34602,26096,42430,56369,40138,48987,71056,63594,64188,83266,96553,107014,129059,93552,71796,109553,135317,127049,152665,159531
-2019F,AR,NGICP,108341,104665,111955,124936,136294,134080,126676,141634,142429,154963,162115,155926,151048,180694,162038,132351,140158,130641,119898,124880,125880,129109,110570,95666,99757,109099,101306,67131,116923,140919,127323,106256,124688,124073,136089,139998,144179,151795,149394,139552,132338,123813,119858,112284,102442,90543,89392,87679,88131,82165,88930,92033,88818,94479,96137,91926,93207,104564,110384,108604
-2019F,AR,NGRCP,33260,33772,33718,37342,41296,36500,51848,52777,56346,58322,59792,48737,47387,48883,44110,48543,49348,49057,47937,49892,46835,42796,44832,42783,45903,40189,38530,40055,42867,42312,39188,40639,39474,45545,41527,41107,46289,42428,38190,36245,42361,37202,39130,37994,34760,33605,31495,32731,35718,33252,36240,33737,26191,34989,38127,33049,27130,25704,34979,33718
-2019F,AR,NGTCP,214688,208030,227514,252846,278018,277384,289343,295460,321569,349990,381951,333644,316375,327803,290393,258220,248941,229558,220699,250747,273720,264787,226941,206966,210022,195633,199197,169626,216835,249641,232374,209125,224577,229469,241866,252747,268022,260118,266492,252862,251339,227943,242325,246916,215124,213609,233869,226440,234900,244192,271515,284077,296130,282120,268445,291006,309732,311610,360806,364554
-2019F,AR,NGTPP,120,115.2,122.8,134.9,146.6,146.5,152.4,155.4,169.1,183,197.7,169.2,156.7,159.2,138.2,119.6,114.7,103.9,98.4,110.4,119.6,115.5,98.9,89.8,90.5,84.1,85.4,72.4,92.6,106.4,98.6,87.8,93,93.4,97,99.7,104.2,100,101.5,95.4,93.8,84.7,89.6,90.6,78.2,76.8,82.9,79.5,81.7,84.3,92.9,96.6,100.3,95.3,90.4,97.7,103.5,103.7,119.8,120.7
-2019F,AR,NGTXP,167909,165459,175152,194558,212896,209874,222624,241763,248929,265603,274505,247211,244043,278789,250745,226402,232969,222653,213706,220493,214857,209872,193498,173691,185060,184222,170772,137569,194760,220179,200283,181221,197561,208278,216889,219997,234024,235312,225918,212773,216737,201847,199895,190547,174987,164622,162813,162845,170712,160926,174962,177063,167071,188568,196649,181453,174415,184561,208141,205023
-2019F,AR,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,4874,3858,5085,5220,3873,7833,9075,7482,7646,10808,9889,8876,11369,8895,8844,11282,12662,11326,13522,13924,11658,13357,14208,13097,12920,11652,14781,14559,14689,15450,13690,15233,15486,14168,15170,15023,14194,15493,11945,14478,13838,13421,12691,12721,13575
-2019F,AR,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,4874,3858,5085,5220,3873,7833,9075,7482,7646,10808,9889,8876,11369,8895,8844,11282,12662,11326,13522,13924,11658,13357,14208,13097,12920,11652,14781,14559,14689,15450,13690,15233,15486,14168,15170,15023,14194,15493,11945,14478,13838,13421,12691,12721,13575
-2019F,AR,OPICP,1282,1244,1230,1253,1263,1311,1334,1351,1403,1460,1439,1366,997,1187,1225,1253,1271,1361,1340,1283,1244,863,808,927,919,849,990,1089,1153,1151,1179,847,1028,951,1033,978,1620,1615,1586,1605,1423,1360,1409,1457,1470,1556,1538,1495,1364,1396,1501,1647,1671,1800,1714,1731,1764,1625,1598,1597
-2019F,AR,OPTCP,1282,1244,1230,1253,1263,1311,1334,1351,1403,1460,1439,1366,997,1187,1225,1253,1271,1361,1340,1283,1244,863,808,927,919,849,990,1089,1153,1151,1179,847,1028,951,1033,978,1620,1615,1586,1605,1423,1360,1409,1457,1470,1556,1538,1495,1364,1396,1501,1647,1671,1800,1714,1731,1764,1625,1598,1597
-2019F,AR,OPTXP,1282,1244,1230,1253,1263,1311,1334,1351,1403,1460,1439,1366,997,1187,1225,1253,1271,1361,1340,1283,1244,863,808,927,919,849,990,1089,1153,1151,1179,847,1028,951,1033,978,1620,1615,1586,1605,1423,1360,1409,1457,1470,1556,1538,1495,1364,1396,1501,1647,1671,1800,1714,1731,1764,1625,1598,1597
-2019F,AR,P1ICP,3629,4121,4205,4305,4320,4548,5368,5354,5412,5974,5750,5805,5229,5775,5254,5256,5348,5903,6187,5839,5296,4853,4484,3967,2932,2632,2462,2622,3054,2454,2217,1887,2725,2958,2650,2768,3131,3178,3011,3192,3001,2796,4546,3774,2868,2565,3401,3236,2181,3069,3675,4345,3776,3818,4051,3354,4383,4276,3853,3962
-2019F,AR,P1TCP,4180,4600,4894,5077,5172,5437,6308,6068,6173,6821,6579,6547,5969,6777,6123,6027,6129,6881,7295,6694,6135,5615,5182,7165,3746,3226,2990,3175,3608,3018,2805,2442,3293,3519,3247,3351,3679,3770,3608,3807,3575,3425,5096,4274,3405,3046,3903,3743,2635,3504,4100,4743,4139,4177,4388,3725,4741,4612,4179,4278
-2019F,AR,P1TXP,4180,4600,4894,5077,5172,5437,6308,6068,6173,6821,6579,6547,5969,6777,6123,6027,6129,6881,7295,6694,6135,5615,5182,7165,3746,3226,2990,3175,3608,3018,2805,2442,3293,3519,3247,3351,3679,3770,3608,3807,3575,3425,5096,4274,3405,3046,3903,3743,2635,3504,4100,4743,4139,4177,4388,3725,4741,4612,4179,4278
-2019F,AR,PAACP,18019,19733,20258,21536,22457,22364,23608,24024,26703,27824,28862,30520,33885,36426,36780,36957,38728,39964,40871,34774,35922,36985,37052,35011,36588,36203,37456,39128,40616,41437,40503,40822,40580,42434,45048,46008,46775,48415,49066,52552,52570,49634,51180,51089,51739,51661,51352,52491,51452,51871,52316,51372,49881,49473,50218,50311,51786,52376,52359,52846
-2019F,AR,PACCP,925,920,980,950,1058,1027,1231,1468,1534,1751,1786,1807,2130,2326,2496,2520,2653,2518,2149,2017,1312,934,884,3911,1961,1488,768,780,706,868,847,706,693,764,780,662,651,649,649,955,996,1251,1022,1215,1303,1162,528,426,671,1412,1112,1000,760,712,1030,1537,1305,1305,1438,1525
-2019F,AR,PAEIP,119,62,90,162,60,38,52,52,158,331,705,2745,4587,7136,6773,4427,8632,13944,13766,7794,3285,754,146,97,18,21,61,10,265,278,155,129,95,131,176,109,179,127,279,260,360,1421,249,453,805,302,267,133,98,142,75,94,55,72,45,98,72,83,56,78
-2019F,AR,PAICP,6614,6960,7457,7420,8332,7522,8196,8369,8782,9822,9992,9904,11432,13210,13761,14615,14704,15466,15310,16844,12452,12746,12350,10982,8622,9338,8721,7446,8149,6923,6473,5762,7687,8141,7786,8878,8410,8839,8393,9240,10855,11265,11445,11472,11297,11582,12660,12415,12806,9003,10993,11272,10332,10887,10782,8704,9357,8532,8971,9140
-2019F,AR,PARCP,2798,2973,3083,2964,3521,3382,4278,4516,5190,6368,6491,6844,7477,6890,6096,5233,5539,5466,3998,3170,2203,1727,1648,2767,1817,2026,2228,1859,1824,1985,1792,1617,1452,1646,1605,1450,1440,1530,1135,2936,2598,2729,2051,1701,1625,1476,1453,1426,1801,1778,1590,1330,999,1331,1301,1103,847,776,1048,1068
-2019F,AR,PATCP,28475,30648,31867,33033,35429,34332,37365,38428,42367,46095,47835,51820,59511,65988,65907,63752,70255,77359,76095,64599,55174,53145,52081,52767,49005,49075,49234,49224,51560,51490,49771,49037,50506,53115,55394,57107,57455,59560,59522,65943,67378,66300,65947,65932,66769,66182,66260,66891,66829,64205,66086,65068,62028,62475,63375,61753,63366,63071,63872,64656
-2019F,AR,PATPP,15.9,17,17.2,17.6,18.7,18.1,19.7,20.2,22.3,24.1,24.8,26.3,29.5,32,31.4,29.5,32.4,35,33.9,28.4,24.1,23.2,22.7,22.9,21.1,21.1,21.1,21,22,21.9,21.1,20.6,20.9,21.6,22.2,22.5,22.3,22.9,22.7,24.9,25.2,24.6,24.4,24.2,24.3,23.8,23.5,23.5,23.2,22.2,22.6,22.1,21,21.1,21.3,20.7,21.2,21,21.2,21.4
-2019F,AR,PATXP,28356,30586,31777,32871,35369,34294,37313,38377,42209,45765,47130,49075,54924,58852,59134,59325,61624,63414,62329,56805,51889,52391,51934,52670,48987,49055,49173,49214,51295,51213,49616,48908,50411,52984,55219,56998,57276,59433,59243,65684,67019,64878,65698,65479,65964,65880,65993,66758,66730,64063,66011,64974,61973,62404,63330,61655,63294,62988,63816,64578
-2019F,AR,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,PCICP,610,1444,1626,1658,1448,1497,1578,1663,1544,1712,1391,1404,1172,1039,843,939,845,1126,1108,678,575,1367,1145,692,970,235,233,229,252,242,252,241,264,286,267,262,273,273,267,266,278,273,271,271,275,295,298,269,247,271,288,280,282,258,240,245,252,228,214,216
-2019F,AR,PCTCP,610,1444,1626,1658,1448,1497,1578,1663,1544,1712,1391,1404,1172,1039,843,939,845,1126,1108,678,575,1367,1145,692,970,235,233,229,252,242,252,241,264,286,267,262,273,273,267,266,278,273,271,271,275,295,298,269,247,271,288,280,282,258,240,245,252,228,214,216
-2019F,AR,PCTXP,610,1444,1626,1658,1448,1497,1578,1663,1544,1712,1391,1404,1172,1039,843,939,845,1126,1108,678,575,1367,1145,692,970,235,233,229,252,242,252,241,264,286,267,262,273,273,267,266,278,273,271,271,275,295,298,269,247,271,288,280,282,258,240,245,252,228,214,216
-2019F,AR,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,30,18,20,14,15,13,3,2,3
-2019F,AR,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,291,307,304,290,379,324,225,212,306,284
-2019F,AR,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,780,792,723,694,915,750,682,648,816,955
-2019F,AR,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1575,1318,994,1326,1292,1093,832,768,1039,1066
-2019F,AR,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2676,2447,2040,2329,2601,2182,1753,1631,2163,2308
-2019F,AR,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2676,2447,2040,2329,2601,2182,1753,1631,2163,2308
-2019F,AR,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AR,RFACP,3,0,37,0,0,36,28,38,5,8,5,0,0,7,13,11,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,RFCCP,103,60,113,104,97,88,78,100,115,35,41,41,209,473,840,1077,1129,979,892,943,437,149,141,113,76,0,3,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,RFEIP,118,61,89,161,59,38,51,51,156,327,698,2717,4552,7120,6747,4365,8582,13782,13495,7709,3106,721,116,50,3,8,48,0,136,135,15,1,0,5,54,15,81,27,100,92,293,1340,180,382,742,230,219,70,54,77,20,12,2,7,0,1,0,0,0,0
-2019F,AR,RFICP,315,189,402,675,625,291,256,331,390,144,191,198,882,1993,2932,3634,3550,3079,2822,2901,1438,1742,1493,600,401,726,875,265,220,236,214,144,27,216,265,204,116,21,3,17,9,203,46,188,446,33,4,69,44,41,1,22,11,13,10,1,1,0,0,0
-2019F,AR,RFTCP,539,309,641,940,782,453,413,521,666,514,935,2957,5643,9593,10532,9086,13262,17843,17218,11552,4981,2611,1749,763,480,735,926,265,355,370,228,145,31,222,319,219,197,48,103,109,302,1543,226,570,1188,264,223,139,98,118,20,34,13,20,10,2,1,0,0,0
-2019F,AR,RFTXP,421,248,552,779,723,415,362,470,510,187,238,240,1091,2473,3785,4722,4680,4062,3722,3843,1875,1890,1634,714,477,726,878,265,220,236,214,144,31,216,265,204,116,21,3,17,9,203,46,188,446,34,4,69,44,41,1,22,11,13,10,1,1,0,0,0
-2019F,AR,SGICP,1160,1123,1121,1083,1099,1131,1118,1142,1178,1228,1191,932,596,711,705,696,674,730,740,736,712,656,690,684,713,766,896,803,840,849,885,964,1007,1020,1016,1001,1025,1007,968,884,909,975,1031,1066,1164,1173,1176,1145,1097,1187,1195,1313,1341,1308,1282,1243,1251,1227,1241,1177
-2019F,AR,SNICP,0,0,0,0,0,0,0,0,0,0,0,60,64,65,64,55,61,63,76,77,74,55,51,60,80,61,347,387,305,287,286,48,57,57,44,38,209,203,301,408,273,118,153,121,76,94,51,57,62,34,19,17,11,85,91,85,80,58,54,56
-2019F,AR,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,3,3,4,8,19
-2019F,AR,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,31,203,201
-2019F,AR,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3
-2019F,AR,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,3,4,6,13,21
-2019F,AR,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,5,5,6,33,41,225,246
-2019F,AR,TPOPP,1789,1806,1853,1875,1897,1894,1899,1901,1902,1913,1932,1972,2019,2059,2101,2160,2170,2209,2243,2271,2289,2293,2294,2306,2320,2327,2332,2342,2343,2346,2357,2383,2416,2456,2494,2535,2572,2601,2626,2652,2679,2692,2706,2725,2750,2781,2822,2849,2875,2897,2922,2941,2953,2960,2969,2980,2992,3004,3012,3021
-2019F,AR,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-168,-204,-119,-204,-222,-232,-213,-163,-225,-228,-313,-254,-291,-203,-233,-83,-74,-218,-182,-259,-52,-99,-36,-59,2,55,50,-41,-65,23,51,56,15,-70,-15,7,64,26,113
-2019F,AR,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,WXICP,122,121,109,105,99,105,133,131,148,156,157,164,169,217,212,190,108,90,93,91,89,175,137,149,147,151,147,157,163,161,160,117,124,133,135,135,186,167,162,143,126,111,98,95,94,96,68,57,50,32,44,39,40,40,36,30,32,23,28,24
-2019F,AR,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AR,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,ARICP,863,946,865,1235,1168,1110,1891,2018,2295,2728,3679,2930,3566,3416,3933,2331,2032,2170,2687,2959,2061,1637,1522,1647,2485,2563,2530,2492,2683,2386,2367,2181,2984,2328,2574,3138,2460,2704,3972,3814,3429,2568,3531,3468,4812,4638,4125,4074,3475,2863,3014,3099,2778,2469,2454,2574,2829,2500,2618,2915
-2019F,AZ,ARTCP,863,946,865,1235,1168,1110,1891,2018,2295,2728,3679,2930,3566,3416,3933,2331,2032,2170,2687,2959,2061,1637,1522,1647,2485,2563,2530,2492,2683,2386,2367,2181,2984,2328,2574,3138,2460,2704,3972,3814,3429,2568,3531,3468,4812,4638,4125,4074,3475,2863,3014,3099,2778,2469,2454,2574,2829,2500,2618,2915
-2019F,AZ,ARTXP,863,946,865,1235,1168,1110,1891,2018,2295,2728,3679,2930,3566,3416,3933,2331,2032,2170,2687,2959,2061,1637,1522,1647,2485,2563,2530,2492,2683,2386,2367,2181,2984,2328,2574,3138,2460,2704,3972,3814,3429,2568,3531,3468,4812,4638,4125,4074,3475,2863,3014,3099,2778,2469,2454,2574,2829,2500,2618,2915
-2019F,AZ,AVACP,699,460,748,673,595,478,522,539,476,430,427,419,410,359,405,358,337,375,342,369,281,225,157,156,190,184,226,207,186,210,194,188,158,128,142,139,155,151,191,157,204,191,183,233,164,188,177,145,156,127,186,205,167,139,205,167,150,167,191,207
-2019F,AZ,AVTCP,699,460,748,673,595,478,522,539,476,430,427,419,410,359,405,358,337,375,342,369,281,225,157,156,190,184,226,207,186,210,194,188,158,128,142,139,155,151,191,157,204,191,183,233,164,188,177,145,156,127,186,205,167,139,205,167,150,167,191,207
-2019F,AZ,AVTXP,699,460,748,673,595,478,522,539,476,430,427,419,410,359,405,358,337,375,342,369,281,225,157,156,190,184,226,207,186,210,194,188,158,128,142,139,155,151,191,157,204,191,183,233,164,188,177,145,156,127,186,205,167,139,205,167,150,167,191,207
-2019F,AZ,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,3,6,21,61,83,71,75,61,208,12,112,334,14,489,412,412,412
-2019F,AZ,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,3,6,21,61,83,71,75,61,208,12,112,334,14,489,412,412,412
-2019F,AZ,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,CLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,CLCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,3,1,0,4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,CLEIP,0,0,294,401,432,333,345,343,385,397,401,414,348,469,2220,4259,6286,7551,7007,9811,10916,14026,14484,12464,13601,14448,11861,12706,13932,16182,15758,16116,17280,18316,18853,16021,16118,17504,18316,19025,20408,20158,19328,19378,20060,20333,20506,21189,22658,20762,23084,23217,21461,23298,22911,19812,16639,16929,16814,12875
-2019F,AZ,CLICP,10,10,10,7,5,4,2,1,1,2,5,10,14,12,11,133,364,832,450,1878,643,1214,1516,1504,1804,1915,2289,669,593,689,660,689,632,674,727,657,675,702,698,684,720,672,626,681,738,719,740,712,628,431,536,503,418,181,221,235,175,227,280,282
-2019F,AZ,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,CLOCP,10,10,10,7,5,4,2,1,1,2,5,10,14,12,11,133,364,832,450,1878,643,1214,1516,1504,1804,1915,2289,669,593,689,660,689,632,674,727,657,675,702,698,684,720,672,626,681,738,719,740,712,628,431,536,503,418,181,221,235,175,227,280,282
-2019F,AZ,CLRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,CLTCP,10,10,304,408,438,337,347,344,386,399,406,424,362,481,2231,4392,6651,8383,7456,11689,11559,15240,16001,13968,15406,16364,14150,13375,14525,16871,16419,16805,17915,18991,19580,16682,16793,18206,19013,19710,21128,20830,19955,20059,20799,21053,21247,21902,23285,21193,23620,23719,21879,23479,23132,20047,16814,17156,17094,13157
-2019F,AZ,CLTXP,10,10,10,7,5,4,2,1,1,2,5,10,14,12,11,133,364,832,450,1878,643,1214,1517,1504,1805,1916,2289,669,593,689,660,689,635,675,727,662,675,702,698,684,720,672,627,681,739,720,741,713,628,431,536,503,418,181,221,235,175,227,280,282
-2019F,AZ,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,DFACP,1404,1687,1725,2317,2516,1790,1879,1778,3020,2994,3192,3164,4487,5645,5075,4756,5043,6019,6510,6784,6480,6639,5807,6282,6559,7624,7716,7376,7765,7491,7936,7225,8313,11289,10624,11068,12618,12909,13805,14987,14474,16045,15237,17273,18934,20456,21703,21303,18674,18389,18637,19164,18365,18464,18452,18994,19577,19643,20822,21995
-2019F,AZ,DFCCP,106,103,106,98,116,131,150,140,220,242,220,249,384,500,483,485,479,633,719,455,280,60,23,216,253,463,387,449,452,379,456,302,257,248,391,354,592,655,1122,945,867,766,832,491,346,473,458,641,1226,868,1200,1166,1145,1017,1025,1089,869,873,787,684
-2019F,AZ,DFEIP,3,2,6,5,7,3,1,1,3,3,1,6,-103,344,536,1573,1101,1205,1194,600,436,296,256,218,180,211,240,328,197,214,200,145,123,95,68,107,101,110,117,75,357,435,100,96,83,78,131,85,89,104,117,96,76,81,108,92,98,107,95,124
-2019F,AZ,DFICP,1227,1274,1133,1057,833,1545,1853,1704,1254,1357,1387,1710,2637,3582,3223,3113,3269,4541,5641,3929,3570,2994,2174,2221,2604,1799,2823,2067,1889,3114,2768,2605,2738,2532,2761,3590,4066,4229,3620,4157,4222,4338,3750,3047,3141,4921,4542,4300,6043,4608,4999,5711,5663,5731,5201,4419,5305,5757,4832,5199
-2019F,AZ,DFRCP,47,46,48,44,52,59,67,62,98,108,98,111,172,223,216,216,214,283,321,203,2,1,0,1,1,12,11,16,6,7,9,5,6,8,6,6,10,7,4,4,4,7,9,9,5,3,3,2,2,3,3,3,4,2,2,1,1,1,1,0
-2019F,AZ,DFTCP,2787,3111,3018,3521,3523,3528,3951,3685,4596,4704,4899,5240,7577,10295,9533,10143,10106,12682,14384,11972,10769,9990,8259,8937,9597,10109,11177,10237,10309,11205,11371,10282,11437,14172,13850,15125,17387,17911,18668,20169,19923,21591,19928,20915,22509,25930,26839,26330,26034,23972,24956,26140,25253,25294,24789,24596,25850,26381,26537,28004
-2019F,AZ,DFTXP,2785,3110,3012,3515,3516,3526,3950,3684,4593,4701,4897,5234,7679,9951,8997,8570,9005,11477,13190,11373,10333,9694,8003,8719,9416,9898,10937,9909,10112,10991,11170,10137,11314,14077,13782,15018,17286,17801,18551,20093,19567,21156,19828,20820,22426,25853,26708,26245,25946,23868,24838,26044,25177,25214,24680,24503,25752,26274,26442,27879
-2019F,AZ,ELEXP,15,14,21,23,25,29,30,34,38,44,51,61,133,94,29,32,38,38,36,40,41,11,7,1,1,0,2,2,2,2,2,2,2,2,2,1,3,48,0,0,0,0,69,71,94,183,310,221,351,354,180,71,66,27,10,1,4,1,36,3
-2019F,AZ,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,18,19,21,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,337,0,163,4,0,47,55,83,55,171,103,128,224,88,123,249,497,83,33,58,18,134,61,70,0
-2019F,AZ,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-16315,-20437,-21429,-18434,-18903,-15424,-13147,-17907,-19725,-19061,-20460,-21039,-24466,-23034,-29498,-24060,-22704,-29540,-36618,-32627,-33439,-28103,-30169,-32237,-30847,-30552,-25395,-23324,-28943,-31042
-2019F,AZ,ELNIP,-15,-14,-21,-23,-25,-29,-30,-34,-38,-44,-51,-61,-133,-94,-22,-14,-20,-16,-36,-40,-41,-11,-7,-1,-1,0,-2,-2,-2,-2,-2,106,-2,-2,-2,336,-3,115,4,0,47,55,14,-16,78,-80,-182,3,-263,-231,69,427,17,7,48,17,130,59,34,-3
-2019F,AZ,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,12,2,0,0,0,0,0,0,0,0,0,79,206,649,547,543,419,363,416,570,325,313,301,3926,4146,4630,5596,5596,5632,5666,5500,5728,6118,6572,6760,6851,6933,7116
-2019F,AZ,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,4,10,13,12,10,12,4,186,185,188,189,194
-2019F,AZ,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,6,5,5,4,2,3,9,5,5,6,62,74,72,91,90,79,81,85,90,92,177,180,182,181,185
-2019F,AZ,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,12,2,0,0,0,0,0,0,0,0,0,80,208,655,553,549,423,366,419,579,330,319,307,3990,4223,4705,5691,5696,5725,5759,5594,5830,6214,6935,7124,7221,7304,7495
-2019F,AZ,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,8,8,11
-2019F,AZ,ESCCP,3302,2947,2915,3184,3313,3044,3276,3592,3775,4305,4690,5304,5983,6436,6820,7162,7626,8205,8208,8683,9122,9263,9289,9544,11169,12295,13088,14324,14924,15778,16058,15802,16366,16714,17766,18562,19555,20520,21683,22688,24311,24697,25162,25425,26106,27468,28626,30475,30162,29386,28943,29512,29692,30039,29290,29284,29564,29681,29684,29415
-2019F,AZ,ESICP,1481,1964,2673,2767,2949,3331,3587,3512,3720,4229,4751,4997,5593,5972,6368,6868,7203,7255,7428,8065,8003,10033,8071,7912,7467,8457,8358,8494,9261,9722,10034,10405,11055,10989,11303,11992,12783,13253,12549,12456,11975,11377,11026,10914,11906,11379,12259,12281,12869,11200,11442,12352,12448,12519,14662,14892,14976,13706,13994,13783
-2019F,AZ,ESRCP,1355,1752,1715,1912,2118,2230,2707,2920,3243,3914,4327,4931,5818,6717,7095,7138,7299,7855,8392,9304,9637,9530,9503,10427,11110,12249,12540,13821,14731,15248,15378,15641,16230,16705,18212,18036,19746,20683,21611,22517,24844,26200,26413,27742,28921,30544,32367,34437,33236,32847,32448,33079,32923,33104,32346,33167,33691,34251,34660,34720
-2019F,AZ,ESRPP,1025,1245,1166,1257,1361,1408,1677,1774,1928,2253,2415,2601,2897,3162,3191,3124,3111,3239,3336,3530,3520,3391,3289,3512,3622,3848,3790,4021,4167,4209,4174,4129,4145,4109,4290,4069,4305,4366,4425,4482,4814,4968,4895,5034,5117,5231,5369,5583,5292,5178,5064,5110,5022,4989,4804,4854,4851,4860,4838,4761
-2019F,AZ,ESTCP,6138,6662,7302,7863,8381,8605,9570,10024,10737,12447,13769,15231,17393,19125,20283,21168,22128,23315,24028,26052,26762,28826,26863,27883,29747,33001,33985,36639,38916,40748,41470,41848,43651,44408,47282,48589,52085,54456,55843,57662,61130,62274,62601,64080,66933,69391,73253,77193,76268,73433,72833,74944,75063,75662,76298,77349,78238,77646,78346,77929
-2019F,AZ,ESTPP,4646,4735,4964,5170,5386,5432,5929,6090,6384,7166,7684,8034,8661,9002,9123,9264,9432,9614,9553,9885,9775,10258,9296,9392,9699,10366,10273,10660,11008,11249,11256,11046,11148,10923,11138,10962,11355,11496,11435,11478,11846,11809,11601,11629,11842,11884,12150,12516,12144,11577,11367,11577,11449,11404,11332,11320,11266,11017,10936,10687
-2019F,AZ,ESTXP,6138,6662,7302,7863,8381,8605,9570,10024,10737,12447,13769,15231,17393,19125,20283,21168,22128,23315,24028,26052,26762,28826,26863,27883,29747,33001,33985,36639,38916,40748,41470,41848,43651,44408,47282,48589,52085,54456,55843,57662,61130,62274,62601,64080,66933,69391,73253,77193,76268,73433,72833,74944,75063,75662,76298,77349,78238,77646,78346,77929
-2019F,AZ,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,FSICP,0,0,0,0,0,0,0,0,0,0,0,4,8,2,3,3,6,6,7,4,5,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,HLACP,34,33,30,36,33,40,46,46,56,51,63,71,80,54,56,51,50,57,106,11,78,146,114,134,130,92,85,60,65,63,55,57,57,58,84,51,35,26,7,18,23,12,18,144,122,203,233,181,269,203,57,57,59,59,73,93,97,74,57,56
-2019F,AZ,HLCCP,113,149,204,206,217,207,141,210,209,226,239,244,258,240,235,154,125,129,158,265,187,180,228,262,207,272,261,314,244,234,220,248,267,235,240,276,223,205,293,405,356,336,342,360,278,229,206,212,428,215,309,377,351,384,455,427,631,646,629,900
-2019F,AZ,HLICP,222,108,105,121,104,161,115,152,169,223,253,242,279,316,451,430,348,353,383,633,739,387,599,438,525,505,541,586,648,576,545,617,934,812,789,745,667,331,128,116,167,249,79,467,436,193,292,392,481,369,517,536,485,493,467,534,484,460,439,406
-2019F,AZ,HLRCP,354,467,640,647,678,648,441,658,655,709,749,766,808,752,735,484,392,406,495,830,586,565,714,820,649,853,817,982,764,734,688,778,837,737,753,866,699,642,917,1269,1115,1053,1070,851,739,770,836,783,1346,1270,1191,1381,812,1033,1063,913,1045,1024,1298,1444
-2019F,AZ,HLTCP,724,756,979,1010,1032,1056,743,1065,1090,1210,1304,1324,1425,1362,1477,1119,915,945,1141,1739,1589,1278,1655,1654,1511,1722,1704,1943,1721,1608,1508,1700,2095,1843,1866,1938,1625,1204,1345,1809,1660,1650,1509,1823,1575,1395,1567,1569,2524,2057,2074,2351,1706,1969,2058,1966,2256,2204,2423,2805
-2019F,AZ,HLTXP,724,756,979,1010,1032,1056,743,1065,1090,1210,1304,1324,1425,1362,1477,1119,915,945,1141,1739,1589,1278,1655,1654,1511,1722,1704,1943,1721,1608,1508,1700,2095,1843,1866,1938,1625,1204,1345,1809,1660,1650,1509,1823,1575,1395,1567,1569,2524,2057,2074,2351,1706,1969,2058,1966,2256,2204,2423,2805
-2019F,AZ,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,HYEGP,2990,2934,2923,2942,2885,4439,5221,5008,5695,6063,6141,6634,6771,7187,7394,7240,7562,6594,7010,7240,9820,6788,7000,14467,15664,13972,14446,10119,7771,7877,7418,6736,6621,6697,7365,8288,9214,12049,10970,9759,8354,7624,7427,7075,6973,6410,6793,6598,7286,6427,6622,9174,6717,5915,6118,6536,7168,6832,6982,6204
-2019F,AZ,HYICP,0,0,0,0,0,0,0,0,9,11,13,9,13,11,7,14,16,3,11,16,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,HYTCP,2990,2934,2923,2942,2885,4439,5221,5008,5704,6074,6154,6643,6784,7197,7400,7254,7579,6597,7021,7256,9836,6803,7015,14482,15679,13987,14461,10135,7786,7877,7418,6736,6621,6697,7365,8288,9214,12049,10970,9759,8354,7624,7427,7075,6973,6410,6793,6598,7286,6427,6622,9174,6717,5915,6118,6536,7168,6832,6982,6204
-2019F,AZ,HYTXP,0,0,0,0,0,0,0,0,9,11,13,9,13,11,7,14,16,3,11,16,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,JFACP,4721,5096,5619,5756,6018,5545,5969,7046,8103,7459,6644,6769,6738,7066,7099,6995,6670,7173,7417,7832,7967,7523,7714,7089,8022,7154,7697,8374,8478,8157,8501,9642,8310,7892,7401,7588,7922,7978,8677,9627,10433,9914,10344,10650,8256,8018,7721,6612,6763,4686,11711,12082,11838,11961,12292,12322,12567,13173,12571,12946
-2019F,AZ,JFTCP,4721,5096,5619,5756,6018,5545,5969,7046,8103,7459,6644,6769,6960,7226,7229,7075,6670,7173,7417,7832,7967,7523,7714,7089,8022,7154,7697,8374,8478,8157,8501,9642,8310,7892,7401,7588,7922,7978,8677,9627,10433,9914,10344,10650,8256,8018,7721,6612,6763,4686,11711,12082,11838,11961,12292,12322,12567,13173,12571,12946
-2019F,AZ,JFTXP,4721,5096,5619,5756,6018,5545,5969,7046,8103,7459,6644,6769,6738,7066,7099,6995,6670,7173,7417,7832,7967,7523,7714,7089,8022,7154,7697,8374,8478,8157,8501,9642,8310,7892,7401,7588,7922,7978,8677,9627,10433,9914,10344,10650,8256,8018,7721,6612,6763,4686,11711,12082,11838,11961,12292,12322,12567,13173,12571,12946
-2019F,AZ,KSCCP,0,2,2,1,1,2,2,6,1,1,12,9,7,6,16,14,29,36,31,11,0,18,12,2,2,2,19,21,1,3,2,2,1,1,1,1,2,4,1,5,3,3,2,1,2,2,2,2,0,1,1,0,0,0,0,0,0,0,0,0
-2019F,AZ,KSICP,64,23,13,5,18,21,25,6,7,6,85,97,57,49,122,122,159,325,298,28,73,89,6,2,2,11,33,26,52,47,17,34,1,1,0,1,2,2,7,2,1,1,1,1,3,3,5,1,0,1,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,KSRCP,0,12,10,8,8,9,10,32,6,7,68,51,39,35,87,77,161,200,171,61,0,0,0,2,2,3,3,3,3,0,0,1,2,1,2,2,3,2,3,2,1,1,1,2,1,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,KSTCP,64,37,25,14,27,31,37,43,14,14,165,158,103,90,225,213,348,561,499,100,73,107,18,7,6,16,56,50,56,50,20,36,3,3,3,4,7,8,11,9,5,5,3,4,6,9,9,4,1,1,1,1,0,0,0,0,0,0,0,1
-2019F,AZ,KSTXP,64,37,25,14,27,31,37,43,14,14,165,158,103,90,225,213,348,561,499,100,73,107,18,7,6,16,56,50,56,50,20,36,3,3,3,4,7,8,11,9,5,5,3,4,6,9,9,4,1,1,1,1,0,0,0,0,0,0,0,1
-2019F,AZ,LUACP,193,188,196,196,205,206,214,192,211,225,229,223,239,305,292,267,296,347,372,390,347,333,303,318,339,316,309,349,337,345,355,318,324,330,345,339,329,347,364,368,362,332,328,303,307,305,298,307,285,256,470,454,411,432,442,489,474,436,428,421
-2019F,AZ,LUICP,81,79,83,83,87,93,97,95,104,113,115,102,109,266,255,205,228,264,284,297,264,254,231,242,258,241,235,266,257,263,271,242,247,251,263,258,251,265,277,280,276,253,250,231,234,233,227,234,217,195,283,279,235,239,250,245,228,233,230,219
-2019F,AZ,LUTCP,275,267,279,278,292,299,311,286,315,338,344,325,348,571,547,472,524,611,656,687,611,586,535,560,597,556,544,615,593,608,626,560,571,581,608,597,580,612,641,648,638,585,578,534,541,538,524,541,503,452,753,733,646,670,692,735,702,669,657,640
-2019F,AZ,LUTXP,275,267,279,278,292,299,311,286,315,338,344,325,348,571,547,472,524,611,656,687,611,586,535,560,597,556,544,615,593,608,626,560,571,581,608,597,580,612,641,648,638,585,578,534,541,538,524,541,503,452,753,733,646,670,692,735,702,669,657,640
-2019F,AZ,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-12,-16,0,0,0,0,0,0,7,7,-3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,MGACP,11759,12226,13083,13689,14004,14423,15212,15547,17153,19425,20940,22351,24932,27210,26070,27087,28378,30205,31901,31577,30100,30369,30923,32642,34190,35604,37260,38508,39673,40100,38566,39853,40902,42497,44793,46714,48944,48391,52152,54484,56056,57554,60279,60799,64007,66394,68043,68890,64665,62308,62109,61066,60471,61811,62359,63166,65457,65825,67174,67720
-2019F,AZ,MGCCP,89,98,111,141,124,137,162,178,158,151,146,151,156,162,171,177,182,186,161,174,179,185,304,167,152,140,165,357,138,128,257,372,308,191,34,35,35,35,36,36,37,40,41,40,40,40,43,45,45,113,146,126,109,126,43,1789,1789,1804,1834,1844
-2019F,AZ,MGICP,515,487,484,404,444,437,470,526,425,444,456,455,470,454,477,440,376,373,369,341,309,270,214,186,250,404,419,406,405,420,503,368,346,338,366,410,437,457,473,334,339,913,911,988,1202,1048,1220,1075,1049,997,871,876,933,973,938,1703,1739,1747,1757,1763
-2019F,AZ,MGTCP,12363,12811,13678,14234,14572,14997,15844,16252,17735,20020,21542,22957,25557,27825,26717,27704,28935,30765,32431,32091,30589,30825,31440,32995,34592,36148,37844,39271,40216,40648,39326,40593,41556,43026,45193,47159,49417,48884,52661,54854,56431,58506,61230,61827,65248,67483,69307,70010,65760,63417,63127,62068,61513,62910,63340,66657,68984,69377,70764,71327
-2019F,AZ,MGTXP,12363,12811,13678,14234,14572,14997,15844,16252,17735,20020,21542,22957,25557,27825,26717,27704,28935,30765,32431,32091,30589,30825,31440,32995,34592,36148,37844,39271,40216,40648,39326,40593,41556,43026,45193,47159,49417,48884,52661,54854,56431,58506,61230,61827,65248,67483,69307,70010,65760,63417,63127,62068,61513,62910,63340,66657,68984,69377,70764,71327
-2019F,AZ,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,85,103,97,103,20,21,20,18,18,35,34,37,39,41,43,42,44,47,48,49,118,118,107
-2019F,AZ,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,NGACP,15910,15540,15022,14485,17358,18002,19790,23724,25901,26895,23952,26123,25897,23984,22225,17092,15371,14911,15175,20372,21339,24318,18488,12419,13708,18542,12657,16664,18343,18430,25277,23571,23520,17519,25111,18611,17615,18963,20191,19298,21451,23088,21166,19383,17198,19446,22605,22408,24198,22942,17462,14870,14079,14349,15665,17435,16179,14211,13994,16981
-2019F,AZ,NGCCP,25286,13994,12512,13285,22741,19234,17949,23335,23389,24501,22705,25604,26905,31812,32742,32638,36763,34076,29581,26971,27487,26742,26085,24612,25309,25360,24081,27669,28299,28600,28401,27597,27089,27568,29187,28210,28987,30132,31788,31301,32138,31121,31705,32292,33159,31888,32792,32694,32516,32196,31945,32633,31530,32890,30456,30536,34010,31212,31812,34687
-2019F,AZ,NGEIP,53246,60634,60183,55692,48793,36740,41590,39944,46857,57188,58898,68382,77715,56689,40249,17693,24338,29493,54379,51258,49699,57911,31286,19209,25366,41731,30607,26665,25328,50807,24278,23282,30939,20480,26147,22183,22554,26692,42267,54685,95881,129086,145346,170140,240321,217485,248146,280156,283817,261904,224430,180966,228818,222985,205697,248369,255498,223952,284653,356307
-2019F,AZ,NGICP,13681,38569,48058,50616,45219,55172,57780,46387,53719,58466,57762,60585,63133,65558,64895,50868,54536,50326,45791,44599,37807,47264,29723,29738,29161,16509,8492,17763,24190,20720,18450,19249,19815,21213,25930,27721,27037,27914,28203,27066,21256,21268,17213,15295,20738,16998,18470,19375,20204,17965,19264,21741,22669,22157,22499,20407,19768,19254,19172,18629
-2019F,AZ,NGRCP,27408,24976,22158,23334,28329,25186,25017,25376,26681,28426,29679,32619,34259,36280,32335,37931,40267,38286,30115,29538,29518,26298,29449,29255,27606,28634,25412,28426,28206,27084,30320,31353,28386,28161,29684,26893,27709,31057,36100,32940,34740,36249,35305,35810,38206,35767,36055,38321,38453,34732,37812,38592,34974,39692,32397,34516,35120,32821,35125,42085
-2019F,AZ,NGTCP,135531,153713,157933,157412,162440,154334,162126,158766,176547,195476,192996,213313,227909,214323,192446,156222,171275,167092,175041,172738,165850,182533,135031,115233,121150,130776,101249,117187,124366,145642,126726,125052,129749,114941,136059,123618,123902,134759,158550,165291,205466,240812,250734,272921,349622,321584,358068,392954,399188,369739,330913,288802,332070,332073,306714,351263,360575,321450,384756,468689
-2019F,AZ,NGTPP,102.6,109.2,107.4,103.5,104.4,97.4,100.4,96.5,105,112.5,107.7,112.5,113.5,100.9,86.6,68.4,73,68.9,69.6,65.5,60.6,65,46.7,38.8,39.5,41.1,30.6,34.1,35.2,40.2,34.4,33,33.1,28.3,32.1,27.9,27,28.4,32.5,32.9,39.8,45.7,46.5,49.5,61.9,55.1,59.4,63.7,63.6,58.3,51.6,44.6,50.6,50.1,45.6,51.4,51.9,45.6,53.7,64.3
-2019F,AZ,NGTXP,82285,93079,97750,101720,113647,117594,120536,118822,129690,138288,134098,144931,150194,157634,152197,138529,146937,137599,120662,121480,116151,124622,103745,96024,95784,89045,70642,90522,99038,94835,102448,101770,98810,94461,109912,101435,101348,108066,116283,110606,109585,111725,105388,102781,109300,104099,109922,112797,115371,107835,106483,107836,103252,109088,101017,102894,105077,97498,100103,112382
-2019F,AZ,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,9976,13458,22940,7850,20598,25096,25609,22049,23171,26985,28840,29314,30301,30416,30381,28724,30862,28581,28113,25807,24012,26782,29250,30662,31200,31278,31934,31431,32321,32526,32377,32340,31097,31920
-2019F,AZ,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,9976,13458,22940,7850,20598,25096,25609,22049,23171,26985,28840,29314,30301,30416,30381,28724,30862,28581,28113,25807,24012,26782,29250,30662,31200,31278,31934,31431,32321,32526,32377,32340,31097,31920
-2019F,AZ,OPICP,0,0,0,0,0,0,0,0,0,0,0,40,97,27,39,39,62,75,77,73,71,27,43,0,0,0,0,0,0,123,129,216,259,131,114,107,185,185,222,231,204,95,101,90,76,81,163,166,174,116,99,93,83,210,218,206,200,430,408,405
-2019F,AZ,OPTCP,0,0,0,0,0,0,0,0,0,0,0,40,97,27,39,39,62,75,77,73,71,27,43,0,0,0,0,0,0,123,129,216,259,131,114,107,185,185,222,231,204,95,101,90,76,81,163,166,174,116,99,93,83,210,218,206,200,430,408,405
-2019F,AZ,OPTXP,0,0,0,0,0,0,0,0,0,0,0,40,97,27,39,39,62,75,77,73,71,27,43,0,0,0,0,0,0,123,129,216,259,131,114,107,185,185,222,231,204,95,101,90,76,81,163,166,174,116,99,93,83,210,218,206,200,430,408,405
-2019F,AZ,P1ICP,1008,1047,961,1323,1273,1224,2013,2118,2406,2847,3879,3169,3828,3757,4348,2696,2482,2834,3345,3356,2469,2007,1802,1891,2744,2815,2799,2784,2992,2819,2783,2673,3490,2711,2952,3504,2897,3156,4477,4328,3910,2917,3882,3790,5125,4956,4520,4476,3866,3175,3397,3471,3096,2918,2923,3026,3258,3162,3256,3539
-2019F,AZ,P1TCP,1901,1710,1917,2201,2083,1918,2761,2886,3099,3509,4615,3872,4523,4463,5149,3412,3304,3791,4260,4187,3097,2582,2274,2369,3277,3320,3356,3364,3518,3377,3335,3181,3975,3171,3441,3985,3386,3660,5036,4859,4479,3444,4395,4330,5599,5454,4998,4931,4309,3560,4053,4130,3674,3489,3570,3682,3882,3765,3875,4167
-2019F,AZ,P1TXP,1901,1710,1917,2201,2083,1918,2761,2886,3099,3509,4615,3872,4523,4463,5149,3412,3304,3791,4260,4187,3097,2582,2274,2369,3277,3320,3356,3364,3518,3377,3335,3181,3975,3171,3441,3985,3386,3660,5036,4859,4479,3444,4395,4330,5599,5454,4998,4931,4309,3560,4053,4130,3674,3489,3570,3682,3882,3765,3875,4167
-2019F,AZ,PAACP,18829,19704,21410,22666,23373,22482,23845,25148,29018,30583,31494,32997,36886,40640,38998,39514,40774,44176,46647,46963,45253,45236,45017,46621,49430,50974,53292,54875,56503,56367,55608,57283,58063,62193,63388,65899,70003,69803,75196,79642,81551,84047,86389,89403,91789,95564,98175,97439,90814,85968,93171,93027,91310,92865,93824,95230,98321,99318,101242,103344
-2019F,AZ,PACCP,348,370,441,459,515,494,472,549,620,686,648,701,847,1054,1077,913,1025,1390,1374,983,647,479,725,648,616,877,832,1140,835,744,935,935,833,676,667,667,857,899,1452,1391,1263,1145,1216,892,666,744,711,900,1699,1197,1655,1669,1606,1527,1524,3305,3288,3324,3250,3429
-2019F,AZ,PAEIP,44,27,99,89,111,47,16,17,50,46,20,414,1520,7454,8437,7410,6288,8185,5625,5331,1622,499,400,747,710,357,242,432,219,361,210,159,135,110,224,119,124,110,117,88,402,660,100,96,90,78,132,85,89,104,117,96,76,81,108,92,98,107,95,124
-2019F,AZ,PAICP,3000,2954,2711,2923,2700,3387,4487,4560,4292,4925,6031,5655,7373,8345,8747,6781,6736,8502,9961,8377,7241,5678,4804,4741,6136,5554,6620,5860,5965,6935,6617,6438,7601,6568,6913,8317,8147,8187,8718,8963,8660,8444,8651,8292,9937,11138,10591,10265,11440,9149,9784,10601,10177,10116,9528,9681,10785,11126,10283,10907
-2019F,AZ,PARCP,402,525,698,698,738,715,518,752,760,823,915,928,1019,1010,1038,777,766,888,986,1095,588,566,714,823,652,868,832,1002,773,741,698,783,845,746,760,874,712,651,924,1275,1120,1060,1080,863,745,778,841,786,1349,1274,1194,1384,816,1035,1066,914,1046,1026,1299,1444
-2019F,AZ,PATCP,22622,23580,25359,26834,27436,27125,29337,31025,34740,37063,39108,40696,47645,58503,58299,55395,55589,63141,64593,62748,55350,52458,51661,53580,57543,58629,61818,63310,64295,65148,64069,65598,67477,70293,71952,75875,79843,79651,86406,91358,92996,95357,97436,99545,103228,108302,110449,109473,105390,97692,105920,106778,103984,105624,106050,109223,113539,114900,116169,119248
-2019F,AZ,PATPP,17.1,16.8,17.2,17.6,17.6,17.1,18.2,18.8,20.7,21.3,21.8,21.5,23.7,27.5,26.2,24.2,23.7,26,25.7,23.8,20.2,18.7,17.9,18,18.8,18.4,18.7,18.4,18.2,18,17.4,17.3,17.2,17.3,16.9,17.1,17.4,16.8,17.7,18.2,18,18.1,18.1,18.1,18.3,18.5,18.3,17.7,16.8,15.4,16.5,16.5,15.9,15.9,15.8,16,16.3,16.3,16.2,16.4
-2019F,AZ,PATXP,22578,23553,25259,26746,27325,27078,29321,31008,34690,37017,39088,40282,46125,51049,49861,47986,49302,54955,58968,57417,53728,51959,51260,52833,56833,58273,61575,62878,64076,64787,63859,65440,67342,70183,71728,75756,79719,79540,86289,91270,92594,94697,97336,99450,103138,108224,110317,109389,105301,97588,105803,106682,103908,105543,105941,109131,113441,114793,116075,119124
-2019F,AZ,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57,57,59,59,73,93,97,74,57,56
-2019F,AZ,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,309,377,351,384,455,427,631,646,629,900
-2019F,AZ,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,517,536,485,493,467,534,484,460,439,406
-2019F,AZ,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1191,1381,812,1033,1063,913,1045,1024,1298,1444
-2019F,AZ,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2074,2351,1706,1969,2058,1966,2256,2204,2423,2805
-2019F,AZ,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2074,2351,1706,1969,2058,1966,2256,2204,2423,2805
-2019F,AZ,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,RFACP,17,14,9,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,RFCCP,39,17,17,12,57,17,17,15,32,66,31,48,42,146,173,83,210,404,305,78,0,36,158,1,2,0,0,0,1,0,0,11,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,RFEIP,41,26,93,83,105,44,15,16,47,43,19,407,1401,6949,7771,5756,5187,6981,4431,4731,1185,203,145,529,530,145,2,104,22,147,10,14,11,16,155,12,23,0,0,12,46,225,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,RFICP,27,38,28,18,46,20,35,59,39,53,55,78,159,236,248,102,262,401,224,117,154,21,15,5,13,31,38,17,31,6,18,175,93,174,45,69,80,14,20,27,23,27,29,0,33,21,17,22,0,0,0,6,0,0,0,0,0,0,0,0
-2019F,AZ,RFTCP,125,95,147,113,208,82,69,90,118,162,105,534,1602,7332,8192,5942,5658,7786,4959,4926,1339,259,318,535,544,176,41,122,55,152,28,200,104,190,200,81,107,14,20,40,69,252,29,0,40,21,18,22,0,0,0,6,0,0,0,0,0,0,0,0
-2019F,AZ,RFTXP,84,69,54,30,104,37,54,75,71,119,86,127,201,382,421,186,472,805,528,195,154,56,173,6,15,31,38,17,32,6,18,186,93,174,45,69,84,14,20,27,23,27,29,0,33,21,17,22,0,0,0,6,0,0,0,0,0,0,0,0
-2019F,AZ,SGICP,0,0,0,0,0,0,0,0,0,0,0,36,89,25,36,35,57,68,70,68,66,50,78,0,0,0,0,0,0,158,164,159,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,76,76,59,52,44,42,63,85,57,30,39,31,19,24,90,100,109,59,34,29,19,137,145,136,128,295,271,281
-2019F,AZ,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,9,18,61,223,332,427,506,524,493,659,744,776
-2019F,AZ,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,14,13,9,15,14,16,81,951,2092,3118,3435,3742,4919,5127,5262
-2019F,AZ,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,7,31,51,69,83,147,170,17,24,14
-2019F,AZ,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,5,11,31,84,142,246,375,536,721,964,1241,1511,1798
-2019F,AZ,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,6,16,18,18,36,65,167,477,1580,2963,4243,4827,5369,6835,7406,7850
-2019F,AZ,TPOPP,1321,1407,1471,1521,1556,1584,1614,1646,1682,1737,1792,1896,2008,2124,2223,2285,2346,2425,2515,2636,2738,2810,2890,2969,3067,3184,3308,3437,3535,3622,3684,3789,3916,4065,4245,4432,4587,4737,4883,5024,5161,5273,5396,5510,5652,5839,6029,6168,6280,6343,6407,6473,6556,6635,6733,6833,6945,7048,7164,7292
-2019F,AZ,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13,-23,0,0,0,0,0,0,-42,-42,-52,-41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,51,54,55,55,64,58,56,49,44,46,41,39,39,40,38,32,28,18,25,22,22,29,26,22,23,16,20,17
-2019F,AZ,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,135,256,532,450,468,452,542,570,530,554
-2019F,AZ,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,AZ,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,135,256,532,450,468,452,542,570,530,554
-2019F,AZ,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,152,21,2,116,16,1,-31,3,7,-2,4,4,152,127,168,216,94,148,89,146,180,175,248,201,15,41,2,-17,-5,0,0,-8,-3,-7,-6,-4,-31,-24
-2019F,CA,ARICP,10665,11474,11766,12128,12571,11892,12071,11081,11864,13087,12084,12184,12228,13163,11908,13146,14082,14997,15350,21482,18431,9831,9818,11117,15262,13848,15373,16458,15343,14996,14862,14251,13558,12433,12237,12212,12399,11512,15572,20366,20359,18920,17856,13644,13808,13127,12130,15058,12499,7902,4992,9056,8113,9055,8646,9267,9215,9024,9104,8361
-2019F,CA,ARTCP,10665,11474,11766,12128,12571,11892,12071,11081,11864,13087,12084,12184,12228,13163,11908,13146,14082,14997,15350,21482,18431,9831,9818,11117,15262,13848,15373,16458,15343,14996,14862,14251,13558,12433,12237,12212,12399,11512,15572,20366,20359,18920,17856,13644,13808,13127,12130,15058,12499,7902,4992,9056,8113,9055,8646,9267,9215,9024,9104,8361
-2019F,CA,ARTXP,10665,11474,11766,12128,12571,11892,12071,11081,11864,13087,12084,12184,12228,13163,11908,13146,14082,14997,15350,21482,18431,9831,9818,11117,15262,13848,15373,16458,15343,14996,14862,14251,13558,12433,12237,12212,12399,11512,15572,20366,20359,18920,17856,13644,13808,13127,12130,15058,12499,7902,4992,9056,8113,9055,8646,9267,9215,9024,9104,8361
-2019F,CA,AVACP,5383,3438,4943,4366,3855,3342,3190,2832,2848,2358,2184,2036,2075,2038,1979,1640,1570,1647,1754,1682,285,132,1145,1167,1047,1354,1338,1084,1312,1303,1106,1091,1059,819,793,807,769,836,574,825,723,536,599,601,554,530,461,443,407,285,348,379,379,342,470,499,450,407,442,497
-2019F,CA,AVTCP,5383,3438,4943,4366,3855,3342,3190,2832,2848,2358,2184,2036,2075,2038,1979,1640,1570,1647,1754,1682,285,132,1145,1167,1047,1354,1338,1084,1312,1303,1106,1091,1059,819,793,807,769,836,574,825,723,536,599,601,554,530,461,443,407,285,348,379,379,342,470,499,450,407,442,497
-2019F,CA,AVTXP,5383,3438,4943,4366,3855,3342,3190,2832,2848,2358,2184,2036,2075,2038,1979,1640,1570,1647,1754,1682,285,132,1145,1167,1047,1354,1338,1084,1312,1303,1106,1091,1059,819,793,807,769,836,574,825,723,536,599,601,554,530,461,443,407,285,348,379,379,342,470,499,450,407,442,497
-2019F,CA,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,5,9,31,88,119,102,108,88,299,476,1426,1590,3011,3889,4048,4392,5039
-2019F,CA,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,5,9,31,88,119,102,108,88,299,476,1426,1590,3011,3889,4048,4392,5039
-2019F,CA,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,CLACP,23,10,6,6,7,8,6,5,5,4,4,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,CLCCP,3,2,2,2,3,5,6,6,4,44,48,2,2,0,1,0,0,0,3,3,3,2,2,2,28,41,0,0,5,9,20,36,0,116,141,116,156,97,103,24,21,0,0,0,8,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,CLEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,910,1187,1241,1363,1205,1057,853,822,903,943,939,897,970,890,924,873,899,961,993,879,892,812,539,259,278,0,0,0,0,0
-2019F,CA,CLICP,1313,2192,1471,1713,1992,2361,1907,1998,2115,2153,2215,1900,1767,2498,2266,2151,2611,2984,2728,2730,2665,3229,2862,1454,1635,1889,1865,1933,2203,2540,2874,2771,2821,2311,2332,2485,2414,2697,1885,2034,1992,1937,1973,1976,1914,1956,1870,1818,1688,1330,1419,1536,1323,1383,1399,1334,1389,1464,1438,1323
-2019F,CA,CLKCP,1286,2146,1430,1678,1960,2335,1868,1978,2100,2138,2202,1885,1757,2484,2230,1824,1896,1845,1556,1649,1510,1445,1295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,CLOCP,26,46,41,35,32,26,39,21,15,16,13,15,10,14,36,327,715,1139,1172,1082,1155,1784,1567,1454,1635,1889,1865,1933,2203,2540,2874,2771,2821,2311,2332,2485,2414,2697,1885,2034,1992,1937,1973,1976,1914,1956,1870,1818,1688,1330,1419,1536,1323,1383,1399,1334,1389,1464,1438,1323
-2019F,CA,CLRCP,4,3,4,2,4,6,8,7,5,56,61,2,2,0,0,0,0,0,1,1,1,0,0,0,6,12,0,0,1,2,5,8,0,26,25,17,21,12,13,3,3,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,CLTCP,1342,2208,1483,1723,2007,2379,1926,2016,2130,2257,2327,1906,1773,2500,2268,2151,2612,2984,2732,2734,2669,3231,2864,1456,1669,1942,1865,1934,2209,3052,3809,4002,4062,3816,3703,3675,3444,3628,2903,3005,2954,2834,2943,2866,2847,2849,2771,2779,2681,2209,2311,2347,1863,1643,1677,1334,1389,1464,1438,1323
-2019F,CA,CLTXP,1342,2208,1483,1723,2007,2379,1926,2016,2130,2257,2327,1906,1773,2500,2268,2151,2612,2984,2732,2734,2669,3231,2864,1456,1669,1942,1865,1934,2209,2551,2899,2816,2821,2453,2498,2618,2591,2805,2000,2061,2015,1937,1973,1976,1922,1976,1872,1818,1688,1330,1419,1536,1323,1383,1399,1334,1389,1464,1438,1323
-2019F,CA,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19776,19001,17975,14701,10359,12184,8389,7273,6715,4718,3647,3221,2506,2367,797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,DFACP,15313,15824,18453,20127,20777,21032,22150,23044,26654,29123,29448,35743,32654,35776,31762,30528,32930,36550,41759,41416,41801,44931,41786,43786,46926,49892,53105,46478,59753,58801,55598,55829,53885,49249,55744,57940,58960,62659,62554,64787,70525,71172,72375,69619,77767,81307,83608,85465,74509,73406,74360,75886,72945,75872,79756,80487,80218,82842,84010,83117
-2019F,CA,DFCCP,637,584,524,499,601,560,594,609,582,611,657,775,845,1004,714,647,826,969,1033,1415,3225,3733,4397,6850,8030,3416,5736,5831,5877,4669,4094,4428,2274,2360,2328,3164,2559,2487,2657,2745,3104,2838,2190,1796,1663,1968,1481,1834,2847,3511,4724,4191,3768,3492,3346,3641,3674,3736,3608,3477
-2019F,CA,DFEIP,120,116,86,79,86,83,97,91,95,99,107,226,-14,122,71,149,289,143,1439,2110,1582,1052,313,230,263,308,348,350,167,337,264,139,143,124,115,107,145,283,297,279,899,1372,224,255,233,241,201,169,175,116,76,63,61,62,66,67,65,68,66,68
-2019F,CA,DFICP,10127,10642,10399,11123,13207,13002,14264,13880,10817,8595,8510,10053,11958,14201,10684,10519,11136,13356,15197,20854,15576,17735,20695,17101,20048,17779,15235,15491,15945,16459,17076,14262,12660,13022,13969,11664,11865,14035,12849,14766,18686,21700,14644,10749,14218,13230,13861,11461,12718,10312,12203,13377,12976,12919,13895,13978,13140,13559,12205,11661
-2019F,CA,DFRCP,485,445,399,380,457,427,452,464,443,465,500,590,644,765,544,493,629,738,787,1077,94,72,72,127,149,144,243,242,212,244,202,198,229,229,229,175,148,159,169,171,241,293,147,121,142,156,153,96,145,389,162,109,64,96,94,77,76,71,81,83
-2019F,CA,DFTCP,26683,27612,29861,32208,35128,35105,37557,38088,38591,38892,39221,47387,46087,51869,43775,42335,45810,51755,60214,66872,62277,67523,67264,68093,75417,71538,74668,68393,81954,80510,77233,74857,69190,64985,72385,73050,73677,79624,78526,82748,93456,97376,89580,82540,94023,96902,99305,99024,90395,87734,91523,93626,89815,92440,97156,98250,97173,100277,99970,98407
-2019F,CA,DFTXP,26563,27495,29775,32130,35042,35021,37460,37998,38496,38794,39114,47161,46102,51746,43705,42186,45521,51612,58775,64762,60696,66471,66950,67863,75154,71230,74320,68043,81787,80173,76969,74717,69048,64861,72271,72943,73532,79340,78229,82470,92556,96004,89356,82285,93790,96661,99104,98855,90220,87618,91448,93562,89754,92378,97091,98183,97108,100209,99904,98339
-2019F,CA,ELEXP,400,440,457,445,23,3,0,0,0,0,11,11,0,1,0,0,0,0,0,0,13,35,0,7,68,143,114,89,145,559,524,168,25,46,101,228,283,352,1969,1264,2126,365,197,23,48,103,565,293,675,518,401,384,272,61,60,149,1582,459,5607,1956
-2019F,CA,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,44,6,34,131,4197,3895,7832,7431,4786,5142,3158,2098,2013,2157,1967,1512,1671,1352,1452,5507,3420,2067,4148,1291,5630,2936,5797,5370,3047,3474,6270,8875,11011,12369,13782,16968,14703,6331,6673
-2019F,CA,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,66087,71767,60974,48215,51419,56119,68518,81298,75114,75540,62165,72558,76698,73901,86931,77562,73427,77964,89522,81178,79647,83293,80661,80364,79719,79366,73317,65380,86660,70788
-2019F,CA,ELNIP,-400,-440,-457,-445,-23,-3,0,0,0,0,-11,-11,0,-1,0,0,0,0,0,0,89,8,6,27,63,4055,3780,7744,7286,4227,4618,2990,2073,1967,2056,1739,1228,1320,-617,188,3381,3055,1870,4126,1243,5527,2372,5505,4695,2529,3072,5885,8602,10950,12309,13633,15386,14243,724,4716
-2019F,CA,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,405,1091,1105,889,421,403,603,1171,1050,1114,1401,156,569,802,2499,2108,2113,1593,1386,1579,2175,2551,14204,20482,22595,22318,23488,23974,23659,36106,35103,33954,35016,35602,35648,36145,36491,36033,36115
-2019F,CA,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,8,5,3,3,5,7,6,7,8,1,0,1,2,2,2,1,1,1,2,2,10,15,16,17,17,18,18,27,27,26,28,27,1044,1041,1061,1071,1099
-2019F,CA,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,5,6,5,5,7,12,11,12,16,2,5,7,23,18,19,16,8,9,28,34,196,317,323,325,278,262,251,597,587,609,644,472,621,617,627,632,641
-2019F,CA,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,1103,1118,901,429,411,616,1189,1067,1133,1424,158,575,810,2523,2128,2134,1610,1395,1589,2205,2587,14411,20813,22935,22660,23783,24254,23928,36730,35717,34588,35688,36100,37313,37803,38179,37736,37856
-2019F,CA,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,ESACP,66,65,66,66,66,66,66,65,65,65,65,65,80,192,154,265,294,236,223,226,203,234,256,249,248,266,265,262,272,275,315,345,387,408,425,423,429,478,521,540,606,660,591,809,900,846,877,848,867,844,821,827,685,836,832,838,782,835,750,768
-2019F,CA,ESCCP,22039,26415,28283,29584,29663,29917,32695,33702,36822,37871,40634,42707,47471,49344,45950,57846,60701,60824,61291,62835,63465,67831,66415,62924,71379,73592,74727,77783,80737,83921,88311,86098,87849,86544,84529,86032,88605,92299,99067,95771,99900,107390,108972,109578,118953,117551,121255,123690,125026,121105,121152,122781,121792,116858,119494,118384,116775,117682,115786,114279
-2019F,CA,ESICP,20190,19657,18721,20387,25524,28904,32165,34521,37138,39766,42169,43995,46441,47015,42805,46053,49272,51185,51812,54108,51888,49551,47300,48153,51294,52972,52884,54387,54988,55596,55892,56191,57090,56189,59864,57367,57683,62017,61641,63217,64311,63041,48448,49909,48812,50242,50991,50538,51031,47835,49301,49936,46952,54397,52898,52562,50979,48627,49588,47808
-2019F,CA,ESRCP,14975,16249,17841,19493,21735,23800,25988,28695,30591,33766,35777,39068,41310,43496,42533,44257,45751,46555,49321,52421,52011,52798,51872,53873,56532,57501,57542,60368,64639,64347,66575,66017,68121,67359,68866,68783,71396,73086,75205,75303,79241,76668,77202,82926,83361,85610,89836,89158,91231,89799,87257,88398,90110,89242,89361,89386,88311,90124,89100,87524
-2019F,CA,ESRPP,944,985,1045,1103,1197,1281,1378,1496,1577,1713,1788,1920,2007,2084,2009,2055,2086,2083,2160,2254,2185,2174,2090,2124,2187,2175,2123,2173,2271,2202,2222,2167,2199,2154,2187,2170,2230,2250,2280,2248,2331,2224,2214,2352,2343,2389,2494,2460,2492,2430,2338,2349,2375,2333,2316,2298,2256,2291,2259,2219
-2019F,CA,ESTCP,57270,62386,64910,69530,76988,82687,90913,96983,104615,111468,118645,125835,135301,140046,131443,148421,156018,158800,162647,169590,167567,170414,165843,165199,179453,184331,185419,192800,200637,204139,211093,208650,213447,210500,213684,212605,218112,227880,236434,234831,244057,247759,235213,243221,252026,254250,262959,264235,268155,259584,258531,261942,259538,261332,262585,261170,256847,257268,255224,250379
-2019F,CA,ESTPP,3609,3782,3802,3935,4242,4449,4821,5058,5394,5655,5930,6185,6573,6711,6208,6891,7112,7104,7122,7292,7040,7017,6682,6514,6944,6971,6841,6941,7049,6987,7046,6848,6891,6731,6787,6707,6812,7015,7167,7010,7181,7186,6745,6899,7084,7096,7300,7289,7326,7023,6927,6960,6840,6832,6805,6713,6561,6540,6472,6349
-2019F,CA,ESTXP,57270,62386,64910,69530,76988,82687,90913,96983,104615,111468,118645,125835,135301,140046,131443,148421,156018,158800,162647,169590,167567,170414,165843,165199,179453,184331,185419,192800,200637,204139,211093,208650,213447,210500,213684,212605,218112,227880,236434,234831,244057,247759,235213,243221,252026,254250,262959,264235,268155,259584,258531,261942,259538,261332,262585,261170,256847,257268,255224,250379
-2019F,CA,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,FSICP,0,0,0,1055,1027,1193,1361,1237,1299,1371,1689,2149,1915,1551,1806,1926,2290,2452,2780,1816,2101,988,1153,1393,1676,1910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,GEEGP,33,94,100,168,204,189,188,316,436,615,525,548,1453,1966,2453,3246,3616,3582,2978,3889,5073,5686,4843,6075,7682,9197,10119,10599,10110,13679,14521,14785,14771,14948,13660,11450,12340,12716,12840,13046,12308,12181,13074,12982,13105,13023,12821,12991,12883,12853,12600,12552,12519,12307,12102,11883,11457,11560,11677,10914
-2019F,CA,HLACP,214,179,211,220,199,208,175,225,240,223,305,373,422,377,398,390,437,479,579,788,522,1082,983,1159,1717,1225,931,839,902,887,923,760,650,658,1006,564,481,349,670,384,341,390,501,510,478,842,868,760,1320,1013,188,185,232,237,199,207,219,158,152,138
-2019F,CA,HLCCP,1142,1156,1321,1432,1497,1541,1186,1402,1408,1539,1562,1633,1397,1304,1212,819,763,698,1165,1511,1487,1328,1342,1585,1334,1618,1244,1588,1753,1895,1739,2102,1452,1522,1498,1477,1233,1114,1842,1727,1611,1106,1287,2179,3076,2416,1792,2014,2600,2077,2246,2194,2228,2118,2531,2083,2856,2863,3262,3458
-2019F,CA,HLICP,4231,4333,4830,5197,4917,4826,5164,5668,6623,8761,9147,9423,11646,13477,15198,15688,15696,14106,14481,16482,12887,10874,10067,8933,13758,12977,14347,15310,15073,16435,12304,9658,14788,10073,11266,8489,5634,4169,3100,5068,5948,6367,9188,6665,4799,1752,3000,1913,4048,5733,5812,6298,6064,6006,6333,6161,5988,5734,5515,5675
-2019F,CA,HLRCP,3302,3343,3818,4139,4327,4454,3430,4054,4072,4450,4517,4722,4039,3769,3504,2367,2205,2018,3369,4368,4300,3839,3878,4583,3858,4677,3597,4591,5069,5480,5026,6077,4198,4401,4330,4269,3566,3222,5325,4992,4657,3197,3720,5334,6477,7365,6430,6819,8372,7859,8260,7828,5917,5942,4896,5500,5990,5753,6269,6755
-2019F,CA,HLTCP,8888,9012,10179,10987,10939,11029,9957,11349,12343,14973,15532,16151,17505,18926,20312,19264,19100,17300,19594,23149,19197,17123,16270,16259,20667,20497,20119,22328,22798,24697,19992,18596,21088,16655,18099,14798,10914,8854,10936,12171,12558,11060,14696,14689,14831,12375,12090,11505,16341,16682,16507,16505,14441,14303,13959,13951,15053,14508,15198,16026
-2019F,CA,HLTXP,8888,9012,10179,10987,10939,11029,9957,11349,12343,14973,15532,16151,17505,18926,20312,19264,19100,17300,19594,23149,19197,17123,16270,16259,20667,20497,20119,22328,22798,24697,19992,18596,21088,16655,18099,14798,10914,8854,10936,12171,12558,11060,14696,14689,14831,12375,12090,11505,16341,16682,16507,16505,14441,14303,13959,13951,15053,14508,15198,16026
-2019F,CA,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,12,4,4,11,5,12,11,8,0,0,1,0,5,7,13,0,0,7,5,3,5,4,3,12,19,11,14
-2019F,CA,HYEGP,17445,15368,22834,25334,22098,30523,26236,35277,27175,40418,38082,39018,31755,38754,46422,40103,23193,14251,37206,33920,40780,29764,50226,56885,43159,31717,41459,24564,23474,30801,23785,21950,20160,40481,23009,48029,44740,41049,49537,40726,38326,25542,31141,36370,34141,39626,48040,27314,24128,27888,33424,42553,26835,23749,16527,13805,28930,42344,26320,38341
-2019F,CA,HYICP,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,HYTCP,17445,15368,22835,25334,22098,30523,26236,35277,27175,40418,38082,39018,31755,38754,46422,40103,23193,14251,37206,33920,40780,29764,50226,56885,43159,31717,41459,24564,23474,30801,23793,21957,20167,40493,23013,48033,44751,41055,49548,40737,38334,25542,31141,36371,34141,39632,48047,27328,24128,27888,33431,42557,26837,23755,16531,13808,28942,42363,26331,38355
-2019F,CA,HYTXP,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,12,4,4,11,5,12,11,8,0,0,1,0,5,7,13,0,0,7,5,3,5,4,3,12,19,11,14
-2019F,CA,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CA,JFACP,25818,28078,31849,33606,36368,40150,44127,52666,60607,61225,59614,62721,63375,62752,60185,62509,60713,61331,63405,64910,62224,59074,56541,57359,66640,67028,75176,79857,82620,90291,94907,90064,86688,89244,98793,95304,103773,103188,105482,98673,103001,97216,102756,99721,105408,104612,106403,110794,100836,97985,77737,77849,78284,79875,82425,88561,96459,102712,104503,106201
-2019F,CA,JFTCP,25818,28078,31849,33606,36368,40150,44127,52666,60607,61225,59614,62721,63646,62947,60344,62607,61059,63229,64648,65874,63201,59089,56541,57359,66640,67028,75176,79857,82620,90291,94907,90064,86688,89244,98793,95304,103773,103188,105482,98673,103001,97216,102756,99721,105408,104612,106403,110794,100836,97985,77737,77849,78284,79875,82425,88561,96459,102712,104503,106201
-2019F,CA,JFTXP,25818,28078,31849,33606,36368,40150,44127,52666,60607,61225,59614,62721,63375,62752,60185,62509,60713,61331,63405,64910,62224,59074,56541,57359,66640,67028,75176,79857,82620,90291,94907,90064,86688,89244,98793,95304,103773,103188,105482,98673,103001,97216,102756,99721,105408,104612,106403,110794,100836,97985,77737,77849,78284,79875,82425,88561,96459,102712,104503,106201
-2019F,CA,KSCCP,46,154,109,73,77,95,89,183,334,445,510,542,623,408,673,650,623,947,1047,243,222,552,324,114,229,353,112,168,88,41,19,23,20,19,12,27,69,41,63,29,52,63,27,47,72,59,54,31,14,20,33,25,9,8,9,8,14,10,8,8
-2019F,CA,KSICP,956,879,851,789,889,692,748,551,157,219,328,325,319,377,1147,1166,1149,1558,1779,3103,1877,463,192,119,460,491,195,435,37,43,38,36,23,44,40,56,122,182,174,73,38,42,15,41,43,42,41,31,15,11,12,11,6,2,17,4,3,1,1,1
-2019F,CA,KSRCP,15,50,36,24,25,31,29,60,108,145,166,176,203,133,219,211,203,308,340,79,18,71,18,54,90,73,183,82,101,108,88,80,33,67,67,81,103,135,237,187,281,350,216,196,276,304,287,152,81,172,144,110,47,45,59,44,83,51,51,74
-2019F,CA,KSTCP,1017,1083,996,886,991,817,866,795,599,809,1004,1043,1145,918,2039,2027,1975,2813,3166,3425,2117,1086,534,286,778,916,491,685,225,192,145,139,75,131,120,164,294,358,474,288,371,455,258,284,391,404,382,215,109,203,189,147,62,55,85,56,100,62,59,82
-2019F,CA,KSTXP,1017,1083,996,886,991,817,866,795,599,809,1004,1043,1145,918,2039,2027,1975,2813,3166,3425,2117,1086,534,286,778,916,491,685,225,192,145,139,75,131,120,164,294,358,474,288,371,455,258,284,391,404,382,215,109,203,189,147,62,55,85,56,100,62,59,82
-2019F,CA,LUACP,2327,2265,2246,2245,2358,2772,2880,2657,2918,2412,2457,2497,2674,2553,2445,2386,2650,2802,3009,3149,2804,2689,2452,2567,2738,2552,2495,2821,2720,2790,2871,2568,2619,2666,2787,2739,2658,2808,2940,2971,2926,2681,2649,2449,2481,2468,2405,2483,2305,2073,2549,2388,2179,2276,2330,2571,2436,2265,2183,2105
-2019F,CA,LUICP,1454,1415,1441,1440,1513,1709,1776,1765,1939,1483,1510,1587,1699,2336,2238,1246,1384,2102,2257,2362,2103,2017,1839,1926,2053,1914,1871,2115,2040,2092,2153,1926,1964,2000,2090,2054,1994,2106,2205,2228,2194,2011,1987,1837,1861,1851,1804,1862,1729,1555,2062,1794,1700,1786,1817,1946,1895,1782,1724,1617
-2019F,CA,LUTCP,3781,3680,3687,3685,3870,4482,4656,4422,4857,3894,3967,4084,4373,4890,4683,3632,4035,4904,5266,5510,4907,4706,4291,4493,4791,4465,4366,4936,4760,4882,5024,4495,4583,4666,4877,4793,4652,4914,5145,5198,5120,4691,4636,4286,4342,4319,4208,4346,4035,3627,4611,4182,3879,4063,4148,4517,4330,4047,3907,3722
-2019F,CA,LUTXP,3781,3680,3687,3685,3870,4482,4656,4422,4857,3894,3967,4084,4373,4890,4683,3632,4035,4904,5266,5510,4907,4706,4291,4493,4791,4465,4366,4936,4760,4882,5024,4495,4583,4666,4877,4793,4652,4914,5145,5198,5120,4691,4636,4286,4342,4319,4208,4346,4035,3627,4611,4182,3879,4063,4148,4517,4330,4047,3907,3722
-2019F,CA,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6675,-6017,-4169,-1859,-5827,-8032,-3680,-1649,1563,1431,-625,1823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,MGACP,132768,138439,144190,154018,159526,166346,174862,180275,192577,201444,210641,216207,229837,237753,232563,238548,249108,262600,274031,265805,250100,249951,247203,253326,261804,262544,274637,287131,298870,305903,300893,293780,310861,305800,304669,310379,315285,319727,326430,335633,340681,347202,364493,362405,370084,375652,377390,376053,360261,352703,349136,339741,335807,339959,342712,342128,348830,350604,349108,343677
-2019F,CA,MGCCP,1406,1360,1383,1427,1498,1309,1611,1544,1404,1389,1482,1477,1496,1565,1604,1622,2042,2554,3073,2500,1795,1560,1449,1733,1511,1759,1755,2522,1773,1783,1928,1647,1485,262,226,236,231,233,250,236,237,246,253,262,271,274,285,280,277,268,263,260,256,268,257,10019,10049,10190,10377,10457
-2019F,CA,MGICP,2851,2738,2664,2565,2481,2245,2292,1913,1748,1521,1942,1542,1426,1472,1302,1338,1496,1134,1078,1118,1698,1402,1260,1080,1873,3065,3176,3256,2978,3232,3163,3271,3297,2664,2758,2849,2741,2910,3263,1922,1971,4533,4821,5009,5720,5375,5503,4448,3930,3742,5773,5677,6020,6256,4539,5962,5952,6026,6125,6103
-2019F,CA,MGTCP,137025,142537,148237,158010,163505,169900,178764,183733,195729,204354,214064,219227,232758,240789,235468,241508,252646,266288,278182,269423,253593,252914,249912,256139,265187,267368,279569,292909,303621,310918,305983,298698,315643,308726,307653,313464,318257,322871,329943,337791,342890,351981,369567,367675,376075,381301,383178,380780,364468,356713,355172,345678,342083,346483,347508,358108,364832,366820,365610,360237
-2019F,CA,MGTXP,137025,142537,148237,158010,163505,169900,178764,183733,195729,204354,214064,219227,232758,240789,235468,241508,252646,266288,278182,269423,253593,252914,249912,256139,265187,267368,279569,292909,303621,310918,305983,298698,315643,308726,307653,313464,318257,322871,329943,337791,342890,351981,369567,367675,376075,381301,383178,380780,364468,356713,355172,345678,342083,346483,347508,358108,364832,366820,365610,360237
-2019F,CA,MSICP,622,694,762,403,404,394,528,493,550,513,458,460,472,584,749,1008,970,1097,954,883,838,864,757,679,583,587,563,565,686,631,567,392,257,243,272,250,126,138,168,158,168,296,318,299,269,267,191,187,199,213,223,231,227,481,513,531,538,685,683,621
-2019F,CA,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,NGACP,10583,11710,15796,13562,16592,15647,29951,18414,16860,17269,16954,18676,18711,19740,18993,20277,15893,14898,14699,17880,15257,15079,12908,10225,11370,14406,12342,18946,19194,19203,20136,18518,15206,12355,12724,19784,19396,24023,10287,11443,12053,13626,12409,12089,16808,20186,16912,20008,19449,19188,23313,24936,27577,24592,38539,35520,41198,44350,43919,47251
-2019F,CA,NGCCP,108862,112774,124321,125467,141963,163532,170954,184630,189903,206861,209945,239685,231536,232774,228988,240239,219840,227543,221441,258490,258151,236910,236202,215918,191838,205044,182794,212904,248397,259118,285090,287608,285008,250283,261989,278761,235068,253923,282153,244701,246439,245795,238308,232912,231597,233082,244432,251024,251045,247775,247997,246141,253148,254845,237675,235791,236967,237352,248012,255981
-2019F,CA,NGEIP,322992,396563,396751,430326,518771,492701,596667,579952,684315,589545,636270,562827,605791,455526,292959,274562,295009,359051,302167,444601,518808,655334,533832,465066,573001,666274,444226,643335,552938,654648,628785,628535,762932,673065,810674,602903,525035,595822,649087,723171,893377,973327,726627,705343,770517,689169,770836,834286,857867,808928,736092,616564,855342,825713,831522,805933,666017,600988,616008,568341
-2019F,CA,NGICP,450562,456175,480907,533022,552837,528827,555404,606014,637366,672732,710753,697078,692216,721868,713464,666373,626238,628821,487453,498678,486173,462502,362582,345221,421346,432859,427654,556251,486786,527534,587918,706870,686797,699536,675938,697784,702307,793722,818655,791970,840531,719121,784853,821105,875921,822121,791763,797977,787599,771892,770837,752982,789496,828649,834167,822801,816878,803207,807353,808070
-2019F,CA,NGRCP,364804,375603,415484,416210,466607,489147,496189,522122,517636,562127,552544,630998,637289,615719,580009,631398,599631,541728,537412,590732,529342,488353,537194,498601,472151,527495,464307,503473,497138,514276,514507,508697,479537,500968,520959,477495,473310,478904,549931,568496,516730,512695,510995,497955,512046,483699,491777,492378,489304,480721,494890,512565,477931,481773,397489,401172,411828,431005,423915,464672
-2019F,CA,NGTCP,1257803,1352825,1433259,1518587,1696770,1689854,1849165,1911132,2046080,2048534,2126466,2149264,2185543,2045627,1834413,1832849,1756611,1772041,1563172,1810381,1807731,1858178,1682718,1535031,1669706,1846078,1531323,1934909,1804453,1974778,2036436,2150229,2229480,2136208,2282284,2076728,1955116,2146394,2310113,2339781,2509130,2464565,2273192,2269405,2406889,2248256,2315720,2395674,2405264,2328504,2273129,2153188,2403494,2415572,2339392,2301217,2172888,2116902,2139207,2144315
-2019F,CA,NGTPP,79.3,82,84,86,93.5,90.9,98.1,99.7,105.5,103.9,106.3,105.6,106.2,98,86.6,85.1,80.1,79.3,68.5,77.8,76,76.5,67.8,60.5,64.6,69.8,56.5,69.7,63.4,67.6,68,70.6,72,68.3,72.5,65.5,61.1,66.1,70,69.8,73.8,71.5,65.2,64.4,67.7,62.8,64.3,66.1,65.7,63,60.9,57.2,63.3,63.1,60.6,59.2,55.5,53.8,54.2,54.4
-2019F,CA,NGTXP,934811,956262,1036508,1088261,1177999,1197153,1252498,1331180,1361765,1458989,1490196,1586437,1579752,1590101,1541454,1558287,1461602,1412990,1261005,1365780,1288923,1202844,1148886,1069965,1096705,1179804,1087097,1291574,1251515,1320130,1407651,1521694,1466548,1463143,1471610,1473825,1430081,1550572,1661026,1616610,1615753,1491238,1546565,1564061,1636372,1559087,1544884,1561388,1547397,1519576,1537037,1536624,1548152,1589859,1507870,1495284,1506871,1515914,1523199,1575974
-2019F,CA,NUEGP,0,5,7,193,367,270,163,563,1505,2458,3132,3519,3175,2631,3698,6071,4807,8115,7659,8762,4920,3206,3735,5613,14144,19729,26215,30387,30863,32519,32693,31542,35244,31581,33752,30246,34097,30512,34594,33372,35176,33220,34352,35594,30268,36155,31959,35792,32482,31764,32201,36663,18507,17912,16986,18505,18908,17901,18214,16165
-2019F,CA,NUETP,0,5,7,193,367,270,163,563,1505,2458,3132,3519,3175,2631,3698,6071,4807,8115,7659,8762,4920,3206,3735,5613,14144,19729,26215,30387,30863,32519,32693,31542,35244,31581,33752,30246,34097,30512,34594,33372,35176,33220,34352,35594,30268,36155,31959,35792,32482,31764,32201,36663,18507,17912,16986,18505,18908,17901,18214,16165
-2019F,CA,OPICP,18924,18392,18945,19376,22475,23485,24027,23160,25126,27716,28210,27766,29270,28944,29339,28472,31806,35084,37355,36874,35631,20324,21349,46512,45518,41184,36514,37063,43457,39930,37825,29512,32722,28879,30515,27311,31775,30216,24967,25731,22865,31114,29979,32173,31146,33031,34013,32763,28970,26403,28661,29055,25883,29322,27433,27586,28320,28994,28651,29081
-2019F,CA,OPTCP,18924,18392,18945,19376,22475,23485,24027,23160,25126,27716,28210,27766,29270,28944,29339,28472,31806,35084,37355,36874,35631,20324,21349,46512,45518,41184,36514,37063,43457,39930,37825,29512,32722,28879,30515,27311,31775,30216,24967,25731,22865,31114,29979,32173,31146,33031,34013,32763,28970,26403,28661,29055,25883,29322,27433,27586,28320,28994,28651,29081
-2019F,CA,OPTXP,18924,18392,18945,19376,22475,23485,24027,23160,25126,27716,28210,27766,29270,28944,29339,28472,31806,35084,37355,36874,35631,20324,21349,46512,45518,41184,36514,37063,43457,39930,37825,29512,32722,28879,30515,27311,31775,30216,24967,25731,22865,31114,29979,32173,31146,33031,34013,32763,28970,26403,28661,29055,25883,29322,27433,27586,28320,28994,28651,29081
-2019F,CA,P1ICP,38766,38926,39502,37956,41103,41823,42949,39788,43849,46861,47012,46630,49329,52844,52127,51705,56319,62270,65276,75094,66101,40781,41509,66619,70742,67209,64704,66691,71887,69050,67262,58589,61286,55586,58863,56088,62317,59730,57964,63730,58589,65566,65196,60653,60641,61985,61277,62633,53724,45387,44227,49471,45869,50154,47939,47086,49422,49764,50335,49007
-2019F,CA,P1TCP,46536,44833,46836,44664,47418,48063,49137,45521,50057,52221,52329,51881,54904,57976,57443,56592,61366,67974,71427,80247,69430,44225,45449,70521,74846,71541,68833,70846,76108,73292,72164,63611,66499,60664,64474,62354,68815,66286,65189,70775,65890,72395,72040,67577,67499,69209,68041,69299,59587,50878,49459,54220,48844,52872,50850,50207,52405,52497,53019,51691
-2019F,CA,P1TXP,46536,44833,46836,44664,47418,48063,49137,45521,50057,52221,52329,51881,54904,57976,57443,56592,61366,67974,71427,80247,69430,44225,45449,70521,74846,71541,68833,70846,76108,73292,71345,62351,65016,59158,62523,59741,65917,63550,61779,67741,62571,69196,68688,63946,64025,65346,64483,65742,56531,47936,47301,52373,48482,52825,50807,50207,52405,52497,53019,51691
-2019F,CA,PAACP,220432,231969,237031,245107,256386,268960,284504,298108,321472,330868,332632,346221,351905,361646,346519,356057,375909,401295,430262,425595,424409,421308,402214,407634,429498,427934,444391,466000,493034,508693,510503,485959,487684,480840,501530,511776,520908,510840,515744,526496,551739,543814,573906,558664,584544,599335,608749,615649,579849,565985,544220,526152,516397,518309,521334,532961,551752,565207,567254,565056
-2019F,CA,PACCP,10515,10561,9876,9715,9951,9705,10500,9758,10501,10187,12842,13834,10600,11279,11565,8115,7984,9258,10175,9700,13540,18588,13003,10818,12458,7181,9810,11057,10314,9134,8661,8959,5274,4181,4072,4907,4105,3878,4871,4737,5005,4280,3758,4284,5082,4717,3613,4158,5738,5876,7266,6670,6260,5885,6143,15753,16594,16800,17254,17400
-2019F,CA,PAEIP,24051,23288,17156,15739,17237,16673,19393,18147,19005,19790,21696,34110,42070,76415,65095,78592,97476,127043,101162,101153,65222,46039,16140,11185,4738,4925,5680,3674,12631,15409,8252,2332,2107,4858,4920,3454,4027,3063,3717,3314,4304,5063,3616,3896,3707,4108,3775,3742,3239,3067,2242,1912,423,109,108,67,65,68,66,68
-2019F,CA,PAICP,66725,65600,67055,68129,74386,73742,77993,72957,75628,76377,78732,77782,83522,91211,88899,87558,93693,98296,103606,120573,108816,81617,81769,102492,128507,119763,112507,115325,114655,107865,101642,87531,93899,82865,88188,80556,82862,80946,77206,86055,85302,98500,94043,83129,85393,82354,83743,80464,74816,65180,68025,74830,70935,75341,72712,73233,74560,75102,74191,72456
-2019F,CA,PARCP,3802,3838,4253,4543,4809,4911,3912,4578,4623,5060,5182,5488,4886,4667,4267,3071,3037,3063,4496,5524,4413,3982,3968,4764,4097,4893,4024,4915,5382,5832,5316,6355,4459,4698,4626,4525,3817,3515,5731,5350,5179,3840,4084,5651,6896,7824,6870,7067,8598,8419,8565,8047,6029,6082,5049,5620,6149,5875,6400,6912
-2019F,CA,PATCP,325526,335255,335371,343232,362769,373992,396301,403547,431229,442283,451084,477436,492983,545217,516345,533392,578098,638956,649701,662545,616400,571534,517093,536893,579297,564695,576411,600970,636017,646932,634373,591136,593423,577441,603337,605219,615718,602242,607270,625953,651530,655498,679406,655623,685622,698338,706748,711081,672240,648527,630319,617610,600044,605727,605347,627634,649120,663051,665165,661893
-2019F,CA,PATPP,20.5,20.3,19.6,19.4,20,20.1,21,21,22.2,22.4,22.5,23.5,23.9,26.1,24.4,24.8,26.4,28.6,28.5,28.5,25.9,23.5,20.8,21.2,22.4,21.4,21.3,21.6,22.3,22.1,21.2,19.4,19.2,18.5,19.2,19.1,19.2,18.5,18.4,18.7,19.2,19,19.5,18.6,19.3,19.5,19.6,19.6,18.4,17.5,16.9,16.4,15.8,15.8,15.7,16.1,16.6,16.9,16.9,16.8
-2019F,CA,PATXP,301475,311968,318215,327494,345532,357319,376909,385400,412224,422493,429388,443325,450913,468802,451250,454801,480622,511912,548539,561392,551178,525495,500953,525707,574559,559771,570732,597296,623386,631523,626122,588804,591316,572584,598416,601765,611691,599179,603553,622639,647226,650434,675790,651727,681915,694230,702973,707338,669001,645460,628076,615698,599621,605617,605238,627567,649055,662983,665099,661825
-2019F,CA,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,1260,1483,1506,1951,2612,2898,2736,3410,3034,3319,3199,3352,3631,3474,3863,3558,3557,3055,2942,2158,1848,362,48,43,0,0,0,0,0
-2019F,CA,PCICP,6766,6766,6500,4223,3654,4045,4327,3231,4762,4357,4880,4767,5813,8023,7495,7675,7897,8528,8537,11273,8059,8145,8311,6946,7449,9773,10750,10620,11011,11989,12384,12863,13020,12230,13980,14455,16027,15714,15046,15332,13132,13479,15359,12958,13784,13934,13290,12919,10511,9517,8499,9554,10167,9988,10025,8283,9989,9963,10855,9948
-2019F,CA,PCTCP,6766,6766,6500,4223,3654,4045,4327,3231,4762,4357,4880,4767,5813,8023,7495,7675,7897,8528,8537,11273,8059,8145,8311,6946,7449,9773,10750,10620,11011,11989,13203,14123,14503,13736,15931,17067,18926,18450,18457,18366,16451,16678,18711,16589,17258,17797,16848,16476,13566,12459,10658,11402,10528,10036,10068,8283,9989,9963,10855,9948
-2019F,CA,PCTXP,6766,6766,6500,4223,3654,4045,4327,3231,4762,4357,4880,4767,5813,8023,7495,7675,7897,8528,8537,11273,8059,8145,8311,6946,7449,9773,10750,10620,11011,11989,12384,12863,13020,12230,13980,14455,16027,15714,15046,15332,13132,13479,15359,12958,13784,13934,13290,12919,10511,9517,8499,9554,10167,9988,10025,8283,9989,9963,10855,9948
-2019F,CA,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,188,185,232,237,199,207,219,158,152,138
-2019F,CA,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2246,2194,2228,2118,2531,2083,2856,2863,3262,3458
-2019F,CA,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3024,3509,3275,3217,3544,3372,3199,2945,2726,2886
-2019F,CA,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8260,7828,5917,5942,4896,5500,5990,5753,6269,6755
-2019F,CA,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13718,13716,11652,11514,11170,11162,12264,11719,12409,13237
-2019F,CA,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13718,13716,11652,11514,11170,11162,12264,11719,12409,13237
-2019F,CA,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2789,2789,2789,2789,2789,2789,2789,2789,2789,2789
-2019F,CA,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2789,2789,2789,2789,2789,2789,2789,2789,2789,2789
-2019F,CA,RFACP,38610,43746,35141,30525,33303,35109,37120,36408,35629,34084,27982,26643,20867,20397,17187,20056,28500,35888,45725,47845,66673,63449,52103,48269,48625,43340,36709,47791,46857,48719,54206,41867,31923,32403,37738,44043,38983,21272,17094,23223,33540,24617,30534,23358,27772,33924,37614,39652,40209,38519,39901,29724,26571,19747,13442,18509,23140,26219,26855,29320
-2019F,CA,RFCCP,7284,7306,6538,6284,6279,6200,7020,6018,6774,6202,8631,9407,6239,6998,7361,4377,3730,4090,3857,4031,6811,11415,5491,537,1354,35,962,948,823,745,882,759,42,18,8,4,12,2,59,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0
-2019F,CA,RFEIP,23931,23171,17070,15660,17150,16590,19296,18057,18910,19691,21589,33885,41814,76098,64866,78345,96841,125002,98480,98080,62663,44972,15827,10956,4475,4617,5332,3324,12464,15072,7169,933,482,3227,2854,734,983,44,10,2,86,492,40,11,0,4,15,17,9,9,8,1,0,0,0,1,0,0,0,0
-2019F,CA,RFICP,10750,8960,9660,11287,12678,11846,13324,11707,12590,10640,12121,10134,9162,9217,9588,8308,9046,7431,7575,7025,12554,10825,8236,8760,22086,18732,15045,14576,8772,2688,1838,1751,1868,1519,1332,1467,304,102,31,570,108,333,194,53,14,11,102,11,396,6,10,7,5,6,5,46,57,19,10,11
-2019F,CA,RFTCP,80575,83184,68409,63757,69410,69745,76760,72190,73903,70617,70324,80069,78082,112710,99002,111086,138117,172411,155636,156981,148701,130662,81658,68521,76540,66724,58047,66638,68917,67223,64095,45310,34315,37167,41932,46248,40283,21420,17194,23794,33734,25470,30768,23421,27786,33939,37731,39680,40614,38535,39920,29732,26576,19753,13448,18556,23198,26237,26865,29330
-2019F,CA,RFTXP,56644,60013,51339,48097,52260,53156,57464,54134,54992,50926,48735,46184,36268,36612,34136,32740,41276,47409,57156,58902,86038,85689,65830,57565,72065,62107,52716,63315,56452,52151,56926,44377,33833,33940,39078,45514,39299,21375,17184,23792,33648,24978,30728,23411,27786,33936,37715,39662,40605,38526,39912,29731,26576,19753,13448,18556,23198,26237,26865,29330
-2019F,CA,SGICP,17753,17154,17692,17447,17517,18087,18309,18180,19774,22012,22037,20874,22314,22060,22081,21474,23713,26643,27839,28341,27074,27633,30195,29141,27984,30374,34746,35287,36058,35806,34374,30124,30509,30513,30258,28690,29234,29087,28423,27967,28383,29760,29395,30315,30378,30467,30800,29652,28225,26765,27153,27105,24087,27112,26943,26057,26358,25661,26179,24837
-2019F,CA,SNICP,0,0,0,0,3083,3338,3440,2865,3070,3365,3569,3826,4096,4143,4110,3533,4123,4299,5169,5234,5033,3816,3553,4175,5581,4292,2976,3318,2613,2459,2454,1976,2348,2348,1820,1590,1272,1233,1830,2480,1661,1657,2161,1699,1077,1319,950,1058,1151,626,354,307,200,1031,1094,1024,965,1072,983,1021
-2019F,CA,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,14,16,17,19,21,24,28,31,35,41,47,56,67,78,97,145,193,256,393,461,557,704,1021,1148,1436,1543,1825,2455,3336,3778
-2019F,CA,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,11,14,10,9,250,367,471,399,462,486,497,521,511,502,495,493,542,554,534,571,537,495,557,670,647,765,861,1328,3727,9834,14711,18677,24214,26818,28140
-2019F,CA,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,4,5,5,6,7,8,9,10,12,15,17,21,32,57,78,126,165,233,337,551,655,841,1046,1388,1760,1899,2213
-2019F,CA,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,10,11,12,13,15,17,19,22,25,29,35,41,48,60,90,136,187,291,359,521,733,1012,1569,2494,3528,5147,6529,7851,9362
-2019F,CA,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,11,14,10,9,273,393,500,431,497,525,541,572,568,567,571,579,646,677,677,749,803,880,1078,1480,1633,2076,2635,3912,7099,14606,20829,27037,34958,39904,43493
-2019F,CA,TPOPP,15870,16497,17072,17668,18151,18585,18858,19176,19394,19711,20007,20346,20585,20869,21174,21538,21936,22352,22836,23257,23801,24286,24820,25360,25844,26441,27102,27777,28464,29218,29960,30471,30975,31275,31484,31697,32019,32486,32988,33499,33988,34479,34872,35253,35575,35828,36021,36250,36604,36961,37320,37636,37945,38254,38587,38904,39149,39338,39437,39438
-2019F,CA,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7086,-8946,-5050,-7990,-8797,-8994,-9365,-7002,-9512,-8867,-9793,-7706,-8703,-6046,-6690,-2364,-2130,-6395,-5771,-8098,-1576,-2812,-1024,-1529,58,1437,1304,-1062,-1474,531,1054,1007,304,-1474,-319,152,1336,541,2376
-2019F,CA,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CA,WXICP,549,543,490,471,445,474,389,384,432,455,457,458,472,606,594,530,710,594,612,599,585,642,502,546,541,553,539,577,598,589,587,725,769,826,838,838,973,875,847,749,662,831,736,710,704,718,621,519,454,290,405,358,363,402,360,301,313,243,297,250
-2019F,CA,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,5,6,6,6,6
-2019F,CA,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,3,3,4,1,2079,2759,2915,2864,2984,3387,3087,3079,3137,2758,3230,3518,3500,3803,3895,4306,4262,4883,5585,5385,5840,6079,7752,9754,12819,12988,12220,13498,12812,14013,13724
-2019F,CA,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,4,5,5,5,5
-2019F,CA,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,3,3,4,1,2079,2759,2915,2864,2984,3387,3087,3079,3137,2758,3230,3518,3500,3803,3895,4306,4262,4883,5585,5385,5840,6079,7752,9754,12822,12992,12230,13509,12823,14024,13735
-2019F,CA,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,9,11,11,11,11
-2019F,CO,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,4,1,0,-1,0,0,0,0,0,7,6,8,10,4,7,4,7,8,8,11,9,1,2,0,-1,0,0,0,0,0,0,0,0,-2,-1
-2019F,CO,ARICP,1617,1535,1554,1641,1567,1423,1647,1753,2430,2764,3220,2973,3087,3406,2666,2231,2541,2628,2222,2754,2284,1829,1620,1880,3089,3103,3091,3110,3552,2928,3257,3107,3190,3413,4188,3720,3904,2574,4749,2137,3870,2566,1219,4925,3865,2644,2640,3310,2092,2746,3790,2149,1981,2138,2398,2499,2466,1737,2423,2685
-2019F,CO,ARTCP,1617,1535,1554,1641,1567,1423,1647,1753,2430,2764,3220,2973,3087,3406,2666,2231,2541,2628,2222,2754,2284,1829,1620,1880,3089,3103,3091,3110,3552,2928,3257,3107,3190,3413,4188,3720,3904,2574,4749,2137,3870,2566,1219,4925,3865,2644,2640,3310,2092,2746,3790,2149,1981,2138,2398,2499,2466,1737,2423,2685
-2019F,CO,ARTXP,1617,1535,1554,1641,1567,1423,1647,1753,2430,2764,3220,2973,3087,3406,2666,2231,2541,2628,2222,2754,2284,1829,1620,1880,3089,3103,3091,3110,3552,2928,3257,3107,3190,3413,4188,3720,3904,2574,4749,2137,3870,2566,1219,4925,3865,2644,2640,3310,2092,2746,3790,2149,1981,2138,2398,2499,2466,1737,2423,2685
-2019F,CO,AVACP,1125,797,1457,1335,1363,1111,999,666,474,349,337,317,324,334,324,267,262,287,297,270,265,257,188,179,143,142,176,153,167,181,167,155,136,124,128,124,124,143,144,195,156,270,158,138,121,130,153,103,97,83,115,128,88,91,101,84,84,81,97,100
-2019F,CO,AVTCP,1125,797,1457,1335,1363,1111,999,666,474,349,337,317,324,334,324,267,262,287,297,270,265,257,188,179,143,142,176,153,167,181,167,155,136,124,128,124,124,143,144,195,156,270,158,138,121,130,153,103,97,83,115,128,88,91,101,84,84,81,97,100
-2019F,CO,AVTXP,1125,797,1457,1335,1363,1111,999,666,474,349,337,317,324,334,324,267,262,287,297,270,265,257,188,179,143,142,176,153,167,181,167,155,136,124,128,124,124,143,144,195,156,270,158,138,121,130,153,103,97,83,115,128,88,91,101,84,84,81,97,100
-2019F,CO,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,5,13,18,15,16,13,44,84,56,118,54,189,133,161,286
-2019F,CO,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,5,13,18,15,16,13,44,84,56,118,54,189,133,161,286
-2019F,CO,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,CLACP,25,7,6,6,6,6,5,4,4,2,3,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,CLCCP,105,111,135,112,123,137,147,116,124,138,101,114,127,113,69,15,38,58,164,173,79,78,105,68,102,122,81,62,73,51,46,53,48,31,19,17,12,57,16,90,71,259,201,240,200,122,60,12,288,285,264,139,10,5,6,3,1,0,0,0
-2019F,CO,CLEIP,1221,1386,1549,1823,1904,2181,2719,2977,2983,2877,3212,3077,3404,4379,4740,5710,7280,8837,8945,9515,10124,11781,12638,12193,13758,14295,14150,14178,15087,15686,16315,15804,16287,16634,17003,16581,17205,17505,18020,18042,19145,19765,19446,19596,19251,19013,19707,19533,18962,17351,18979,18744,19199,18822,17877,17529,16661,16628,15266,14515
-2019F,CO,CLICP,1438,1609,1508,1697,1627,1698,1661,1511,1676,1411,1657,1298,1667,1737,1652,1871,1669,1771,1418,1615,1757,1624,1109,730,856,791,773,748,679,643,729,738,735,780,857,729,367,728,392,429,427,311,202,281,293,300,286,233,233,140,341,149,281,339,373,355,285,295,179,187
-2019F,CO,CLKCP,855,1010,965,1151,1096,1318,1251,1036,1145,930,1036,928,1053,1160,1151,1064,1105,1089,832,1086,950,906,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,CLOCP,583,599,543,546,531,380,410,475,532,481,621,370,614,577,501,808,564,682,586,530,807,718,755,730,856,791,773,748,679,643,729,738,735,780,857,729,367,728,392,429,427,311,202,281,293,300,286,233,233,140,341,149,281,339,373,355,285,295,179,187
-2019F,CO,CLRCP,152,160,194,155,170,182,195,154,158,175,129,109,96,66,32,6,15,23,49,43,21,17,22,13,24,34,24,19,21,13,12,12,11,7,3,3,2,7,2,12,9,32,27,36,22,11,6,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,CLTCP,2940,3273,3392,3794,3829,4204,4727,4762,4944,4603,5101,4600,5295,6296,6494,7603,9003,10689,10576,11347,11981,13501,13875,13004,14740,15241,15029,15007,15860,16393,17102,16606,17081,17452,17882,17330,17586,18297,18429,18573,19652,20367,19877,20153,19766,19445,20059,19779,19483,17776,19584,19032,19490,19166,18257,17887,16947,16924,15445,14703
-2019F,CO,CLTXP,1719,1888,1843,1971,1925,2023,2008,1785,1961,1726,1889,1523,1891,1917,1754,1893,1723,1852,1631,1832,1857,1719,1236,811,982,947,878,829,773,707,787,803,794,818,880,748,381,793,409,531,507,602,431,557,515,432,352,246,522,425,605,288,291,344,380,358,287,296,179,187
-2019F,CO,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,15,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,DFACP,2146,2322,2162,2640,2216,1763,2184,2039,2716,2879,2655,2995,3563,4063,4471,4290,4872,5447,5723,7618,6554,5196,6125,6220,6050,6277,5911,6037,6311,6487,6884,7088,6660,7970,8165,8669,8613,7822,10179,10947,11435,13040,13506,14732,12974,13226,13981,14388,13344,13712,14599,14324,14309,13925,14856,14210,14053,14389,15477,15592
-2019F,CO,DFCCP,123,127,100,90,57,75,95,168,180,142,140,163,182,208,246,235,237,242,241,277,339,311,151,817,692,610,376,855,926,508,442,476,689,667,1028,703,732,892,867,812,605,632,497,312,323,625,658,447,504,1431,1008,1014,794,762,820,894,532,890,714,1068
-2019F,CO,DFEIP,10,9,8,6,5,4,4,4,10,21,22,31,50,136,243,619,446,233,342,460,273,194,191,144,84,113,96,90,57,70,50,35,48,28,33,28,35,38,85,71,190,338,52,70,30,43,44,65,36,25,37,43,23,18,30,15,17,18,28,20
-2019F,CO,DFICP,1768,1791,1728,1691,1719,1994,2168,2295,2440,2262,2228,2863,2870,3250,3557,3419,3598,3722,3642,3364,3983,2970,2704,3615,3060,2054,3195,2371,3356,2663,2712,2845,3596,3185,2635,2749,3058,3059,3366,3186,3274,3370,3333,3073,3270,3658,4270,4829,5998,3560,3651,3918,3979,4199,4909,4222,3399,4544,5540,5473
-2019F,CO,DFRCP,148,153,120,108,68,90,114,202,217,171,168,196,218,250,295,283,285,291,289,333,78,54,58,136,115,95,58,53,48,39,27,22,18,29,22,35,45,52,19,10,62,56,25,11,16,9,9,8,8,11,10,14,13,14,28,48,11,31,27,36
-2019F,CO,DFTCP,4194,4403,4118,4534,4065,3925,4564,4708,5564,5474,5212,6249,6883,7909,8813,8846,9439,9935,10238,12053,11228,8725,9228,10934,10001,9149,9636,9406,10699,9767,10116,10467,11011,11878,11882,12183,12483,11863,14517,15025,15566,17436,17412,18199,16614,17562,18962,19736,19891,18739,19306,19314,19119,18917,20642,19388,18011,19872,21787,22188
-2019F,CO,DFTXP,4185,4394,4110,4528,4060,3921,4560,4704,5554,5453,5190,6218,6833,7773,8570,8227,8993,9702,9896,11593,10954,8531,9037,10790,9917,9036,9541,9316,10642,9697,10066,10431,10963,11850,11850,12155,12448,11825,14431,14955,15376,17098,17360,18128,16584,17519,18919,19671,19854,18715,19269,19271,19096,18899,20612,19373,17995,19853,21758,22168
-2019F,CO,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,3,8,1,1,7,0,0,0,0,0
-2019F,CO,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,1,2,11,36,7,2,37,6,1,1,2,0,0,0,0,0,0,1,0,0,1,0
-2019F,CO,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1950,2911,2514,2892,3044,4136,4506,4982,5320,6093,4054,2044,5682,5148,4549,4269,4637,1727,2805,4222,5977,5717,5007,4272,3111,5323,3987,4410,4361,3420
-2019F,CO,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,1,2,11,36,7,2,37,6,1,0,-1,0,-3,-8,-1,-1,-7,1,0,0,1,0
-2019F,CO,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,128,180,437,150,51,121,200,225,235,370,604,580,884,1515,1496,1482,1256,1422,1921,1706,1976,1889,1066,953,1644,2098,2400,2943,3738,4021,4316,4303,5197,5535,5503,5519,5724
-2019F,CO,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,0,1,1,2,2,2,1,1,1,10,1,1,5,4,2,1,2,2,1,1,1,2,2,2,3,4,4,4,140,147,150,152,156
-2019F,CO,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,7,2,1,2,3,3,3,5,8,9,12,23,24,21,15,17,46,44,53,54,29,27,26,27,31,55,71,70,72,61,117,125,126,129,130
-2019F,CO,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,131,184,446,153,52,123,204,230,241,377,613,589,897,1547,1521,1504,1276,1443,1969,1751,2031,1944,1096,981,1672,2127,2433,3001,3812,4095,4392,4367,5454,5807,5779,5801,6011
-2019F,CO,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,4,5,5,5,9,11,37,37,19,19,25,44,49,44,46,50,52,62,64,64,65,73,93,114
-2019F,CO,ESCCP,1772,1849,2126,2496,2727,2842,3215,3383,3780,4185,4594,5000,5519,5981,6186,6276,5708,6064,6454,6867,7277,8360,9949,10609,11668,12344,12450,12638,13489,14116,14420,14609,14757,15278,13943,14300,15251,15506,16920,17915,19028,18836,19802,19657,19498,19846,20153,20508,20551,20008,19597,19889,19997,20098,20129,20408,20800,20641,21023,21111
-2019F,CO,ESICP,1289,1428,1311,1337,1440,1576,1732,1922,2039,2174,2334,2503,2699,2824,3349,4407,5646,6245,6506,6871,6900,6921,4680,4045,5376,5468,5848,6216,6295,6427,6587,6748,6849,7024,9620,9706,9947,10297,9998,9521,9955,10918,10672,11076,11675,12052,12605,13113,13822,13571,15172,15242,15415,14753,15110,15259,15103,15501,16047,15891
-2019F,CO,ESRCP,1776,1913,2054,2228,2433,2521,2699,2903,3221,3533,3859,4209,4668,5202,5385,5142,5351,5527,5948,6415,6693,8498,9064,9513,8669,8861,8863,9218,9551,9595,9787,10099,10216,10656,10939,11307,11871,12261,12652,13131,14029,14470,15425,15725,15532,16436,16952,17634,17720,17413,18102,18277,18220,18529,18093,18385,18834,18615,19287,19405
-2019F,CO,ESRPP,1004,1038,1081,1151,1235,1270,1345,1414,1519,1631,1736,1827,1941,2084,2119,1988,2033,2050,2150,2251,2301,2854,2960,3036,2735,2762,2738,2827,2928,2929,2959,2982,2922,2949,2937,2955,3028,3051,3073,3107,3242,3270,3435,3472,3395,3549,3591,3671,3624,3502,3586,3568,3508,3515,3380,3371,3397,3314,3385,3370
-2019F,CO,ESTCP,4837,5190,5491,6060,6599,6938,7646,8209,9039,9892,10787,11712,12886,14007,14921,15825,16706,17836,18908,20153,20870,23779,23692,24167,25713,26674,27161,28071,29335,30139,30795,31457,31822,32958,34502,35317,37073,38069,39574,40571,43020,44236,45937,46495,46724,48353,49734,51299,52142,51036,52918,53458,53685,53442,53397,54116,54802,54830,56450,56521
-2019F,CO,ESTPP,2735,2814,2892,3130,3350,3495,3810,3998,4264,4567,4853,5084,5359,5612,5871,6119,6346,6615,6834,7073,7175,7985,7738,7712,8111,8313,8390,8609,8992,9200,9310,9287,9103,9120,9264,9229,9457,9474,9613,9600,9942,9995,10230,10267,10213,10439,10536,10679,10664,10264,10484,10437,10337,10139,9976,9922,9885,9761,9909,9815
-2019F,CO,ESTXP,4837,5190,5491,6060,6599,6938,7646,8209,9039,9892,10787,11712,12886,14007,14921,15825,16706,17836,18908,20153,20870,23779,23692,24167,25713,26674,27161,28071,29335,30139,30795,31457,31822,32958,34502,35317,37073,38069,39574,40571,43020,44236,45937,46495,46724,48353,49734,51299,52142,51036,52918,53458,53685,53442,53397,54116,54802,54830,56450,56521
-2019F,CO,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,FSICP,0,0,0,33,33,38,42,39,35,38,46,59,56,42,50,67,59,66,40,33,54,37,36,44,67,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,HLACP,93,62,64,68,76,81,63,78,161,141,133,180,229,214,184,188,209,209,236,49,45,104,73,89,103,68,59,39,54,59,75,83,68,84,138,69,70,31,25,70,56,59,52,55,77,77,80,47,109,66,39,46,50,53,73,112,79,39,36,35
-2019F,CO,HLCCP,375,372,373,371,473,398,428,555,574,577,551,584,670,652,539,512,546,508,633,201,299,369,405,496,231,249,242,263,251,285,303,340,303,316,314,391,375,59,31,360,505,472,480,770,755,657,375,450,587,447,494,740,515,525,624,578,647,834,694,933
-2019F,CO,HLICP,593,553,579,570,585,641,615,674,888,982,953,1043,1310,1331,1400,1498,1644,1707,1579,2536,1860,1184,1881,1431,674,621,507,567,1000,1807,975,1203,1125,1284,1184,1294,1357,1536,1186,538,3108,3345,2389,2351,3116,1602,3624,2463,539,328,347,363,450,649,735,691,650,543,696,723
-2019F,CO,HLRCP,2092,2075,2079,2068,2637,2219,2390,3096,3201,3218,3073,3258,3739,3635,3006,2855,3045,2832,3531,1120,1666,2058,2260,2766,1290,1386,1352,1467,1400,1593,1693,1895,1688,1764,1753,2183,2095,329,171,2006,2815,2633,2676,3789,3221,3371,2672,3036,3605,3219,3218,3119,2903,3429,3130,2799,2889,2692,3022,3433
-2019F,CO,HLTCP,3153,3062,3096,3077,3771,3339,3496,4403,4824,4918,4710,5064,5949,5831,5129,5053,5445,5256,5979,3905,3870,3715,4618,4782,2298,2324,2161,2336,2705,3744,3045,3520,3184,3448,3390,3936,3897,1954,1413,2973,6484,6509,5597,6965,7169,5707,6751,5996,4840,4060,4099,4268,3917,4656,4562,4179,4265,4108,4447,5124
-2019F,CO,HLTXP,3153,3062,3096,3077,3771,3339,3496,4403,4824,4918,4710,5064,5949,5831,5129,5053,5445,5256,5979,3905,3870,3715,4618,4782,2298,2324,2161,2336,2705,3744,3045,3520,3184,3448,3390,3936,3897,1954,1413,2973,6484,6509,5597,6965,7169,5707,6751,5996,4840,4060,4099,4268,3917,4656,4562,4179,4265,4108,4447,5124
-2019F,CO,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,6,6,12,14,13,13
-2019F,CO,HYEGP,969,835,1015,1033,1055,937,997,927,943,992,1234,1584,1242,1281,1414,1506,1287,1071,1342,1611,1716,1398,1649,1870,2168,2357,2263,1818,1744,1752,1420,1794,1499,1912,1544,2131,1820,2032,1462,1562,1454,1495,1209,1262,1195,1415,1791,1730,2039,1886,1578,2083,1497,1206,1764,1614,1891,1883,1812,1798
-2019F,CO,HYICP,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,HYTCP,970,836,1016,1034,1056,938,998,928,944,993,1236,1585,1243,1281,1415,1507,1288,1072,1343,1612,1717,1399,1650,1871,2169,2357,2264,1818,1745,1752,1420,1794,1499,1912,1544,2131,1820,2032,1462,1562,1454,1495,1209,1262,1195,1415,1791,1730,2039,1886,1578,2083,1497,1213,1770,1620,1903,1897,1825,1811
-2019F,CO,HYTXP,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,6,6,12,14,13,13
-2019F,CO,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,JFACP,480,1654,2170,2280,2651,3426,4310,5422,6387,6876,7476,7687,7758,7717,7347,7151,7732,7900,8297,6047,4725,5494,5556,6134,8505,7861,8065,8372,6460,5337,6109,6503,7363,8959,7930,7428,7765,7177,6798,7800,7582,7718,7131,5652,12354,12320,12987,13530,13163,10842,12076,11791,11804,11571,11842,11506,12588,13439,13978,14516
-2019F,CO,JFTCP,480,1654,2170,2280,2651,3426,4310,5422,6387,6876,7476,7687,7758,7717,7347,7151,7732,7900,8297,6047,4725,5494,5556,6134,8505,7861,8065,8372,6460,5337,6109,6503,7363,8959,7930,7428,7765,7177,6798,7800,7582,7718,7131,5652,12354,12320,12987,13530,13163,10842,12076,11791,11804,11571,11842,11506,12588,13439,13978,14516
-2019F,CO,JFTXP,480,1654,2170,2280,2651,3426,4310,5422,6387,6876,7476,7687,7758,7717,7347,7151,7732,7900,8297,6047,4725,5494,5556,6134,8505,7861,8065,8372,6460,5337,6109,6503,7363,8959,7930,7428,7765,7177,6798,7800,7582,7718,7131,5652,12354,12320,12987,13530,13163,10842,12076,11791,11804,11571,11842,11506,12588,13439,13978,14516
-2019F,CO,KSCCP,66,71,52,99,157,376,391,373,208,197,148,103,85,77,52,48,49,48,58,33,6,9,23,27,8,15,13,27,14,157,10,11,7,7,5,5,6,5,9,9,8,10,10,10,12,31,16,5,3,4,5,3,1,2,2,1,1,0,1,1
-2019F,CO,KSICP,161,110,78,113,272,447,565,2079,1229,928,561,456,479,435,235,193,163,171,270,218,384,146,69,17,5,28,19,29,39,28,18,17,7,12,4,5,6,5,11,6,5,6,11,3,5,6,6,4,2,1,1,1,0,0,0,0,0,0,1,1
-2019F,CO,KSRCP,50,54,40,75,119,285,296,282,157,149,112,78,64,58,39,36,37,36,44,25,23,60,170,225,67,49,30,28,32,41,22,24,37,35,40,20,21,19,24,16,29,18,9,35,45,36,16,6,4,7,6,2,1,2,1,1,2,1,0,2
-2019F,CO,KSTCP,277,235,169,288,547,1108,1251,2734,1594,1275,822,638,628,571,327,278,249,255,371,276,413,215,262,269,80,92,62,85,85,226,50,51,51,53,48,29,33,29,44,32,41,34,29,49,62,72,39,15,9,12,11,6,2,4,3,2,3,1,2,4
-2019F,CO,KSTXP,277,235,169,288,547,1108,1251,2734,1594,1275,822,638,628,571,327,278,249,255,371,276,413,215,262,269,80,92,62,85,85,226,50,51,51,53,48,29,33,29,44,32,41,34,29,49,62,72,39,15,9,12,11,6,2,4,3,2,3,1,2,4
-2019F,CO,LUACP,280,272,281,281,295,286,297,260,286,281,286,286,306,336,322,302,336,402,432,452,402,386,352,369,393,366,358,405,390,400,412,369,376,383,400,393,382,403,422,426,420,385,380,352,356,354,345,356,331,298,368,347,323,335,356,382,362,333,327,317
-2019F,CO,LUICP,98,95,116,116,121,130,135,167,184,134,137,149,160,121,116,156,173,238,256,268,238,229,209,218,233,217,212,240,231,237,244,218,223,227,237,233,226,239,250,253,249,228,225,208,211,210,204,211,196,176,422,403,370,395,464,525,501,470,472,453
-2019F,CO,LUTCP,378,368,397,397,417,416,432,427,469,416,423,435,466,456,437,458,509,641,688,720,641,615,561,587,626,583,570,645,622,638,656,587,599,610,637,626,608,642,672,679,669,613,606,560,567,564,550,568,527,474,790,750,693,730,820,907,863,803,798,770
-2019F,CO,LUTXP,378,368,397,397,417,416,432,427,469,416,423,435,466,456,437,458,509,641,688,720,641,615,561,587,626,583,570,645,622,638,656,587,599,610,637,626,608,642,672,679,669,613,606,560,567,564,550,568,527,474,790,750,693,730,820,907,863,803,798,770
-2019F,CO,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-252,-186,-132,-74,-177,-252,-125,-54,55,52,-25,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,MGACP,15023,15714,16372,17009,17384,18097,18836,19555,21450,22819,24943,26489,28909,30393,29704,30948,31950,33211,35995,34401,33275,33743,34201,32824,32750,34986,35759,35471,35736,34751,34889,34837,35135,37374,38751,40757,42132,43026,44178,46339,46750,48425,47881,47399,49382,49893,50219,51385,49644,49731,50141,49410,49468,50647,51697,52255,53495,53012,53468,54470
-2019F,CO,MGCCP,135,147,121,123,178,186,180,209,142,124,124,154,134,154,112,109,117,118,117,137,312,288,315,282,357,176,191,191,176,164,265,336,161,35,51,58,265,37,38,166,128,40,41,41,41,41,42,43,43,43,42,43,43,45,42,1411,1425,1447,1477,1488
-2019F,CO,MGICP,1303,1266,1443,1206,1111,1039,1122,1121,1072,1028,1036,1017,976,975,963,860,879,983,774,730,695,594,583,502,504,580,555,532,477,505,408,503,494,504,583,541,631,681,625,564,546,1171,1229,1268,1401,1378,1441,810,643,641,945,944,867,847,734,1171,1207,1217,1254,1242
-2019F,CO,MGTCP,16461,17128,17936,18338,18672,19321,20138,20885,22663,23970,26103,27660,30020,31522,30779,31916,32947,34312,36885,35268,34282,34625,35099,33608,33612,35742,36504,36195,36389,35420,35562,35676,35790,37913,39385,41357,43028,43744,44841,47069,47424,49636,49151,48708,50824,51312,51702,52238,50330,50415,51128,50397,50378,51539,52473,54838,56127,55675,56199,57200
-2019F,CO,MGTXP,16461,17128,17936,18338,18672,19321,20138,20885,22663,23970,26103,27660,30020,31522,30779,31916,32947,34312,36885,35268,34282,34625,35099,33608,33612,35742,36504,36195,36389,35420,35562,35676,35790,37913,39385,41357,43028,43744,44841,47069,47424,49636,49151,48708,50824,51312,51702,52238,50330,50415,51128,50397,50378,51539,52473,54838,56127,55675,56199,57200
-2019F,CO,MSICP,24,27,29,16,16,15,33,31,34,32,29,11,12,14,18,25,102,115,100,93,88,41,36,32,27,28,0,0,0,0,0,0,0,0,0,0,8,9,11,10,11,12,13,13,11,11,15,14,15,16,17,18,17,45,48,49,50,52,52,47
-2019F,CO,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,NGACP,1238,2061,1383,1667,1290,1906,1446,1615,1687,1806,1863,1867,2994,2580,2464,5339,6641,6806,4859,7033,7557,6689,8836,8112,7335,7137,6680,8688,7875,11228,9125,8361,8347,7740,10130,11467,11117,12722,9617,8850,9800,10773,11511,10378,11034,13470,13090,13990,16027,17315,14344,14234,11078,9376,9743,9290,7532,8116,10684,10246
-2019F,CO,NGCCP,28498,30895,31919,31649,38463,39275,41983,39942,47287,52256,59081,62805,63154,69844,68322,76288,75959,72597,71422,74831,66952,58913,66991,64615,71890,68975,61620,64355,68515,67477,66290,68938,66420,71647,65870,66639,68914,69074,63132,59346,60874,65011,66939,62616,61956,62099,59851,63231,65806,62441,57658,55843,51795,58787,58008,53968,54265,52735,55887,61755
-2019F,CO,NGEIP,37015,36648,32395,33649,37692,35539,37713,36533,43063,48044,51194,60187,66933,58820,66245,52930,42168,34276,29440,35409,31928,13593,6045,4526,4899,4913,4650,7826,8488,13289,12897,13191,12245,12278,19020,22656,25898,26802,32640,40879,63253,85954,78171,77895,83369,92629,92927,123788,106454,115234,92657,85015,86309,89508,96589,92304,96923,97536,125894,130775
-2019F,CO,NGICP,69324,78397,72598,76246,85168,82120,67158,78067,86412,89263,87595,79646,87435,94309,84216,73282,70161,68590,70053,77248,60226,57575,58431,52386,52083,47763,43745,43016,49819,63569,66295,80059,78748,93856,84448,85410,98395,90335,114065,112303,117678,178487,173948,161152,163445,177867,165694,172795,182550,199743,205468,181472,178873,175191,182540,188981,160336,161165,165120,175261
-2019F,CO,NGRCP,52295,55740,57174,55430,65952,65374,79184,75351,78371,81068,82595,84864,89187,98454,91809,99933,107355,99946,92064,97751,89700,75010,84688,84173,93439,90154,81151,86263,92888,91567,91916,97440,94614,106187,99504,104286,110924,115583,110839,111748,116363,123514,128828,124214,120574,124255,119270,130971,133947,128993,131224,130116,115695,134936,132106,122364,121963,118585,128150,142692
-2019F,CO,NGTCP,188370,203741,195469,198641,228565,224214,227484,231508,256820,272437,282328,289369,309703,324007,313056,307772,302284,282215,267838,292272,256363,211780,224991,213812,229646,218942,197846,210148,227585,247129,246523,267989,260373,291708,278971,290458,315248,314517,330293,333127,367967,463738,459397,436254,440378,470321,450832,504775,504784,523726,501351,466680,443750,467798,478986,466907,441019,438137,485735,520729
-2019F,CO,NGTPP,106.5,110.5,102.9,102.6,116,113,113.3,112.8,121.1,125.8,127,125.6,128.8,129.8,123.2,119,114.8,104.7,96.8,102.6,88.1,71.1,73.5,68.2,72.4,68.2,61.1,64.5,69.8,75.4,74.5,79.1,74.5,80.7,74.9,75.9,80.4,78.3,80.2,78.8,85,104.8,102.3,96.3,96.3,101.5,95.5,105.1,103.2,105.3,99.3,91.1,85.4,88.8,89.5,85.6,79.6,78,85.3,90.4
-2019F,CO,NGTXP,151355,167093,163074,164992,190873,188675,189771,194975,213757,224393,231134,229182,242770,265187,246811,254842,260116,247939,238398,256863,224435,198187,218946,209286,224747,214029,193196,202322,219097,233840,233626,254798,248129,279430,259951,267802,289349,287715,297654,292247,304715,377784,381226,358359,357009,377692,357905,380987,398330,408492,408694,381665,357441,378290,382397,374603,344096,340601,359841,389954
-2019F,CO,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,609,213,667,749,569,748,55,-32,52,174,660,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,609,213,667,749,569,748,55,-32,52,174,660,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,OPICP,564,575,611,611,690,729,766,748,725,802,806,779,862,788,826,958,881,1013,675,774,961,740,669,869,1024,733,654,856,974,1052,1054,908,1259,1128,1220,1152,1459,1437,1232,1267,1104,1363,1261,1373,1333,1515,1550,1496,1431,1419,1561,1591,1629,1610,1486,1500,1535,1559,1531,1551
-2019F,CO,OPTCP,564,575,611,611,690,729,766,748,725,802,806,779,862,788,826,958,881,1013,675,774,961,740,669,869,1024,733,654,856,974,1052,1054,908,1259,1128,1220,1152,1459,1437,1232,1267,1104,1363,1261,1373,1333,1515,1550,1496,1431,1419,1561,1591,1629,1610,1486,1500,1535,1559,1531,1551
-2019F,CO,OPTXP,564,575,611,611,690,729,766,748,725,802,806,779,862,788,826,958,881,1013,675,774,961,740,669,869,1024,733,654,856,974,1052,1054,908,1259,1128,1220,1152,1459,1437,1232,1267,1104,1363,1261,1373,1333,1515,1550,1496,1431,1419,1561,1591,1629,1610,1486,1500,1535,1559,1531,1551
-2019F,CO,P1ICP,2551,2426,2487,2611,2800,2893,3267,4903,4729,4714,4929,4523,4763,4916,4048,3619,3863,4395,3623,4144,4127,2999,2773,3224,4612,4365,4233,4491,5067,4515,4870,4574,4980,5092,5987,5440,5936,4600,6640,4091,5630,4596,3133,6893,5836,4798,4824,5478,4147,4838,6274,4661,4482,4711,4882,5047,4986,4285,4945,5187
-2019F,CO,P1TCP,4072,3620,4317,4401,4734,4951,5250,6484,5853,5690,5813,5308,5542,5721,4786,4272,4548,5168,4453,4923,4823,3711,3506,4023,5223,4937,4810,5104,5671,5295,5481,5132,5535,5641,6559,5981,6468,5169,7238,4738,6243,5280,3691,7428,6370,5349,5355,5948,4581,5230,6767,5140,4895,5141,5341,5514,5435,4699,5370,5606
-2019F,CO,P1TXP,4072,3620,4317,4401,4734,4951,5250,6484,5853,5690,5813,5308,5542,5721,4786,4272,4548,5168,4453,4923,4823,3711,3506,4023,5223,4937,4810,5104,5671,5295,5481,5132,5535,5641,6559,5981,6468,5169,7238,4738,6243,5280,3691,7428,6370,5349,5355,5948,4581,5230,6767,5140,4895,5141,5341,5514,5435,4699,5370,5606
-2019F,CO,PAACP,19284,21038,22704,23836,24681,25476,27181,28403,31687,33553,35929,38005,41120,43114,42459,43250,45503,47560,51087,48839,45267,45179,46495,45831,47954,49845,50328,50477,49118,47216,48535,49035,49738,54894,55513,57440,59085,58602,61747,65776,66400,69897,69108,68328,75264,76000,77766,79809,76688,74732,77339,76045,76041,76622,78924,78549,80661,81292,83382,85030
-2019F,CO,PACCP,755,789,724,764,931,1083,1141,1340,1145,1099,1001,1046,1119,1142,1018,979,1042,1006,1148,661,959,980,898,1628,1292,1050,895,1336,1368,1120,1020,1162,1160,1025,1398,1157,1378,992,948,1348,1245,1155,1027,1134,1131,1353,1091,944,1137,1925,1550,1801,1354,1333,1487,2884,2605,3171,2886,3490
-2019F,CO,PAEIP,116,112,95,74,57,43,49,53,124,252,264,310,532,763,787,1501,1086,672,898,871,444,198,192,194,89,121,96,90,84,71,50,82,85,28,33,36,51,38,85,72,197,339,52,70,31,43,72,65,36,25,37,43,23,18,30,15,17,18,28,20
-2019F,CO,PAICP,7798,8221,8420,8336,8030,7821,8375,9911,10315,10631,10273,10668,11326,12023,12299,11723,12944,13420,12783,11277,12304,7876,7949,9031,9009,7659,8664,7995,9905,9505,8978,9159,10199,10076,10391,10023,10986,9878,11817,8380,12558,12486,10084,13585,13623,11437,14160,13580,11329,9367,11216,9885,9778,10406,11260,11130,10242,10589,12436,12624
-2019F,CO,PARCP,2289,2282,2238,2251,2824,2594,2800,3580,3575,3538,3353,3532,4022,3944,3341,3174,3367,3159,3864,1478,1768,2172,2487,3128,1472,1531,1440,1548,1480,1674,1743,1941,1743,1828,1814,2238,2160,399,213,2033,2906,2707,2710,3835,3282,3416,2698,3050,3617,3238,3234,3136,2917,3444,3159,2848,2902,2724,3049,3470
-2019F,CO,PATCP,30242,32441,34181,35261,36523,37017,39547,43287,46846,49073,50820,53561,58118,60987,59905,60626,63943,65818,69780,63126,60742,56406,58022,59812,59817,60207,61423,61447,61954,59585,60326,61378,62924,67851,69149,70893,73660,69910,74811,77609,83306,86584,82981,86952,93331,92250,95786,97448,92807,89286,93376,90911,90113,91823,94860,95426,96427,97794,101781,104634
-2019F,CO,PATPP,17.1,17.6,18,18.2,18.5,18.6,19.7,21.1,22.1,22.7,22.9,23.3,24.2,24.4,23.6,23.4,24.3,24.4,25.2,22.2,20.9,18.9,19,19.1,18.9,18.8,19,18.8,19,18.2,18.2,18.1,18,18.8,18.6,18.5,18.8,17.4,18.2,18.4,19.3,19.6,18.5,19.2,20.4,19.9,20.3,20.3,19,18,18.5,17.7,17.4,17.4,17.7,17.5,17.4,17.4,17.9,18.2
-2019F,CO,PATXP,30126,32329,34086,35187,36467,36974,39498,43234,46722,48821,50556,53251,57586,60224,59118,59125,62856,65145,68882,62255,60298,56207,57829,59618,59727,60086,61327,61356,61871,59514,60276,61296,62840,67823,69116,70858,73610,69872,74726,77537,83109,86245,82929,86882,93300,92207,95715,97383,92770,89261,93339,90868,90090,91805,94830,95412,96410,97776,101752,104614
-2019F,CO,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,PCICP,111,111,128,130,150,164,154,155,160,85,205,165,175,165,205,80,105,345,200,130,260,55,206,238,262,284,257,256,271,269,297,323,301,313,338,330,341,345,397,428,402,434,417,384,422,423,424,457,425,496,499,517,502,568,533,523,484,519,519,497
-2019F,CO,PCTCP,111,111,128,130,150,164,154,155,160,85,205,165,175,165,205,80,105,345,200,130,260,55,206,238,262,284,257,256,271,269,297,323,301,313,338,330,341,345,397,428,402,434,417,384,422,423,424,457,425,496,499,517,502,568,533,523,484,519,519,497
-2019F,CO,PCTXP,111,111,128,130,150,164,154,155,160,85,205,165,175,165,205,80,105,345,200,130,260,55,206,238,262,284,257,256,271,269,297,323,301,313,338,330,341,345,397,428,402,434,417,384,422,423,424,457,425,496,499,517,502,568,533,523,484,519,519,497
-2019F,CO,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39,46,50,53,73,112,79,39,36,35
-2019F,CO,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,494,740,515,525,624,578,647,834,694,933
-2019F,CO,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,347,363,450,649,735,691,650,543,696,723
-2019F,CO,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3218,3119,2903,3429,3130,2799,2889,2692,3022,3433
-2019F,CO,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4099,4268,3917,4656,4562,4179,4265,4108,4447,5124
-2019F,CO,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4099,4268,3917,4656,4562,4179,4265,4108,4447,5124
-2019F,CO,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CO,RFACP,137,216,196,222,695,713,492,383,213,209,99,51,30,57,106,104,141,103,107,3,0,0,0,16,10,146,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,RFCCP,56,71,79,81,67,49,47,35,41,59,38,42,47,51,70,75,92,91,100,13,3,3,5,6,4,1,72,0,0,6,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,RFEIP,106,103,87,68,52,40,45,49,114,231,242,279,482,627,544,882,640,439,556,411,171,4,2,50,6,8,0,0,26,1,0,46,37,0,0,8,16,0,0,1,7,1,0,0,1,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,RFICP,1583,2184,2184,2259,1815,1254,1204,918,1186,1645,1128,1222,1408,1552,2331,2327,2959,2613,3165,502,1640,129,9,259,158,40,174,34,5,14,13,34,4,11,1,0,4,3,0,1,0,4,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,RFTCP,1883,2575,2545,2631,2630,2056,1788,1385,1555,2144,1507,1593,1966,2286,3050,3388,3833,3246,3928,929,1814,136,15,330,177,194,246,34,32,21,13,80,41,11,3,8,20,3,3,3,7,5,0,0,1,0,29,0,3,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,RFTXP,1776,2472,2458,2563,2578,2016,1743,1336,1440,1913,1265,1315,1485,1659,2507,2506,3192,2807,3372,518,1643,132,13,281,172,187,246,34,5,20,13,34,4,11,3,0,4,3,3,2,0,4,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,SGICP,531,539,573,554,555,581,562,569,537,603,595,577,654,590,616,745,615,722,404,515,691,1044,932,924,1112,925,1088,1195,1177,1255,1247,1207,1395,1386,1360,1339,1350,1327,1275,1241,1250,1339,1285,1329,1318,1428,1432,1389,1444,1468,1492,1495,1527,1488,1459,1414,1424,1397,1412,1340
-2019F,CO,SNICP,0,0,0,0,79,86,115,96,102,112,119,131,141,142,141,121,105,109,131,133,128,133,123,145,194,149,92,102,81,76,76,51,60,60,47,41,93,91,135,182,122,26,33,26,17,20,0,0,0,0,0,0,0,34,36,34,32,20,18,19
-2019F,CO,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,24,38,68,110,141,155,187,192,209,225,235,236
-2019F,CO,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,18,26,42,92,150,234,241,238,522,942,1050,1203
-2019F,CO,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2
-2019F,CO,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,6,17,29,49,65,88,124,177,210,265,317,366,411
-2019F,CO,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,3,9,59,93,160,268,381,515,606,643,999,1485,1653,1852
-2019F,CO,TPOPP,1769,1844,1899,1936,1970,1985,2007,2053,2120,2166,2223,2304,2405,2496,2541,2586,2632,2696,2767,2849,2909,2978,3062,3134,3170,3209,3237,3260,3262,3276,3308,3387,3496,3614,3724,3827,3920,4018,4117,4226,4327,4426,4490,4529,4575,4632,4720,4804,4890,4972,5048,5122,5194,5271,5353,5454,5544,5617,5697,5758
-2019F,CO,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-268,-276,-160,-318,-268,-282,-317,-228,-333,-322,-393,-352,-395,-272,-312,-109,-97,-287,-256,-357,-71,-123,-45,-66,3,67,61,-54,-81,29,58,64,17,-80,-17,8,73,29,128
-2019F,CO,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CO,WXICP,9,9,8,8,7,8,15,15,16,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,72,77,78,78,108,97,94,83,74,50,44,43,42,43,36,30,26,17,24,21,21,27,24,20,21,18,22,18
-2019F,CO,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,5,0,4,1,1,0,2
-2019F,CO,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,139,147,220,776,866,1292,3221,3164,3452,5192,5960,7196,7365,7469,9417,9310,9742,10848
-2019F,CO,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3
-2019F,CO,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,139,147,220,776,866,1292,3221,3164,3452,5200,5969,7204,7369,7475,9421,9315,9745,10852
-2019F,CO,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,8,4,7,5,4,3,4
-2019F,CT,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,ARICP,1088,973,1206,1006,896,1326,1191,1057,1211,1280,1019,1223,1458,1570,1099,1262,1119,915,1138,846,630,784,785,737,934,2095,2124,2139,1853,1797,1585,1976,1678,1577,1676,1911,1572,1217,552,666,671,703,677,1661,1751,2083,1667,980,65,1852,1859,1638,1349,1667,1580,1092,1536,1695,1602,1534
-2019F,CT,ARTCP,1088,973,1206,1006,896,1326,1191,1057,1211,1280,1019,1223,1458,1570,1099,1262,1119,915,1138,846,630,784,785,737,934,2095,2124,2139,1853,1797,1585,1976,1678,1577,1676,1911,1572,1217,552,666,671,703,677,1661,1751,2083,1667,980,65,1852,1859,1638,1349,1667,1580,1092,1536,1695,1602,1534
-2019F,CT,ARTXP,1088,973,1206,1006,896,1326,1191,1057,1211,1280,1019,1223,1458,1570,1099,1262,1119,915,1138,846,630,784,785,737,934,2095,2124,2139,1853,1797,1585,1976,1678,1577,1676,1911,1572,1217,552,666,671,703,677,1661,1751,2083,1667,980,65,1852,1859,1638,1349,1667,1580,1092,1536,1695,1602,1534
-2019F,CT,AVACP,104,103,124,172,166,172,165,135,152,140,124,111,112,113,107,90,79,111,100,87,89,77,60,66,63,71,72,55,48,40,94,28,28,30,28,41,37,23,52,32,30,78,52,45,59,187,127,126,98,139,88,83,77,65,26,22,20,19,20,23
-2019F,CT,AVTCP,104,103,124,172,166,172,165,135,152,140,124,111,112,113,107,90,79,111,100,87,89,77,60,66,63,71,72,55,48,40,94,28,28,30,28,41,37,23,52,32,30,78,52,45,59,187,127,126,98,139,88,83,77,65,26,22,20,19,20,23
-2019F,CT,AVTXP,104,103,124,172,166,172,165,135,152,140,124,111,112,113,107,90,79,111,100,87,89,77,60,66,63,71,72,55,48,40,94,28,28,30,28,41,37,23,52,32,30,78,52,45,59,187,127,126,98,139,88,83,77,65,26,22,20,19,20,23
-2019F,CT,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,6,19,25,22,23,19,63,52,259,235,281,413,434,257,197
-2019F,CT,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,6,19,25,22,23,19,63,52,259,235,281,413,434,257,197
-2019F,CT,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,CLACP,15,4,3,3,3,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,CLCCP,79,66,63,54,43,35,30,27,22,20,19,21,18,19,19,16,15,15,13,11,13,30,23,18,33,29,28,19,9,9,10,11,16,11,10,22,5,7,6,4,4,4,4,3,4,5,3,3,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,CLEIP,2776,3088,3333,3493,3750,4097,4428,3457,2669,2117,1875,1422,94,29,186,4,11,10,16,9,0,0,0,0,13,774,763,787,854,890,1480,1483,1491,1431,1471,1569,1600,1738,1265,614,1473,1623,1508,2051,2132,2070,2245,1936,2221,1196,1366,325,415,419,499,359,128,137,221,48
-2019F,CT,CLICP,866,815,745,828,765,776,784,753,527,274,142,93,59,53,62,29,17,18,1,22,0,1,3,8,5,4,8,3,16,2,1,3,12,30,29,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,CLKCP,462,481,463,479,472,471,461,474,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,CLOCP,404,335,282,349,293,306,323,280,367,274,142,93,59,53,62,29,17,18,1,22,0,1,3,8,5,4,8,3,16,2,1,3,12,30,29,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,CLRCP,114,95,90,74,59,46,40,36,28,25,24,20,13,11,9,7,6,6,4,3,3,7,5,3,8,8,9,6,2,2,2,2,4,2,2,3,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,CLTCP,3851,4067,4233,4452,4620,4957,5285,4276,3248,2437,2060,1555,184,112,276,55,49,48,33,44,16,38,31,29,59,815,809,815,881,903,1493,1499,1523,1474,1512,1594,1606,1745,1272,619,1477,1627,1512,2055,2136,2076,2248,1939,2221,1196,1366,325,415,419,499,359,128,137,221,48
-2019F,CT,CLTXP,1074,979,901,959,870,859,857,819,579,319,185,133,90,83,90,51,38,39,18,35,16,38,31,29,46,41,45,28,27,13,13,16,32,43,41,25,6,7,6,5,4,4,4,4,4,6,4,3,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,DFACP,1117,1446,1583,1677,1721,1415,1680,1707,2096,2264,2266,2311,2542,2721,2610,2391,2495,2457,2662,2707,2580,2289,3692,3075,4244,4542,4301,4720,5321,6118,4800,4431,4798,4666,4311,4756,5086,5320,5302,5598,5470,6683,5478,5369,7079,7562,7646,7669,7050,6690,6735,6869,6614,6625,6710,6643,6504,6449,6820,6885
-2019F,CT,DFCCP,5029,4963,4866,4763,4222,4434,4084,4111,4378,4395,4626,4535,4794,4840,4453,4207,4709,4601,4619,5814,2905,2933,2974,3236,3806,3961,3930,3583,3461,3810,3481,3454,3423,2734,2746,3017,2958,2935,2630,2649,2983,3403,2885,3601,3547,3008,2726,2607,2455,1981,2086,2131,1724,1946,1873,2190,1510,1431,1511,1252
-2019F,CT,DFEIP,79,68,73,100,104,126,170,402,601,857,1018,1212,793,528,304,121,182,79,63,-22,116,57,73,70,124,83,112,136,230,295,199,141,138,115,154,169,113,125,113,471,142,102,77,183,113,101,71,71,69,50,62,46,39,137,149,224,62,91,224,31
-2019F,CT,DFICP,1665,1617,1735,1734,1478,1561,1665,1907,1770,2084,1968,2082,1889,2452,2128,1944,2336,2473,2015,2089,3235,1497,1525,1230,1447,1197,1176,1938,1526,1617,1209,1250,1084,877,847,852,811,847,780,783,859,1026,848,1754,1091,930,979,896,764,823,668,654,487,619,544,493,506,543,577,533
-2019F,CT,DFRCP,15480,15276,14980,14662,12998,13649,12572,12656,13478,13528,14239,13961,14756,14898,13707,12950,14495,14164,14217,17897,13468,12948,12241,9293,10930,10896,12907,13265,15039,15816,13576,13006,15621,14731,13977,12528,13202,12949,11060,12905,14123,13603,13095,15763,17021,14916,12895,13037,12618,12423,11396,10260,9462,9994,10071,10497,7870,7825,9495,9238
-2019F,CT,DFTCP,23369,23370,23238,22936,20523,21186,20172,20783,22324,23128,24117,24101,24773,25440,23201,21613,24216,23774,23577,28484,22304,19724,20505,16904,20551,20680,22427,23642,25577,27656,23264,22282,25063,23123,22035,21322,22170,22176,19886,22407,23578,24817,22382,26670,28850,26518,24317,24281,22956,21967,20947,19960,18326,19320,19347,20047,16452,16339,18626,17938
-2019F,CT,DFTXP,23290,23302,23164,22836,20419,21060,20002,20381,21723,22271,23099,22888,23981,24911,22897,21492,24035,23696,23514,28506,22188,19667,20432,16834,20427,20597,22314,23506,25347,27361,23066,22140,24925,23008,21881,21153,22057,22051,19772,21936,23436,24714,22306,26488,28738,26417,24245,24209,22887,21917,20884,19914,18287,19184,19198,19823,16390,16248,18402,17907
-2019F,CT,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,362,0,0,126,66,174,181,333,171,166,168,2,0,0,0,0,0,0,0,0
-2019F,CT,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,430,575,678,228,37,537,902,1076,1179,1276,1325,1699,1766,1934,1947,766,326,472,1061,1338,1346,1842,2161,2567,1949,2348,0,585,671,626,546,527,530,0
-2019F,CT,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-4726,2859,413,-3271,-926,-1265,10384,12493,10892,2978,-970,2545,2951,5550,2539,2173,-600,2668,1426,-1178,-1983,-3710,-3737,-3326,-2247,-5860,-5408,-4255,-8496,-9594
-2019F,CT,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,430,575,678,228,37,537,902,1076,1179,1276,1325,1699,1759,1934,1585,766,326,346,995,1163,1165,1509,1990,2401,1781,2346,0,584,671,626,546,527,530,0
-2019F,CT,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,10,3,12,30,11,0,0,0,0,31,126,155,106,23,78,82,80,85,94,29,81,471,3614,964,2824,3459,2875,3465,3735,3538,3401,3467,3464,3532,3579,3580,3567,3588
-2019F,CT,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,8,3,0,2,3,2,2,2,0,2,23,13,5,4,4,6,4,4,4,4,4,3,96,92,93,94,96
-2019F,CT,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,0,1,1,0,1,7,54,14,44,41,30,34,53,50,49,51,39,39,39,39,40,40
-2019F,CT,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,11,3,12,31,12,0,0,0,0,32,134,163,110,24,80,85,82,87,97,29,84,501,3681,983,2872,3503,2910,3503,3791,3592,3453,3521,3507,3667,3710,3713,3700,3725
-2019F,CT,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,190,190,177,198,190,188,186,185,193,190,169,193,183,177,181,177
-2019F,CT,ESCCP,1825,1973,2184,2391,2627,2873,3167,3463,3831,4152,4649,5119,5624,6139,5899,6000,6259,6506,6717,6885,7039,7525,7717,8172,8275,8731,9267,9801,10317,10644,10711,10908,10851,11044,11210,11297,11546,11654,12184,12349,12496,12994,13162,13094,13455,13949,13611,15126,13665,13257,13428,13087,12976,13009,12894,12959,12701,12335,12381,12158
-2019F,CT,ESICP,2837,2956,3187,3350,3610,3862,4320,4515,4849,5177,5094,4977,5312,5643,5371,5050,5333,5525,5785,6044,5944,6318,5878,6067,6244,6113,6178,6251,6305,6235,6100,5822,5780,5597,5917,5913,5928,5919,5838,5836,5811,5572,5370,5366,5358,5153,4926,5433,4371,3692,3713,3668,3566,3490,3515,3432,3370,3244,3210,3072
-2019F,CT,ESRCP,2724,2914,3070,3302,3530,3812,4175,4658,5137,5739,6396,6834,7305,7641,7589,7449,7842,7960,8079,8175,8218,8614,8505,8767,8584,8638,9080,9670,10300,10485,10376,10441,10496,10597,10898,10760,10943,10859,10935,11619,11645,11975,12473,13178,13211,13803,12963,13372,12730,12578,13065,12919,12758,13135,12778,12893,12677,12380,13061,12494
-2019F,CT,ESRPP,1071,1127,1160,1211,1261,1334,1438,1587,1733,1913,2103,2233,2380,2491,2469,2417,2543,2579,2613,2641,2640,2753,2710,2772,2700,2698,2817,2978,3148,3193,3152,3161,3180,3202,3286,3237,3280,3242,3249,3431,3413,3488,3606,3782,3779,3936,3685,3791,3590,3531,3650,3600,3549,3653,3554,3593,3541,3462,3654,3503
-2019F,CT,ESTCP,7386,7843,8441,9043,9766,10547,11662,12636,13817,15068,16139,16931,18240,19423,18859,18499,19434,19991,20581,21104,21201,22457,22099,23006,23104,23482,24526,25721,26923,27365,27187,27171,27127,27238,28026,27970,28417,28432,28956,29803,29952,30541,31005,31830,32215,33095,31677,34129,30957,29716,30392,29859,29492,29825,29354,29476,28931,28136,28834,27900
-2019F,CT,ESTPP,2903,3033,3189,3316,3490,3692,4017,4305,4662,5023,5307,5531,5944,6331,6135,6001,6303,6479,6657,6817,6810,7177,7040,7275,7265,7336,7608,7921,8228,8334,8259,8227,8219,8231,8451,8414,8517,8489,8604,8801,8779,8897,8964,9135,9214,9437,9006,9676,8731,8343,8491,8320,8203,8294,8164,8214,8082,7869,8066,7824
-2019F,CT,ESTXP,7386,7843,8441,9043,9766,10547,11662,12636,13817,15068,16139,16931,18240,19423,18859,18499,19434,19991,20581,21104,21201,22457,22099,23006,23104,23482,24526,25721,26923,27365,27187,27171,27127,27238,28026,27970,28417,28432,28956,29803,29952,30541,31005,31830,32215,33095,31677,34129,30957,29716,30392,29859,29492,29825,29354,29476,28931,28136,28834,27900
-2019F,CT,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,FSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,HLACP,2,4,4,3,3,5,10,10,12,15,21,25,26,32,31,26,30,36,55,18,15,26,23,27,43,32,22,21,30,32,36,40,32,33,50,26,21,16,52,34,33,93,35,28,32,38,23,17,47,39,14,14,15,14,14,15,16,45,29,21
-2019F,CT,HLCCP,250,247,282,284,316,277,277,293,307,359,321,311,342,311,299,307,314,324,291,219,238,236,231,274,222,256,225,318,297,336,343,380,488,420,376,350,424,483,612,473,534,555,598,830,720,568,469,625,779,869,792,889,716,867,808,886,810,457,725,751
-2019F,CT,HLICP,355,374,408,591,576,564,636,648,797,837,890,938,1081,1231,1225,1280,1436,1430,1275,808,785,614,716,592,707,499,451,601,614,565,548,327,417,415,330,355,247,295,391,249,526,697,271,770,997,2080,2136,1546,53,82,139,148,58,80,157,222,143,88,130,179
-2019F,CT,HLRCP,485,479,547,552,614,538,538,569,596,697,623,604,664,603,581,596,610,629,566,424,462,459,448,532,430,496,436,617,576,653,665,738,947,816,730,679,824,938,1188,918,1036,1077,1161,1326,1308,1287,1069,1176,1491,1636,1516,1623,1521,1851,1812,1942,1820,2344,2308,2190
-2019F,CT,HLTCP,1092,1104,1241,1431,1509,1383,1460,1521,1712,1908,1854,1879,2112,2176,2137,2209,2390,2420,2187,1470,1501,1336,1418,1426,1401,1283,1134,1558,1518,1586,1592,1485,1885,1684,1487,1410,1517,1732,2243,1673,2130,2422,2065,2954,3057,3973,3698,3364,2371,2627,2461,2674,2310,2813,2790,3064,2790,2934,3192,3142
-2019F,CT,HLTXP,1092,1104,1241,1431,1509,1383,1460,1521,1712,1908,1854,1879,2112,2176,2137,2209,2390,2420,2187,1470,1501,1336,1418,1426,1401,1283,1134,1558,1518,1586,1592,1485,1885,1684,1487,1410,1517,1732,2243,1673,2130,2422,2065,2954,3057,3973,3698,3364,2371,2627,2461,2674,2310,2813,2790,3064,2790,2934,3192,3142
-2019F,CT,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,HYEGP,398,340,254,246,244,179,245,388,355,418,327,385,534,441,422,487,377,425,353,455,250,254,365,372,371,258,367,337,324,442,563,426,416,407,473,358,618,438,448,422,526,286,335,564,463,478,544,363,556,510,391,567,312,402,434,302,224,332,555,428
-2019F,CT,HYICP,26,27,41,32,25,9,8,5,4,7,3,6,4,6,7,7,7,6,7,6,6,6,6,6,6,6,6,6,6,0,8,8,8,8,8,6,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,HYTCP,424,367,295,278,269,187,253,394,358,425,329,391,538,447,428,493,383,431,359,461,256,260,371,378,377,264,373,343,330,442,571,433,424,415,481,364,626,447,448,422,526,286,335,564,463,478,544,363,556,510,391,567,312,402,434,302,224,332,555,428
-2019F,CT,HYTXP,26,27,41,32,25,9,8,5,4,7,3,6,4,6,7,7,7,6,7,6,6,6,6,6,6,6,6,6,6,0,8,8,8,8,8,6,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,JFACP,1129,1098,1191,1204,1169,1411,1542,1700,2336,2630,2897,2191,2499,2286,2252,2013,1924,2127,2113,2227,1921,1544,1075,957,1005,1085,1255,1784,2156,2242,2344,2246,2293,2312,2452,2489,2718,2372,2214,2456,2599,2356,2201,2108,2382,2461,2249,2056,1908,1408,2124,2160,2299,1664,1932,1683,1758,2294,2654,2099
-2019F,CT,JFTCP,1129,1098,1191,1204,1169,1411,1542,1700,2336,2630,2897,2191,2809,2509,2434,2124,1946,2167,2128,2382,1973,1580,1076,957,1005,1085,1255,1784,2156,2242,2344,2246,2293,2312,2452,2489,2718,2372,2214,2456,2599,2356,2201,2108,2382,2461,2249,2056,1908,1408,2124,2160,2299,1664,1932,1683,1758,2294,2654,2099
-2019F,CT,JFTXP,1129,1098,1191,1204,1169,1411,1542,1700,2336,2630,2897,2191,2499,2286,2252,2013,1924,2127,2113,2227,1921,1544,1075,957,1005,1085,1255,1784,2156,2242,2344,2246,2293,2312,2452,2489,2718,2372,2214,2456,2599,2356,2201,2108,2382,2461,2249,2056,1908,1408,2124,2160,2299,1664,1932,1683,1758,2294,2654,2099
-2019F,CT,KSCCP,52,49,42,43,37,38,25,20,20,19,18,18,22,15,11,10,10,8,7,7,7,11,1,68,100,64,67,112,66,145,51,167,45,44,51,27,72,104,176,82,119,231,132,125,172,266,181,34,31,17,8,9,1,1,7,2,4,6,3,4
-2019F,CT,KSICP,354,512,435,146,144,169,167,199,134,169,234,241,241,152,236,287,443,264,266,164,251,209,117,33,47,44,71,61,255,239,68,37,8,24,46,95,25,39,53,97,192,70,11,223,247,269,376,146,80,146,126,129,36,27,76,39,39,31,22,8
-2019F,CT,KSRCP,1507,1400,1215,1224,1062,1101,717,580,567,550,526,521,639,424,308,291,276,239,209,201,233,195,263,195,624,605,423,406,403,287,196,175,196,211,162,122,124,143,126,177,199,161,92,270,349,326,232,129,49,46,43,31,14,12,17,10,13,8,8,11
-2019F,CT,KSTCP,1914,1961,1692,1412,1243,1308,909,800,721,738,778,780,902,591,554,588,728,511,483,372,491,415,381,296,770,712,561,579,724,671,315,379,249,279,260,244,221,286,355,355,509,461,235,618,768,861,789,310,160,210,177,169,51,40,99,51,56,46,33,23
-2019F,CT,KSTXP,1914,1961,1692,1412,1243,1308,909,800,721,738,778,780,902,591,554,588,728,511,483,372,491,415,381,296,770,712,561,579,724,671,315,379,249,279,260,244,221,286,355,355,509,461,235,618,768,861,789,310,160,210,177,169,51,40,99,51,56,46,33,23
-2019F,CT,LUACP,258,251,251,251,263,255,265,220,242,233,238,229,245,219,210,196,217,247,266,278,247,237,216,227,242,225,220,249,240,246,253,227,231,235,246,242,235,248,259,262,258,237,234,216,219,218,212,219,203,183,221,212,191,198,202,221,208,190,184,175
-2019F,CT,LUICP,93,90,278,277,291,308,320,258,283,325,331,249,267,329,315,200,222,208,223,234,208,199,182,190,203,189,185,209,202,207,213,191,194,198,207,203,197,208,218,220,217,199,196,182,184,183,178,184,171,154,254,231,198,215,208,201,185,162,153,142
-2019F,CT,LUTCP,350,341,528,528,554,563,584,478,525,559,569,478,512,548,525,396,440,455,489,511,455,437,398,417,445,414,405,458,442,453,466,417,425,433,453,445,432,456,477,482,475,435,430,398,403,401,391,403,374,337,475,442,389,414,410,421,393,352,336,316
-2019F,CT,LUTXP,350,341,528,528,554,563,584,478,525,559,569,478,512,548,525,396,440,455,489,511,455,437,398,417,445,414,405,458,442,453,466,417,425,433,453,445,432,456,477,482,475,435,430,398,403,401,391,403,374,337,475,442,389,414,410,421,393,352,336,316
-2019F,CT,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,MGACP,19044,19407,20255,21017,21680,22609,23637,24253,25866,26900,28273,29232,30484,31302,31199,31547,32283,32761,32884,31167,29864,29918,29708,30301,30635,30631,31477,32020,32406,31806,30673,30976,30780,31319,31433,30146,31617,31719,32726,35294,33875,34611,36116,38088,42779,37850,37086,37422,35791,35847,35192,34245,33584,33655,33348,33898,34555,34397,34557,34144
-2019F,CT,MGCCP,63,84,73,74,74,76,80,78,85,89,97,97,150,206,230,239,243,249,259,256,275,282,294,190,144,142,146,172,165,190,204,656,1576,1588,1041,250,823,983,725,778,825,290,821,1850,152,190,46,40,76,41,39,41,35,35,33,920,889,895,910,916
-2019F,CT,MGICP,243,288,300,290,244,248,272,188,213,202,269,210,172,86,74,36,101,110,82,69,66,52,53,43,75,225,238,236,267,277,263,239,240,196,195,195,223,232,138,210,233,536,499,560,634,561,578,445,369,353,495,482,481,493,373,371,373,378,384,385
-2019F,CT,MGTCP,19349,19780,20628,21380,21998,22933,23988,24519,26164,27191,28638,29539,30806,31594,31504,31822,32626,33119,33225,31492,30205,30252,30055,30534,30855,30999,31860,32428,32838,32273,31140,31870,32596,33103,32668,30591,32663,32934,33589,36283,34933,35437,37436,40498,43565,38601,37710,37906,36236,36241,35726,34768,34100,34183,33755,35189,35817,35671,35851,35446
-2019F,CT,MGTXP,19349,19780,20628,21380,21998,22933,23988,24519,26164,27191,28638,29539,30806,31594,31504,31822,32626,33119,33225,31492,30205,30252,30055,30534,30855,30999,31860,32428,32838,32273,31140,31870,32596,33103,32668,30591,32663,32934,33589,36283,34933,35437,37436,40498,43565,38601,37710,37906,36236,36241,35726,34768,34100,34183,33755,35189,35817,35671,35851,35446
-2019F,CT,MSICP,222,248,272,144,144,140,1004,938,1046,975,871,57,59,73,93,126,266,301,262,242,230,293,257,231,198,199,97,97,118,108,97,122,80,76,85,78,190,209,254,239,255,40,43,40,36,36,66,64,69,73,77,79,78,85,91,94,95,108,107,98
-2019F,CT,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,NGACP,222,317,108,150,103,100,104,307,57,61,50,44,40,25,44,43,27,14,40,59,71,97,655,216,215,351,639,976,538,568,486,523,615,491,730,1191,1452,2578,929,3063,3150,3096,2665,3566,3588,3425,3259,4449,4306,5880,6780,6329,4774,4427,4715,5118,4359,5629,6010,6723
-2019F,CT,NGCCP,3194,4082,3994,5501,6157,5734,7356,8109,11224,12435,14500,16073,17005,15420,16247,15928,16694,16813,16940,16830,20153,22769,23125,22260,24778,24590,24713,27581,27411,30781,29410,26838,29838,31427,39082,37879,39786,42624,42333,47553,48476,44378,40535,38760,35511,35756,32660,35963,37666,39731,40656,44832,42346,46418,51221,52453,50258,52513,58184,57642
-2019F,CT,NGEIP,1756,634,446,337,396,337,452,467,439,290,147,87,30,0,535,344,446,0,0,0,0,0,0,0,2228,1559,740,7350,1260,6890,12686,15149,13508,11607,18430,28926,17908,24398,20417,31229,34401,32161,65060,42569,58834,63896,76024,73627,59354,70864,85144,107897,114054,106863,100359,119907,123024,108687,136075,143448
-2019F,CT,NGICP,7285,7557,8982,9180,10069,12419,14924,14720,15045,15651,14690,13352,14054,16903,16100,15553,16378,16172,16411,19783,20317,20625,21410,21035,20855,18937,17703,19802,19436,19724,25448,32660,36383,36842,30647,32170,32451,34554,32498,32039,32162,25622,29051,23553,20529,20469,21670,22794,22539,24585,24117,26258,26932,29965,28371,25612,24271,24557,24562,24520
-2019F,CT,NGRCP,15996,17771,18697,19641,20777,22232,24859,26177,26437,29048,31187,31878,32879,30261,33417,32143,32310,31069,31800,31285,32042,33338,33056,30916,33062,32778,35107,36134,39485,40687,37446,37181,42394,42213,41600,40824,43764,40562,35329,38364,41534,41022,40276,45627,44179,44522,39069,43348,42935,43995,42729,44719,41050,46802,51193,50975,46045,48431,53100,52228
-2019F,CT,NGTCP,28453,30361,32227,34809,37502,40822,47695,49780,53202,57485,60574,61434,64008,62609,66343,64011,65855,64068,65191,67957,72583,76829,78246,74427,81138,78215,78902,91843,88130,98651,105476,112351,122737,122580,130489,140989,135361,144715,131505,152248,159723,146278,177587,154075,162642,168067,172682,180181,166800,185055,199426,230035,229156,234475,235859,254065,247957,239817,277931,284561
-2019F,CT,NGTPP,11.2,11.7,12.2,12.8,13.4,14.3,16.4,17,17.9,19.2,19.9,20.1,20.9,20.4,21.6,20.8,21.4,20.8,21.1,22,23.3,24.6,24.9,23.5,25.5,24.4,24.5,28.3,26.9,30,32,34,37.2,37,39.3,42.4,40.6,43.2,39.1,45,46.8,42.6,51.3,44.2,46.5,47.9,49.1,51.1,47,52,55.7,64.1,63.7,65.2,65.6,70.8,69.3,67.1,77.8,79.8
-2019F,CT,NGTXP,26697,29727,31781,34472,37106,40485,47243,49313,52763,57195,60427,61347,63978,62609,65808,63667,65409,64068,65191,67957,72583,76829,78246,74427,78910,76656,78162,84493,86870,91761,92790,97202,109229,110973,112059,112064,117453,120317,111088,121019,125322,114117,112527,111506,103808,104171,96658,106554,107446,114191,114282,122138,115102,127612,135500,134158,124933,131130,141856,141113
-2019F,CT,NUEGP,0,0,0,0,0,0,0,524,3004,3639,3604,7767,7777,4303,7970,8135,12330,13174,13863,12706,11835,12673,13625,11588,14292,12721,18667,20540,22251,19563,19776,12243,16771,21802,20160,18749,6225,-125,3243,12675,16365,15428,14918,16078,16539,15562,16589,16386,15433,16657,16750,15928,17078,17080,15841,17411,16575,16500,16881,16733
-2019F,CT,NUETP,0,0,0,0,0,0,0,524,3004,3639,3604,7767,7777,4303,7970,8135,12330,13174,13863,12706,11835,12673,13625,11588,14292,12721,18667,20540,22251,19563,19776,12243,16771,21802,20160,18749,6225,-125,3243,12675,16365,15428,14918,16078,16539,15562,16589,16386,15433,16657,16750,15928,17078,17080,15841,17411,16575,16500,16881,16733
-2019F,CT,OPICP,222,248,272,144,250,256,1121,1036,1151,1089,992,139,146,161,181,201,431,473,469,452,432,507,449,453,481,427,307,330,312,293,281,298,279,281,266,248,427,429,524,553,486,139,146,131,113,119,186,185,192,144,135,130,121,170,177,172,170,143,142,132
-2019F,CT,OPTCP,222,248,272,144,250,256,1121,1036,1151,1089,992,139,146,161,181,201,431,473,469,452,432,507,449,453,481,427,307,330,312,293,281,298,279,281,266,248,427,429,524,553,486,139,146,131,113,119,186,185,192,144,135,130,121,170,177,172,170,143,142,132
-2019F,CT,OPTXP,222,248,272,144,250,256,1121,1036,1151,1089,992,139,146,161,181,201,431,473,469,452,432,507,449,453,481,427,307,330,312,293,281,298,279,281,266,248,427,429,524,553,486,139,146,131,113,119,186,185,192,144,135,130,121,170,177,172,170,143,142,132
-2019F,CT,P1ICP,1756,1822,2190,1573,1582,2059,2799,2549,2779,2863,2576,1853,2111,2211,1830,1950,2216,1860,2097,1696,1520,1699,1533,1414,1665,2755,2688,2740,2622,2536,2147,2502,2160,2080,2195,2456,2221,1894,1347,1537,1566,1111,1031,2197,2294,2655,2406,1496,507,2296,2374,2128,1704,2079,2040,1503,1930,2031,1920,1816
-2019F,CT,P1TCP,3678,3625,3822,3262,3111,3625,3971,3505,3760,3806,3482,2731,3129,2983,2466,2537,2797,2466,2679,2268,2097,2220,2074,1969,2693,3719,3469,3562,3379,3254,2742,3099,2659,2600,2682,2888,2689,2411,1960,2090,2171,1816,1540,2853,3094,3651,3159,2004,889,2680,2734,2462,1988,2356,2292,1758,2175,2254,2134,2029
-2019F,CT,P1TXP,3678,3625,3822,3262,3111,3625,3971,3505,3760,3806,3482,2731,3129,2983,2466,2537,2797,2466,2679,2268,2097,2220,2074,1969,2693,3719,3469,3562,3379,3254,2742,3099,2659,2600,2682,2888,2689,2411,1960,2090,2171,1816,1540,2853,3094,3651,3159,2004,889,2680,2734,2462,1988,2356,2292,1758,2175,2254,2134,2029
-2019F,CT,PAACP,21857,23337,24376,25145,25683,26338,28065,28968,31474,32662,34177,34554,36439,37626,37130,36844,37734,38283,38575,36534,34768,34096,34781,35102,36476,36738,37382,38920,40333,40549,38285,38039,38205,38626,38542,37711,39750,39722,40620,43689,42287,44067,44117,45857,52573,48339,47349,47524,45117,44329,44433,43647,42806,42222,42232,42481,43060,43394,44263,43346
-2019F,CT,PACCP,6264,6191,6184,6076,5796,5783,5593,5607,5810,5850,6057,5781,6119,6224,5721,5420,6110,6047,6128,6865,4596,4250,4262,5213,6244,6102,5972,5487,5353,6017,5113,5183,6415,5195,4860,4092,4732,4826,4303,4192,4679,4644,4757,7111,4920,4385,3739,3496,3446,3003,3015,3078,2484,2859,2740,4026,3248,2833,3175,2948
-2019F,CT,PAEIP,1676,1444,1558,2133,2208,2676,3608,8554,12784,18234,21550,22433,29186,30341,26545,22382,19909,18951,19741,18409,21596,18313,17445,19736,20583,17089,18430,15732,18500,19171,14219,13061,8861,7073,5759,5758,9066,14066,14613,14273,11357,8362,3844,3403,2751,5227,2231,2266,951,540,764,288,216,469,785,615,145,266,536,47
-2019F,CT,PAICP,15968,15727,17256,16696,19624,17612,20838,20480,19591,19568,19413,16406,16524,17877,15382,14334,17642,17796,18584,12679,12290,6390,6979,5045,6305,6879,6875,7496,7124,6676,5582,5307,5116,4991,4861,4613,4465,3655,2964,3184,3564,3967,2995,6046,6120,7334,6689,4776,1839,3723,3700,3428,2739,3275,3119,2596,2955,3042,3012,2913
-2019F,CT,PARCP,17472,17156,16742,16438,14673,15288,13828,13806,14641,14776,15388,15086,16059,15925,14595,13838,15380,15033,14992,18522,14163,13602,12952,10020,11984,11997,13766,14289,16018,16755,14437,13918,16763,15757,14869,13329,14151,14031,12374,14000,15358,14840,14348,17359,18678,16529,14196,14342,14159,14105,12955,11914,10997,11858,11899,12449,9703,10178,11810,11439
-2019F,CT,PATCP,63238,63854,66116,66488,67983,67696,71933,77414,84299,91089,96584,94260,104327,107993,99374,92817,96776,96111,98019,93010,87413,76651,76419,75115,81592,78806,82425,81924,87328,89167,77636,75508,75360,71643,68891,65503,72165,76299,74875,79338,77245,75880,70062,79776,85041,81814,74204,72403,65513,65700,64867,62356,59242,60682,60776,62168,59112,59713,62797,60693
-2019F,CT,PATPP,24.9,24.7,25,24.4,24.3,23.7,24.8,26.4,28.4,30.4,31.8,30.8,34,35.2,32.3,30.1,31.4,31.1,31.7,30,28.1,24.5,24.3,23.8,25.7,24.6,25.6,25.2,26.7,27.2,23.6,22.9,22.8,21.6,20.8,19.7,21.6,22.8,22.2,23.4,22.6,22.1,20.3,22.9,24.3,23.3,21.1,20.5,18.5,18.4,18.1,17.4,16.5,16.9,16.9,17.3,16.5,16.7,17.6,17
-2019F,CT,PATXP,61562,62410,64558,64355,65776,65020,68325,68860,71515,72855,75034,71826,75141,77652,72829,70436,76867,77160,78278,74600,65817,58338,58974,55380,61009,61717,63995,66192,68828,69996,63416,62448,66499,64570,63132,59745,63098,62233,60262,65065,65888,67519,66218,76372,82290,76587,71972,70137,64562,65160,64103,62067,59026,60213,59991,61552,58966,59447,62261,60646
-2019F,CT,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,14,15,14,14,15,16,45,29,21
-2019F,CT,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,792,889,716,867,808,886,810,457,725,751
-2019F,CT,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,139,148,58,80,157,222,143,88,130,179
-2019F,CT,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1516,1623,1521,1851,1812,1942,1820,2344,2308,2190
-2019F,CT,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2461,2674,2310,2813,2790,3064,2790,2934,3192,3142
-2019F,CT,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2461,2674,2310,2813,2790,3064,2790,2934,3192,3142
-2019F,CT,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,CT,RFACP,204,1028,968,821,680,471,768,942,770,480,359,455,532,952,720,581,706,545,495,49,53,4,6,449,245,152,35,72,131,65,84,91,44,31,22,11,36,25,14,12,22,10,1,2,22,22,5,15,20,24,59,65,26,0,0,0,0,0,0,0
-2019F,CT,RFCCP,871,848,920,913,1147,958,1127,1103,1019,987,995,819,811,853,728,656,835,864,951,570,1171,788,761,1445,1972,1679,1604,1302,1364,1535,1034,526,883,408,646,447,455,321,160,210,218,165,321,705,329,353,317,190,106,95,90,8,8,10,19,29,35,44,26,24
-2019F,CT,RFEIP,1597,1376,1485,2033,2104,2550,3439,8152,12183,17377,20531,21221,28083,29589,26060,22150,19705,18832,19663,18277,21428,18220,17371,19666,20459,17006,18318,15596,18271,18876,14021,12919,8723,6958,5605,5589,8953,13941,14500,13802,11215,8259,3768,3221,2638,5125,2160,2195,882,490,702,243,178,332,636,392,83,175,312,16
-2019F,CT,RFICP,11950,11625,12623,12508,15744,13180,15467,15188,14030,13581,13710,11323,11272,11896,10124,9124,11554,11923,13115,8017,6683,2528,3152,1766,2411,2202,2322,1981,2095,1681,1415,990,1215,1423,1293,755,964,387,308,405,380,598,347,764,1103,1109,590,393,145,168,25,17,8,4,5,7,2,2,2,0
-2019F,CT,RFTCP,14622,14877,15996,16275,19674,17159,20801,25385,28003,32426,35595,33819,40697,43290,37632,32512,32800,32164,34224,26913,29334,21540,21291,23325,25087,21040,22279,18951,21861,22157,16554,14526,10865,8820,7567,6803,10407,14673,14982,14429,11835,9033,4437,4692,4093,6609,3071,2793,1154,777,876,332,219,346,659,427,120,221,340,40
-2019F,CT,RFTXP,13025,13501,14511,14242,17571,14609,17362,17233,15819,15049,15064,12598,12614,13701,11573,10362,13094,13332,14561,8636,7906,3320,3920,3659,4628,4034,3961,3355,3590,3281,2533,1607,2142,1862,1962,1214,1454,733,482,627,619,773,670,1471,1455,1484,911,598,271,288,174,89,42,14,23,36,37,46,28,24
-2019F,CT,SGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,SNICP,0,0,0,0,107,115,117,97,104,114,121,81,87,88,87,75,165,172,207,210,202,167,155,182,244,188,171,191,151,142,141,95,113,113,87,76,112,108,161,218,146,37,48,38,24,29,73,82,89,48,27,24,15,58,62,58,55,26,24,25
-2019F,CT,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,11,18,20,20,25,42,68,90,130,157,200,226
-2019F,CT,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,17,25,39,105,134
-2019F,CT,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,4,7,10,16,21,25,30
-2019F,CT,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,4,6,10,13,17,27,52,98,174,230,276,349
-2019F,CT,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,5,15,26,31,34,43,73,138,216,344,447,605,738
-2019F,CT,TPOPP,2544,2586,2647,2727,2798,2857,2903,2935,2964,3000,3041,3061,3069,3068,3074,3082,3083,3086,3092,3096,3113,3129,3139,3162,3180,3201,3224,3247,3272,3283,3292,3303,3301,3309,3316,3324,3337,3349,3365,3386,3412,3433,3459,3484,3496,3507,3517,3527,3546,3562,3579,3589,3595,3596,3596,3589,3580,3575,3575,3566
-2019F,CT,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,36,40,39,40,39,42,43,43,43,81,86,93,94,94,125,112,108,96,85,62,55,53,53,54,47,39,34,22,31,27,27,27,24,20,21,9,11,10
-2019F,CT,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,12,12
-2019F,CT,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,CT,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,12,12
-2019F,CT,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,ARICP,11,14,15,16,17,20,18,18,16,15,17,18,19,23,23,20,20,21,24,21,16,18,19,26,20,27,31,31,33,27,30,22,21,28,26,26,22,34,28,26,28,26,28,21,19,18,18,26,23,601,667,608,643,654,636,608,495,517,484,407
-2019F,DC,ARTCP,11,14,15,16,17,20,18,18,16,15,17,18,19,23,23,20,20,21,24,21,16,18,19,26,20,27,31,31,33,27,30,22,21,28,26,26,22,34,28,26,28,26,28,21,19,18,18,26,23,601,667,608,643,654,636,608,495,517,484,407
-2019F,DC,ARTXP,11,14,15,16,17,20,18,18,16,15,17,18,19,23,23,20,20,21,24,21,16,18,19,26,20,27,31,31,33,27,30,22,21,28,26,26,22,34,28,26,28,26,28,21,19,18,18,26,23,601,667,608,643,654,636,608,495,517,484,407
-2019F,DC,AVACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,4,0,3,3,3,2,2,2,2,0,4,6,6,4,3,1,1,1,1,3,0,0,0,0,0
-2019F,DC,AVTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,4,0,3,3,3,2,2,2,2,0,4,6,6,4,3,1,1,1,1,3,0,0,0,0,0
-2019F,DC,AVTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,4,0,3,3,3,2,2,2,2,0,4,6,6,4,3,1,1,1,1,3,0,0,0,0,0
-2019F,DC,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,8,8,9,12,8,5,5
-2019F,DC,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,8,8,9,12,8,5,5
-2019F,DC,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,CLACP,8,2,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,CLCCP,55,58,61,59,50,45,43,36,33,34,18,16,14,16,24,11,18,0,0,0,86,78,104,103,81,109,42,54,24,47,56,54,41,42,40,5,20,36,5,5,6,27,4,6,27,35,0,18,14,12,3,2,3,0,2,2,1,1,1,0
-2019F,DC,CLEIP,446,391,343,347,436,293,494,527,698,777,673,286,176,260,299,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,CLICP,463,444,360,219,134,129,330,262,139,409,414,308,310,279,168,292,217,167,83,119,25,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,CLOCP,463,444,360,219,134,129,330,262,139,409,414,308,310,279,168,292,217,167,83,119,25,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,CLRCP,79,83,88,82,69,59,57,47,41,44,22,15,10,9,11,5,7,0,0,0,23,17,21,20,19,31,13,16,7,13,14,12,9,9,7,1,3,4,1,1,1,3,0,1,3,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,CLTCP,1051,977,854,708,690,526,925,873,911,1264,1128,625,510,564,502,418,242,167,83,119,134,99,125,123,100,140,54,70,31,60,69,66,50,51,47,6,23,40,6,6,7,30,4,7,30,38,0,20,14,12,3,2,3,0,2,2,1,1,1,0
-2019F,DC,CLTXP,605,586,511,361,254,233,431,346,213,487,455,339,334,304,203,307,242,167,83,119,134,99,125,123,100,140,54,70,31,60,69,66,50,51,47,6,23,40,6,6,7,30,4,7,30,38,0,20,14,12,3,2,3,0,2,2,1,1,1,0
-2019F,DC,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,DFACP,305,443,472,467,541,874,770,592,565,486,492,598,535,708,845,820,1070,1224,880,870,587,450,817,621,607,898,883,828,888,915,804,769,791,607,711,634,674,619,598,588,728,832,794,878,938,541,242,274,377,297,333,395,376,338,392,336,323,222,169,383
-2019F,DC,DFCCP,1060,925,949,941,957,1001,991,1093,1236,1166,1308,1016,1036,1088,1020,936,958,932,915,681,647,280,450,993,1168,836,1101,742,627,600,596,680,641,853,1010,830,961,506,318,335,561,541,296,383,457,404,348,304,201,299,181,117,128,112,100,125,111,68,95,68
-2019F,DC,DFEIP,4,3,3,3,5,4,7,10,418,945,1135,614,272,243,303,90,65,125,235,93,109,66,37,110,130,66,69,84,165,214,72,54,56,35,98,75,49,71,116,107,169,52,620,190,130,540,231,197,163,85,434,275,26,0,0,0,0,0,0,0
-2019F,DC,DFICP,211,213,206,202,189,316,350,319,192,269,377,350,226,180,160,150,136,159,145,285,192,397,187,25,30,40,88,14,3,4,2,2,15,16,14,16,18,21,17,140,34,36,69,97,47,39,42,49,30,27,9,23,23,16,19,19,39,11,17,18
-2019F,DC,DFRCP,1314,1147,1177,1168,1187,1241,1229,1356,1533,1446,1622,1260,1285,1350,1265,1161,1189,1157,1135,845,749,281,509,554,652,553,444,467,338,162,178,191,198,175,148,284,302,258,235,209,218,199,352,362,387,351,183,205,144,176,210,36,184,143,139,186,19,16,118,9
-2019F,DC,DFTCP,2894,2730,2806,2781,2879,3435,3348,3369,3944,4311,4934,3837,3354,3569,3592,3157,3418,3598,3309,2773,2284,1475,1999,2304,2587,2394,2584,2134,2021,1895,1652,1696,1700,1686,1981,1839,2004,1474,1284,1380,1710,1660,2131,1909,1960,1873,1046,1030,916,884,1168,846,735,609,650,666,493,317,399,478
-2019F,DC,DFTXP,2890,2728,2803,2778,2874,3431,3341,3359,3525,3366,3800,3224,3082,3325,3289,3067,3353,3472,3074,2680,2175,1409,1962,2194,2457,2328,2516,2050,1856,1680,1579,1642,1644,1652,1883,1764,1955,1403,1168,1272,1540,1608,1511,1719,1830,1334,815,832,753,799,734,571,710,609,650,666,493,317,399,478
-2019F,DC,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0
-2019F,DC,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10672,11239,11227,11500,11272,11422,11276,11257,11239,11483,11757,11918,12125,12113,12778,12944,12599,12994,12436,12230,12515,12149,11989,11782,11888,12045,12151,11604,12031,11663
-2019F,DC,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0
-2019F,DC,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,55,154,191,136,158,262,258,226,234,261,265,282,246,283,286
-2019F,DC,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,3,2,24,28,1,1,1,7,8,8,8,8
-2019F,DC,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,4,4,4,3,4,3,4,5,4,4,4,4,4
-2019F,DC,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,62,163,196,143,163,290,290,230,238,267,276,294,257,295,298
-2019F,DC,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,ESACP,32,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,22,44,88,106,121,118,109,110,130,136,136,140,139,142,144,152,159,165,170,163,158,162,172,179,185,179,285,304,326,305,325,312,309,315,319,325,325,331,334,331,335,337,350
-2019F,DC,ESCCP,955,997,1043,1092,1194,1359,1465,1544,1687,1826,1935,1979,2103,2260,2035,2355,2285,2232,2378,2332,2457,2425,2614,2735,4141,4317,4516,4752,4965,5118,5250,5418,5416,5605,8291,8275,8108,8132,8261,8354,8540,8716,8878,8639,8994,9296,9030,9519,9131,8992,9209,8966,8713,8499,8548,8222,8368,8006,8236,7952
-2019F,DC,ESICP,1237,1346,1412,1514,1687,1836,1974,2079,2239,2419,2627,2738,2762,2912,2616,2532,2790,3054,3087,3196,3356,3396,3399,3566,2458,2534,2606,2708,2809,2930,2976,3053,2987,2976,267,262,252,262,262,249,273,281,282,267,282,256,240,297,257,234,230,216,218,227,242,238,192,180,193,180
-2019F,DC,ESRCP,429,465,474,499,537,578,627,643,711,767,830,857,862,954,884,909,930,955,975,986,1085,1090,1114,1208,1227,1233,1332,1410,1465,1466,1480,1580,1488,1635,1572,1608,1614,1554,1596,1643,1624,1699,1790,1754,1834,1938,1822,1970,1916,1900,2123,2061,2003,2034,2072,2498,2502,2395,2592,2547
-2019F,DC,ESRPP,561,597,602,625,673,726,792,813,914,1006,1098,1143,1162,1304,1231,1286,1344,1410,1466,1517,1700,1711,1756,1909,1938,1943,2086,2214,2324,2349,2446,2630,2490,2746,2667,2771,2820,2737,2823,2881,2839,2957,3123,3086,3231,3418,3193,3429,3301,3208,3508,3323,3150,3121,3123,3689,3639,3435,3681,3596
-2019F,DC,ESTCP,2654,2839,2929,3105,3419,3773,4065,4266,4637,5012,5392,5575,5727,6126,5535,5796,6011,6263,6484,6602,7004,7031,7245,7618,7936,8214,8588,9007,9380,9653,9848,10195,10043,10375,10295,10316,10137,10107,10281,10418,10616,10880,11129,10946,11415,11816,11396,12110,11616,11434,11877,11562,11259,11086,11194,11291,11394,10916,11358,11028
-2019F,DC,ESTPP,3469,3649,3717,3891,4284,4734,5139,5393,5961,6577,7133,7436,7716,8375,7709,8200,8682,9248,9750,10157,10973,11040,11424,12045,12530,12944,13456,14142,14878,15465,16270,16967,16807,17428,17471,17770,17710,17802,18189,18270,18557,18939,19417,19255,20105,20835,19970,21083,20020,19307,19622,18640,17710,17014,16868,16678,16571,15660,16130,15571
-2019F,DC,ESTXP,2654,2839,2929,3105,3419,3773,4065,4266,4637,5012,5392,5575,5727,6126,5535,5796,6011,6263,6484,6602,7004,7031,7245,7618,7936,8214,8588,9007,9380,9653,9848,10195,10043,10375,10295,10316,10137,10107,10281,10418,10616,10880,11129,10946,11415,11816,11396,12110,11616,11434,11877,11562,11259,11086,11194,11291,11394,10916,11358,11028
-2019F,DC,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,FSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,HLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,1,0,1,1,1,1,1,1,0,0,1,0,0,0,0,1,0,0,1,1,1,1,1,1,1,11,3,0,0,0
-2019F,DC,HLCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,3,1,1,0,0,0,0,1
-2019F,DC,HLICP,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,3,4,4,5,2,2,3,3,3,2,2,5,3,3,3,3,4,1,1,5,3,1,2,2,1,1,2,1,1,1,4,3,3,3,0,0,2,3,2
-2019F,DC,HLRCP,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,0,0,1,3,1,1,1,1,2
-2019F,DC,HLTCP,2,2,2,2,3,2,3,3,3,3,4,4,5,5,4,4,5,5,5,3,4,5,5,5,8,4,4,4,5,5,4,4,7,6,6,5,6,7,3,3,7,5,3,5,4,4,4,5,5,5,6,5,7,7,7,13,4,3,4,5
-2019F,DC,HLTXP,2,2,2,2,3,2,3,3,3,3,4,4,5,5,4,4,5,5,5,3,4,5,5,5,8,4,4,4,5,5,4,4,7,6,6,5,6,7,3,3,7,5,3,5,4,4,4,5,5,5,6,5,7,7,7,13,4,3,4,5
-2019F,DC,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,HYEGP,3,5,6,4,5,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,HYTCP,3,5,6,4,5,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,JFACP,0,0,0,0,0,0,0,1,0,10,0,1,3,1,0,0,0,0,0,3,329,566,336,108,39,7,501,0,5,0,5,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,JFTCP,0,0,0,0,0,0,0,1,0,10,0,1,3,1,0,0,0,0,0,3,329,566,336,108,39,7,501,0,5,0,5,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,JFTXP,0,0,0,0,0,0,0,1,0,10,0,1,3,1,0,0,0,0,0,3,329,566,336,108,39,7,501,0,5,0,5,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,KSCCP,34,32,29,34,18,22,9,17,12,9,10,22,8,8,4,4,2,2,2,1,1,1,1,6,6,55,0,1,4,48,8,4,4,4,6,129,101,202,293,227,243,207,0,1,1,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,KSICP,61,50,59,37,32,39,31,26,23,15,15,22,13,10,56,99,105,267,253,295,262,70,1,8,9,3,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,KSRCP,67,65,57,68,36,43,19,35,23,18,20,44,15,15,8,7,4,3,3,2,5,2,4,0,0,10,11,11,8,11,3,4,4,5,4,6,6,6,6,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,KSTCP,161,147,144,139,85,104,59,79,58,41,46,89,36,33,69,110,112,272,258,298,268,73,6,14,15,68,13,13,15,59,11,8,8,9,10,135,107,209,299,232,246,207,0,1,1,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,KSTXP,161,147,144,139,85,104,59,79,58,41,46,89,36,33,69,110,112,272,258,298,268,73,6,14,15,68,13,13,15,59,11,8,8,9,10,135,107,209,299,232,246,207,0,1,1,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,LUACP,112,109,91,91,95,59,62,67,73,52,53,54,58,52,50,46,51,54,58,60,54,52,47,49,53,49,48,54,52,54,55,49,50,51,53,53,51,54,56,57,56,51,51,47,48,47,46,48,44,40,14,13,11,11,13,14,14,10,11,12
-2019F,DC,LUICP,8,8,7,7,7,11,12,9,10,3,3,0,0,1,1,14,16,7,8,8,7,7,6,7,7,7,6,7,7,7,7,7,7,7,7,7,7,7,8,8,7,7,7,6,6,6,6,6,6,5,7,7,7,7,7,7,6,7,6,6
-2019F,DC,LUTCP,120,117,97,97,102,71,73,76,84,55,56,54,58,53,51,60,67,61,65,68,61,58,53,56,60,55,54,61,59,61,62,56,57,58,61,60,58,61,64,65,64,58,58,53,54,54,52,54,50,45,20,20,18,19,20,21,20,17,17,17
-2019F,DC,LUTXP,120,117,97,97,102,71,73,76,84,55,56,54,58,53,51,60,67,61,65,68,61,58,53,56,60,55,54,61,59,61,62,56,57,58,61,60,58,61,64,65,64,58,58,53,54,54,52,54,50,45,20,20,18,19,20,21,20,17,17,17
-2019F,DC,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,MGACP,4872,4896,4950,4987,5185,5391,5500,5432,5537,5583,5623,5596,5551,5898,5621,5670,5423,5140,5052,4475,3841,3934,3962,3935,4058,3716,3764,4144,4275,4104,3882,3930,3936,4117,3963,3997,3803,3962,3833,3938,3993,3511,3320,3093,3280,3007,3010,2978,2448,2590,2473,2500,2238,2269,2517,2546,2723,2362,2746,2723
-2019F,DC,MGCCP,85,87,121,119,84,78,70,69,73,72,65,77,84,78,78,78,77,75,72,69,40,45,56,43,160,27,49,22,22,21,71,35,29,32,66,101,20,49,170,22,54,253,511,243,178,246,66,24,61,31,225,271,7,7,7,63,75,75,77,78
-2019F,DC,MGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,64,80,62,75,90,58,59,36,69,44,39,56,27,18,23,126,96,161,133,112,112,55,66,62,32,34,34,35,45,36,36,37,37,38
-2019F,DC,MGTCP,4957,4983,5071,5106,5269,5469,5570,5501,5611,5655,5688,5673,5636,5976,5699,5748,5500,5215,5124,4544,3881,3978,4018,3978,4218,3802,3877,4246,4358,4200,4043,4023,4024,4185,4099,4142,3862,4066,4031,3979,4070,3890,3927,3497,3590,3366,3188,3057,2575,2684,2730,2806,2280,2311,2568,2646,2835,2474,2861,2838
-2019F,DC,MGTXP,4957,4983,5071,5106,5269,5469,5570,5501,5611,5655,5688,5673,5636,5976,5699,5748,5500,5215,5124,4544,3881,3978,4018,3978,4218,3802,3877,4246,4358,4200,4043,4023,4024,4185,4099,4142,3862,4066,4031,3979,4070,3890,3927,3497,3590,3366,3188,3057,2575,2684,2730,2806,2280,2311,2568,2646,2835,2474,2861,2838
-2019F,DC,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,NGACP,9,10,0,0,0,0,0,18,14,20,20,21,36,23,18,22,23,21,19,23,0,0,358,388,395,376,357,260,236,249,253,265,266,275,242,278,270,291,303,302,308,309,317,560,567,550,529,298,248,1007,1096,2582,1938,2295,2107,1629,1861,1514,1756,2354
-2019F,DC,NGCCP,3603,3954,4335,4712,5154,5833,6031,8727,9430,10749,11634,12706,13625,13315,13355,12262,14253,12986,12419,15794,13752,14993,15881,15945,11680,11921,11934,13999,15012,15741,13473,15550,16103,16229,14742,17035,16347,18012,16862,17837,17728,16546,18332,17098,17384,17683,17107,19297,18411,18705,18547,16892,15363,17234,17498,17113,15648,16040,16621,16125
-2019F,DC,NGEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0,0,0,0,0
-2019F,DC,NGICP,162,163,203,224,243,279,283,323,377,412,442,481,612,610,579,434,435,380,352,593,386,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,NGRCP,8739,9130,9706,10025,10487,10797,10884,12341,12642,13505,13890,14019,14247,13867,13280,13181,13985,12412,13343,13245,13730,13686,13041,13007,17374,16605,17296,16729,17471,17433,15137,15286,16587,16589,15865,15690,17290,15807,13249,14147,15437,12947,14249,15156,14276,13853,11412,13371,13222,13466,13608,12386,11260,13214,14242,13494,11379,11904,13112,12065
-2019F,DC,NGTCP,12513,13257,14244,14961,15884,16909,17198,21409,22463,24686,25986,27227,28520,27815,27232,25899,28696,25799,26133,29655,27868,29023,29280,29340,29449,28902,29587,30988,32719,33423,28864,31101,32956,33093,30849,33003,33908,34110,30413,32286,33474,29802,32898,32814,32227,32085,29049,32966,31881,33178,33251,32863,28561,32743,33847,32236,28888,29458,31489,30544
-2019F,DC,NGTPP,16.4,17,18.1,18.7,19.9,21.2,21.7,27.1,28.9,32.4,34.4,36.3,38.4,38,37.9,36.6,41.5,38.1,39.3,45.6,43.7,45.6,46.2,46.4,46.5,45.5,46.4,48.7,51.9,53.5,47.7,51.8,55.2,55.6,52.4,56.9,59.2,60.1,53.8,56.6,58.5,51.9,57.4,57.7,56.8,56.6,50.9,57.4,54.9,56,54.9,53,44.9,50.3,51,47.6,42,42.3,44.7,43.1
-2019F,DC,NGTXP,12513,13257,14244,14961,15884,16909,17198,21409,22463,24686,25986,27227,28520,27815,27232,25899,28696,25799,26133,29655,27868,29023,29280,29340,29449,28902,29587,30988,32719,33423,28864,31101,32956,33093,30849,33003,33908,34110,30413,32286,33474,29802,32898,32814,32227,32085,29049,32966,31881,33178,33251,31860,28561,32743,33847,32236,28888,29458,31489,30544
-2019F,DC,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,OPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,OPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,OPTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,P1ICP,80,72,80,60,56,70,61,54,49,33,35,40,31,35,80,132,141,295,285,324,285,95,26,41,36,37,39,40,42,34,38,29,28,35,33,33,29,42,36,34,36,33,34,27,25,24,24,32,29,606,674,615,650,662,643,615,502,523,490,412
-2019F,DC,P1TCP,292,278,256,253,205,194,150,173,158,111,119,161,113,110,143,190,199,354,347,388,345,150,78,96,95,151,99,106,107,147,104,86,86,97,99,224,187,307,393,326,340,293,88,77,74,78,79,87,77,649,688,629,663,674,659,629,515,533,501,424
-2019F,DC,P1TXP,292,278,256,253,205,194,150,173,158,111,119,161,113,110,143,190,199,354,347,388,345,150,78,96,95,151,99,106,107,147,104,86,86,97,99,224,187,307,393,326,340,293,88,77,74,78,79,87,77,649,688,629,663,674,659,629,515,533,501,424
-2019F,DC,PAACP,5317,5480,5542,5563,5839,6331,6332,6097,6185,6148,6182,6255,6293,7170,7306,6887,7007,6881,6408,5458,4870,5182,6484,5068,4944,4873,5276,5026,5231,5112,4750,4749,4786,4879,4730,4688,4529,4639,4490,4586,4779,4396,4167,4019,4266,3600,3306,3307,2875,2931,2822,2911,2627,2620,2925,2908,3062,2594,2926,3119
-2019F,DC,PACCP,2621,2212,2425,2611,3391,5145,5296,6221,6025,6075,6464,5824,4632,4334,2963,2069,1739,1773,1597,832,725,405,616,1533,2005,1205,2150,1587,875,798,893,940,941,1095,1250,1190,1179,792,787,587,860,1004,808,627,637,654,418,330,263,331,407,389,137,121,107,188,187,144,173,146
-2019F,DC,PAEIP,12,9,10,10,16,14,24,33,1432,3236,3889,3659,4938,5591,3859,2178,2690,3755,3869,2329,1572,863,252,574,737,316,474,616,1100,1490,871,497,250,477,664,477,290,197,566,547,379,336,620,190,130,540,231,197,163,85,434,275,26,0,0,0,0,0,0,0
-2019F,DC,PAICP,1241,1053,1163,1266,1782,3076,3210,3706,3314,3445,3710,3488,2534,2268,1456,970,742,958,831,664,534,513,258,72,74,139,193,137,110,116,133,93,108,91,121,95,89,121,81,194,98,197,201,287,207,177,179,138,126,696,716,676,711,716,710,670,577,573,547,470
-2019F,DC,PARCP,1382,1212,1235,1236,1224,1285,1249,1392,1557,1464,1644,1306,1301,1366,1274,1169,1194,1161,1139,847,755,284,513,555,653,564,456,479,347,174,182,196,202,181,154,292,310,266,242,215,222,201,353,364,389,352,184,206,146,178,212,36,184,144,142,188,20,17,119,11
-2019F,DC,PATCP,10573,9967,10375,10686,12252,15850,16112,17448,18513,20368,21889,20531,19698,20728,16858,13273,13372,14528,13844,10130,8455,7247,8123,7801,8412,7098,8550,7845,7664,7690,6829,6474,6286,6724,6919,6742,6396,6015,6165,6130,6337,6134,6149,5488,5629,5322,4318,4178,3573,4221,4592,4287,3685,3600,3884,3954,3847,3327,3764,3746
-2019F,DC,PATPP,13.8,12.8,13.2,13.4,15.4,19.9,20.4,22.1,23.8,26.7,29,27.4,26.5,28.3,23.5,18.8,19.3,21.5,20.8,15.6,13.2,11.4,12.8,12.3,13.3,11.2,13.4,12.3,12.2,12.3,11.3,10.8,10.5,11.3,11.7,11.6,11.2,10.6,10.9,10.7,11.1,10.7,10.7,9.7,9.9,9.4,7.6,7.3,6.2,7.1,7.6,6.9,5.8,5.5,5.9,5.8,5.6,4.8,5.3,5.3
-2019F,DC,PATXP,10561,9958,10365,10676,12236,15837,16088,17415,17081,17132,17999,16873,14761,15137,12999,11095,10682,10773,9975,7801,6884,6384,7871,7227,7675,6782,8076,7229,6563,6200,5958,5978,6036,6247,6255,6266,6106,5818,5599,5582,5958,5798,5529,5298,5499,4782,4086,3981,3410,4136,4158,4011,3659,3600,3884,3954,3847,3327,3764,3746
-2019F,DC,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,11,3,0,0,0
-2019F,DC,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0,3,1,1,0,0,0,0,1
-2019F,DC,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,3,3,3,0,0,2,3,2
-2019F,DC,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,0,0,1,3,1,1,1,1,2
-2019F,DC,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,7,13,4,3,4,5
-2019F,DC,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,7,13,4,3,4,5
-2019F,DC,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DC,RFACP,28,33,29,18,18,6,0,5,9,16,13,5,146,509,789,350,462,462,417,49,59,180,1321,353,186,202,80,0,10,39,3,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,RFCCP,1443,1168,1327,1516,2331,4044,4226,5041,4703,4829,5081,4708,3504,3160,1861,1051,700,764,608,81,37,78,110,491,671,286,1000,822,222,128,218,221,266,205,168,130,96,34,4,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,RFEIP,9,7,7,7,12,10,17,23,1014,2291,2755,3045,4666,5347,3557,2088,2625,3630,3635,2236,1462,797,215,464,607,250,405,533,935,1276,798,442,194,442,566,402,241,126,450,440,209,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,RFICP,949,767,877,1003,1536,2689,2798,3332,3071,3141,3296,3096,2273,2051,1214,686,463,502,399,52,54,18,40,2,3,1,0,0,0,0,1,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,RFTCP,2428,1974,2239,2544,3897,6749,7041,8401,8798,10277,11144,10854,10589,11068,7421,4174,4250,5358,5059,2419,1612,1074,1687,1310,1466,740,1485,1355,1168,1443,1020,664,469,647,735,532,337,160,454,442,210,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,RFTXP,2420,1968,2232,2537,3885,6739,7024,8378,7784,7986,8390,7809,5923,5721,3864,2087,1625,1728,1424,183,150,276,1472,846,859,489,1080,822,232,168,222,222,275,205,168,130,96,34,4,2,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,SGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,6,17,20,20,22,23,15,29,43,50
-2019F,DC,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9
-2019F,DC,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,5,6,8,10,16,23,29,44
-2019F,DC,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,8,21,25,26,31,32,32,52,71,103
-2019F,DC,TPOPP,765,778,788,798,798,797,791,791,778,762,756,750,742,731,718,707,692,677,665,650,638,637,634,632,633,635,638,637,630,624,605,601,598,595,589,581,572,568,565,570,572,575,573,569,568,567,571,574,580,592,605,620,636,652,664,677,688,697,704,708
-2019F,DC,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DC,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,1,0,7,1,0,-2,0,0,0,0,0,11,10,13,16,8,12,8,13,16,15,22,18,1,4,0,0,0,0,0,-1,0,-1,-1,0,-3,-2
-2019F,DE,ARICP,239,172,198,234,431,571,595,587,637,561,518,655,560,454,626,653,501,285,210,412,350,419,442,208,238,827,609,573,410,522,537,142,78,112,163,176,298,143,168,179,514,751,1037,719,650,657,641,496,665,279,232,741,678,403,424,534,508,510,457,358
-2019F,DE,ARTCP,239,172,198,234,431,571,595,587,637,561,518,655,560,454,626,653,501,285,210,412,350,419,442,208,238,827,609,573,410,522,537,142,78,112,163,176,298,143,168,179,514,751,1037,719,650,657,641,496,665,279,232,741,678,403,424,534,508,510,457,358
-2019F,DE,ARTXP,239,172,198,234,431,571,595,587,637,561,518,655,560,454,626,653,501,285,210,412,350,419,442,208,238,827,609,573,410,522,537,142,78,112,163,176,298,143,168,179,514,751,1037,719,650,657,641,496,665,279,232,741,678,403,424,534,508,510,457,358
-2019F,DE,AVACP,19,18,42,69,119,150,92,75,58,38,20,11,18,11,59,15,19,24,18,20,10,9,14,16,13,16,20,16,18,18,78,17,18,51,57,53,52,64,55,15,20,62,90,79,75,136,140,138,105,98,55,52,48,42,68,8,8,9,10,10
-2019F,DE,AVTCP,19,18,42,69,119,150,92,75,58,38,20,11,18,11,59,15,19,24,18,20,10,9,14,16,13,16,20,16,18,18,78,17,18,51,57,53,52,64,55,15,20,62,90,79,75,136,140,138,105,98,55,52,48,42,68,8,8,9,10,10
-2019F,DE,AVTXP,19,18,42,69,119,150,92,75,58,38,20,11,18,11,59,15,19,24,18,20,10,9,14,16,13,16,20,16,18,18,78,17,18,51,57,53,52,64,55,15,20,62,90,79,75,136,140,138,105,98,55,52,48,42,68,8,8,9,10,10
-2019F,DE,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,3,2,8,6,30,31,37,62,64,42,31
-2019F,DE,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,3,2,8,6,30,31,37,62,64,42,31
-2019F,DE,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,CLACP,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,CLCCP,8,8,7,7,6,6,5,4,4,4,3,4,3,4,3,3,3,3,2,2,3,2,10,4,2,5,7,31,14,16,18,16,0,40,26,1,4,5,6,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,CLEIP,737,762,832,976,1079,1055,1447,1506,1646,1590,1497,1458,909,816,849,905,783,703,778,887,942,1840,1720,2700,2618,2543,2350,2449,2420,2128,2056,1958,1628,2223,2007,1816,1787,1685,1592,1244,1755,1480,1541,1787,2055,2208,2189,2462,2391,1352,1230,717,682,708,397,276,227,186,167,85
-2019F,DE,CLICP,32,31,29,42,41,35,33,27,36,41,35,26,25,31,23,27,24,27,111,78,184,190,175,154,192,217,206,221,248,209,214,208,142,174,189,194,164,174,174,148,179,172,99,100,119,117,102,103,85,22,0,0,0,0,0,0,102,0,0,0
-2019F,DE,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,CLOCP,32,31,29,42,41,35,33,27,36,41,35,26,25,31,23,27,24,27,111,78,184,190,175,154,192,217,206,221,248,209,214,208,142,174,189,194,164,174,174,148,179,172,99,100,119,117,102,103,85,22,0,0,0,0,0,0,102,0,0,0
-2019F,DE,CLRCP,12,11,10,9,9,7,6,6,5,5,4,4,2,2,2,1,1,1,1,0,1,1,2,1,1,1,2,9,4,4,4,4,0,9,4,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,CLTCP,791,812,878,1033,1135,1103,1491,1543,1691,1640,1541,1491,939,853,878,937,811,733,892,968,1130,2033,1907,2859,2813,2766,2565,2710,2686,2357,2293,2186,1770,2446,2226,2011,1956,1866,1773,1393,1934,1653,1640,1887,2174,2325,2291,2566,2476,1374,1230,717,682,708,397,276,329,186,167,85
-2019F,DE,CLTXP,54,50,46,57,56,48,44,37,45,49,43,34,30,37,29,31,28,30,114,81,188,193,187,159,195,223,215,260,266,229,236,228,142,223,219,195,169,180,181,149,180,173,99,100,119,117,102,104,85,22,0,0,0,0,0,0,102,0,0,0
-2019F,DE,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,DFACP,166,165,201,292,222,256,286,314,368,358,385,452,313,409,506,510,636,680,692,770,963,939,950,1160,1195,1264,1490,1616,1470,1818,1342,1419,1366,1600,1482,1493,1555,1522,1519,1398,2151,1384,1483,1512,1595,1662,1683,1660,1438,1409,1404,1444,1380,1398,1477,1487,1562,1668,1885,1881
-2019F,DE,DFCCP,572,519,609,701,642,636,623,643,762,757,785,798,858,806,753,719,796,779,691,569,634,632,414,302,356,373,273,413,447,331,401,509,405,355,288,282,383,338,290,324,274,303,339,302,300,238,283,239,190,270,221,183,185,177,232,288,203,165,228,175
-2019F,DE,DFEIP,8,8,14,17,19,17,21,28,84,188,307,168,96,188,314,135,110,188,176,116,187,119,84,133,137,101,111,133,172,277,110,119,126,103,247,160,222,122,120,213,261,221,182,531,83,96,74,57,87,114,97,52,35,26,71,56,79,25,226,22
-2019F,DE,DFICP,482,487,686,613,692,715,742,679,756,834,794,863,874,902,865,1079,979,1127,871,685,616,406,413,421,495,473,469,482,511,501,516,515,402,389,380,339,503,452,431,475,485,596,613,513,468,573,470,439,311,552,285,294,229,220,275,327,273,243,247,309
-2019F,DE,DFRCP,1485,1347,1580,1820,1665,1651,1616,1667,1976,1965,2037,2069,2226,2092,1954,1866,2065,2021,1792,1477,1316,1029,894,1365,1606,1486,1178,1532,1595,1469,1149,1177,1211,1211,1312,1113,1091,905,805,912,1138,1004,990,1089,965,908,707,638,580,595,575,464,363,431,466,488,356,306,433,429
-2019F,DE,DFTCP,2712,2526,3090,3443,3239,3275,3288,3331,3946,4103,4308,4350,4367,4398,4391,4309,4586,4794,4222,3617,3716,3125,2755,3382,3788,3696,3521,4176,4194,4397,3518,3739,3510,3657,3710,3386,3755,3339,3164,3322,4309,3508,3607,3947,3412,3476,3216,3033,2606,2939,2583,2437,2192,2251,2521,2646,2473,2408,3019,2817
-2019F,DE,DFTXP,2704,2518,3076,3426,3220,3258,3267,3303,3863,3914,4002,4182,4270,4210,4077,4174,4476,4606,4045,3502,3529,3006,2671,3249,3651,3595,3409,4043,4022,4120,3408,3620,3384,3555,3462,3226,3532,3218,3044,3108,4048,3287,3426,3416,3329,3380,3142,2976,2519,2825,2485,2385,2157,2225,2450,2590,2395,2383,2793,2794
-2019F,DE,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,3,0
-2019F,DE,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1439,1722,2618,1259,1200,1751,1975,4123,4716,5013,6653,5786,7376,6637,5349,5391,5675,5184,5877,7723,6799,6085,4441,5141,5093,5206,4086,5097,6923,7552
-2019F,DE,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,3,0
-2019F,DE,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,780,970,802,869,1108,1034,999,1035,1041,1122,1159,1198,1230,1329
-2019F,DE,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,24,24,25,25,25
-2019F,DE,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,17,11,11,18,17,17,17,17,14,15,15,15,15
-2019F,DE,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,789,988,814,880,1127,1052,1016,1053,1059,1160,1198,1237,1269,1370
-2019F,DE,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,ESCCP,361,396,406,443,487,536,595,639,755,816,889,965,1094,1211,1128,1333,1357,1413,1435,1492,1514,1427,1461,1546,1640,1698,1864,1985,2156,2282,2361,2471,2498,2660,2745,2900,2970,3124,3280,3407,4099,3667,3847,3886,4033,4238,4196,4321,4339,4185,4320,4260,4243,4158,4197,4219,4235,4185,4342,4421
-2019F,DE,ESICP,863,806,924,1106,1248,1373,1652,1783,2291,2481,2527,2474,2667,2782,2777,2176,2287,2274,2423,2597,2439,2309,2135,2462,2685,2693,2839,2701,2854,3160,3272,3241,3248,3417,3447,3511,3399,3741,3779,3613,3601,3978,4151,4523,3423,3305,3100,3078,2982,2738,2526,2591,2755,2620,2496,2430,2260,2281,2361,2044
-2019F,DE,ESRCP,496,538,565,609,665,729,815,879,969,1051,1169,1248,1304,1444,1377,1640,1716,1790,1821,1816,1866,1443,1466,1546,1904,1924,2121,2329,2533,2623,2651,2824,2786,3044,3107,3168,3271,3257,3339,3532,3575,3734,4020,4190,4305,4594,4259,4470,4428,4335,4760,4632,4522,4570,4645,4849,4763,4663,5070,5004
-2019F,DE,ESRPP,1105,1167,1205,1261,1339,1438,1579,1674,1814,1947,2121,2211,2277,2499,2369,2796,2907,3025,3062,3052,3137,2422,2447,2553,3113,3112,3380,3657,3911,3984,3960,4135,4009,4309,4330,4342,4415,4334,4374,4557,4546,4693,4987,5123,5181,5436,4956,5127,5010,4861,5291,5104,4939,4946,4978,5147,5014,4867,5243,5124
-2019F,DE,ESTCP,1720,1740,1895,2159,2401,2637,3062,3302,4014,4348,4585,4687,5066,5437,5283,5149,5360,5477,5679,5905,5819,5180,5063,5553,6229,6315,6824,7015,7543,8065,8284,8536,8532,9121,9299,9580,9641,10122,10398,10552,11274,11379,12019,12600,11761,12137,11555,11869,11749,11258,11606,11483,11519,11348,11338,11498,11258,11129,11773,11469
-2019F,DE,ESTPP,3831,3774,4040,4470,4830,5202,5934,6289,7517,8052,8321,8300,8842,9410,9086,8778,9082,9254,9548,9925,9781,8692,8450,9172,10186,10213,10874,11014,11648,12252,12372,12496,12278,12913,12959,13127,13011,13470,13622,13616,14337,14300,14908,15403,14156,14361,13447,13615,13292,12625,12901,12653,12582,12280,12151,12205,11851,11617,12175,11743
-2019F,DE,ESTXP,1720,1740,1895,2159,2401,2637,3062,3302,4014,4348,4585,4687,5066,5437,5283,5149,5360,5477,5679,5905,5819,5180,5063,5553,6229,6315,6824,7015,7543,8065,8284,8536,8532,9121,9299,9580,9641,10122,10398,10552,11274,11379,12019,12600,11761,12137,11555,11869,11749,11258,11606,11483,11519,11348,11338,11498,11258,11129,11773,11469
-2019F,DE,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,FSICP,0,0,0,109,106,123,135,119,119,118,139,174,153,122,137,148,154,147,163,102,119,62,70,86,113,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,HLACP,2,1,1,2,2,3,3,4,4,8,13,20,23,20,21,36,35,39,56,13,14,8,10,11,7,5,45,3,6,7,6,6,6,5,7,5,4,7,3,2,2,0,3,2,3,4,4,2,13,3,4,4,5,3,5,6,23,27,33,34
-2019F,DE,HLCCP,58,71,77,94,106,94,111,134,135,150,136,128,136,123,121,129,145,124,112,867,123,148,123,147,175,194,135,161,178,179,187,206,202,220,229,281,299,321,341,305,240,306,326,269,403,296,272,203,270,335,289,269,277,279,315,349,283,193,265,273
-2019F,DE,HLICP,798,839,944,991,1093,1165,1190,1257,1431,1665,1753,1806,2120,2299,2278,2154,2162,2193,2361,3997,2744,332,431,351,679,293,347,424,369,300,363,350,192,219,434,346,628,55,199,20,140,251,115,247,192,342,374,218,174,175,102,168,162,176,180,194,238,117,233,265
-2019F,DE,HLRCP,149,185,199,243,275,245,287,348,350,388,353,332,352,319,314,335,376,323,291,2251,318,385,320,381,455,503,351,418,463,464,487,536,525,571,595,730,776,834,884,791,624,794,846,876,757,759,599,702,738,870,1000,826,675,756,861,840,601,597,748,679
-2019F,DE,HLTCP,1007,1096,1222,1330,1476,1507,1592,1743,1919,2210,2255,2286,2631,2761,2735,2654,2717,2679,2819,7128,3199,873,884,889,1316,994,878,1006,1017,950,1043,1098,925,1015,1264,1361,1707,1217,1427,1118,1006,1352,1290,1393,1355,1401,1249,1124,1195,1383,1395,1266,1118,1213,1361,1389,1145,935,1279,1251
-2019F,DE,HLTXP,1007,1096,1222,1330,1476,1507,1592,1743,1919,2210,2255,2286,2631,2761,2735,2654,2717,2679,2819,7128,3199,873,884,889,1316,994,878,1006,1017,950,1043,1098,925,1015,1264,1361,1707,1217,1427,1118,1006,1352,1290,1393,1355,1401,1249,1124,1195,1383,1395,1266,1118,1213,1361,1389,1145,935,1279,1251
-2019F,DE,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,HYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,HYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,JFACP,2144,2180,2355,2427,2514,2086,2226,2397,2782,2453,2062,2032,1905,1729,1756,1654,1582,1666,1416,1419,1573,1482,1484,1374,1586,1569,1341,1287,1362,1255,1306,2397,1451,1440,566,76,62,73,87,105,104,129,124,142,166,167,144,113,117,80,1185,911,775,516,612,816,1009,1331,1557,1430
-2019F,DE,JFTCP,2144,2180,2355,2427,2514,2086,2226,2397,2782,2453,2062,2032,1905,1729,1756,1654,1582,1666,1416,1419,1573,1482,1484,1374,1586,1569,1341,1287,1362,1255,1306,2397,1451,1440,566,76,62,73,87,105,104,129,124,142,166,167,144,113,117,80,1185,911,775,516,612,816,1009,1331,1557,1430
-2019F,DE,JFTXP,2144,2180,2355,2427,2514,2086,2226,2397,2782,2453,2062,2032,1905,1729,1756,1654,1582,1666,1416,1419,1573,1482,1484,1374,1586,1569,1341,1287,1362,1255,1306,2397,1451,1440,566,76,62,73,87,105,104,129,124,142,166,167,144,113,117,80,1185,911,775,516,612,816,1009,1331,1557,1430
-2019F,DE,KSCCP,114,100,111,112,75,85,93,73,68,61,51,51,47,42,34,30,31,21,19,37,9,8,12,9,20,51,17,17,27,6,10,13,1,7,8,2,6,16,12,52,136,127,4,7,10,15,27,11,5,1,2,2,1,2,3,2,2,1,2,2
-2019F,DE,KSICP,45,101,71,29,110,136,74,46,44,25,20,12,34,21,34,32,35,19,16,16,17,3,4,23,34,4,2,14,12,9,4,8,3,30,149,5,49,6,2,3,7,5,1,3,6,341,20,0,0,4,4,0,0,1,0,0,0,0,0,0
-2019F,DE,KSRCP,807,707,791,795,532,604,662,517,483,437,365,362,335,298,243,215,223,150,132,263,275,256,324,238,568,649,319,337,303,269,144,165,144,106,96,120,180,121,164,125,131,113,65,87,127,134,108,49,25,53,40,25,11,11,18,13,14,7,8,8
-2019F,DE,KSTCP,966,907,974,936,717,825,829,636,595,523,437,425,416,361,311,277,290,191,166,316,301,267,340,270,622,705,338,368,342,284,159,187,148,143,253,127,235,143,178,179,274,245,71,98,143,490,156,60,30,59,46,27,11,14,21,15,16,8,10,11
-2019F,DE,KSTXP,966,907,974,936,717,825,829,636,595,523,437,425,416,361,311,277,290,191,166,316,301,267,340,270,622,705,338,368,342,284,159,187,148,143,253,127,235,143,178,179,274,245,71,98,143,490,156,60,30,59,46,27,11,14,21,15,16,8,10,11
-2019F,DE,LUACP,74,72,63,63,66,71,74,62,68,65,67,71,76,65,62,52,57,64,68,71,64,61,56,58,62,58,57,64,62,63,65,58,59,61,63,62,60,64,67,67,66,61,60,56,56,56,55,56,52,47,61,55,53,54,57,64,63,59,59,59
-2019F,DE,LUICP,37,36,46,46,49,40,42,40,44,41,41,41,44,46,44,31,34,75,81,85,75,72,66,69,74,69,67,76,73,75,77,69,70,72,75,74,71,75,79,80,79,72,71,66,67,66,65,67,62,56,43,40,30,32,32,41,33,32,32,31
-2019F,DE,LUTCP,111,108,109,109,114,112,116,101,111,106,108,112,120,111,106,82,91,139,149,156,139,133,122,127,136,126,124,140,135,138,142,127,130,132,138,136,132,139,146,147,145,133,131,121,123,122,119,123,114,103,104,96,83,86,89,104,95,90,91,90
-2019F,DE,LUTXP,111,108,109,109,114,112,116,101,111,106,108,112,120,111,106,82,91,139,149,156,139,133,122,127,136,126,124,140,135,138,142,127,130,132,138,136,132,139,146,147,145,133,131,121,123,122,119,123,114,103,104,96,83,86,89,104,95,90,91,90
-2019F,DE,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-419,-363,-259,-125,-368,-507,-228,-105,101,96,-46,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,MGACP,4096,4564,4423,4713,4712,4921,5147,5243,5543,5841,6131,6407,6622,7048,6885,6973,7299,7246,7243,6915,6533,6795,6531,7151,7355,7464,7619,7785,8089,8052,7929,7712,8067,8238,8232,8398,8375,8510,8982,9163,8928,9170,9821,9766,9927,10418,10706,10834,10465,10434,10441,10007,10012,10048,10023,10767,11190,11508,11915,12651
-2019F,DE,MGCCP,13,13,20,13,18,11,18,18,20,25,24,25,19,20,24,32,38,35,36,38,45,52,60,40,27,38,39,42,40,39,35,34,35,9,8,8,8,8,11,20,12,30,11,11,6,10,7,7,7,7,7,7,6,7,6,231,234,237,239,241
-2019F,DE,MGICP,205,178,317,277,155,144,138,130,131,117,92,94,95,74,96,63,58,51,47,46,35,34,29,25,58,54,61,59,56,65,48,51,51,64,64,64,70,70,86,77,58,99,113,117,132,102,114,193,142,137,168,169,165,170,162,138,140,141,145,141
-2019F,DE,MGTCP,4314,4755,4760,5002,4885,5076,5303,5392,5694,5982,6247,6526,6737,7142,7005,7069,7395,7333,7326,6999,6614,6882,6620,7216,7440,7556,7719,7885,8184,8155,8012,7797,8153,8312,8304,8471,8453,8587,9079,9259,8999,9299,9945,9894,10065,10530,10827,11034,10613,10578,10615,10183,10184,10225,10192,11136,11564,11887,12299,13034
-2019F,DE,MGTXP,4314,4755,4760,5002,4885,5076,5303,5392,5694,5982,6247,6526,6737,7142,7005,7069,7395,7333,7326,6999,6614,6882,6620,7216,7440,7556,7719,7885,8184,8155,8012,7797,8153,8312,8304,8471,8453,8587,9079,9259,8999,9299,9945,9894,10065,10530,10827,11034,10613,10578,10615,10183,10184,10225,10192,11136,11564,11887,12299,13034
-2019F,DE,MSICP,0,0,0,0,0,0,0,0,0,0,0,35,36,44,57,77,248,281,244,226,214,150,131,118,101,102,75,75,91,84,76,118,77,73,82,75,79,86,105,99,105,99,106,99,89,89,34,33,35,38,39,41,40,22,23,24,24,0,0,0
-2019F,DE,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,NGACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,34,11,5,5,4,4,4,4,4,4,4,4,14,19,24,36,45,82,102,69,95,90,102,49,24,21,22,23,141,465,1046,971,1042,1126,949,869,736,566
-2019F,DE,NGCCP,566,710,879,994,1092,1298,1542,1968,2084,2526,2804,3010,3205,3093,3169,2964,3078,2815,3005,2842,3246,3783,3577,3428,3827,3412,3514,3741,4041,4184,4042,4253,4965,5195,5459,5743,6694,6608,5590,6119,5125,5680,7477,8437,8465,8383,8134,8628,8868,11684,12193,10478,10034,11170,11882,11731,12340,13380,15593,15590
-2019F,DE,NGEIP,3190,3118,3623,3369,3851,4611,4246,3913,3530,3895,3744,3973,2430,2310,891,1697,2297,1290,1485,5143,6999,5684,5202,5023,7060,7266,1796,7847,2824,7999,10776,14354,8384,8665,17399,27010,23370,16092,11135,19879,8371,15129,17460,11712,13067,12875,9522,13493,11181,10990,24383,38984,53295,41487,46136,45450,54156,44961,36328,28101
-2019F,DE,NGICP,1467,1280,5356,6996,6893,6366,7059,8338,11377,11967,12030,11297,10095,10032,8925,6957,6427,4473,8675,10007,12642,14366,12343,20203,25216,21600,20834,18038,14803,15141,17036,16147,18060,19453,17216,19399,14164,14805,16287,21075,25325,20059,17634,15172,16025,15257,16398,16014,18216,17402,7983,19760,28737,32154,31004,33126,31457,29860,30783,33865
-2019F,DE,NGRCP,3812,4272,4634,5019,5255,5694,6198,6844,7068,7475,7843,8172,8358,7514,7380,6985,7380,7209,7458,6986,6910,6807,6677,6219,6855,6210,6861,7074,7586,7595,7270,7189,8194,8295,8557,8505,9791,8972,7755,8862,9467,9175,9550,10766,10399,10339,9111,10000,9875,10049,10126,10030,8564,10197,11316,11260,9660,9896,12076,11643
-2019F,DE,NGTCP,9035,9380,14492,16378,17091,17969,19045,21063,24059,25863,26421,26452,24088,22949,20365,18603,19182,15787,20626,24981,29797,30643,27833,34884,42963,38493,33009,36704,29258,34923,39127,41948,39608,41612,48646,60676,54043,46513,40812,56016,48391,50113,52216,46177,48057,46904,43190,48155,48162,50148,54826,79717,101676,95979,101380,102693,108562,98966,95516,89765
-2019F,DE,NGTPP,20.1,20.3,30.9,33.9,34.4,35.4,36.9,40.1,45.1,47.9,48,46.8,42,39.7,35,31.7,32.5,26.7,34.7,42,50.1,51.4,46.5,57.6,70.3,62.3,52.6,57.6,45.2,53.1,58.4,61.4,57,58.9,67.8,83.1,72.9,61.9,53.5,72.3,61.5,63,64.8,56.5,57.8,55.5,50.3,55.2,54.5,56.2,60.9,87.8,111.1,103.9,108.6,109,114.3,103.3,98.8,91.9
-2019F,DE,NGTXP,5845,6262,10869,13009,13240,13358,14799,17150,20529,21968,22677,22479,21658,20639,19474,16906,16885,14497,19141,19838,22798,24959,22631,29861,35903,31227,31213,28857,26434,26925,28352,27593,31223,32947,31247,33666,30673,30422,29677,36137,40020,34984,34756,34466,34990,34029,33668,34662,36981,39158,30443,40733,48381,54492,55244,57243,54406,54005,59188,61664
-2019F,DE,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,OPICP,1914,1851,1894,1939,1940,2012,1957,1874,1931,2007,1952,1977,2057,1997,1957,1953,2212,2247,2311,2198,2128,1090,1129,1441,1434,1224,1194,1454,1829,1882,1877,1657,2021,1795,1955,1837,2288,2276,2158,2248,2033,2630,2482,2719,2650,2892,2949,2855,2524,42,46,2793,2859,2684,2462,2495,2558,2599,2546,2595
-2019F,DE,OPTCP,1914,1851,1894,1939,1940,2012,1957,1874,1931,2007,1952,1977,2057,1997,1957,1953,2212,2247,2311,2198,2128,1090,1129,1441,1434,1224,1194,1454,1829,1882,1877,1657,2021,1795,1955,1837,2288,2276,2158,2248,2033,2630,2482,2719,2650,2892,2949,2855,2524,42,46,2793,2859,2684,2462,2495,2558,2599,2546,2595
-2019F,DE,OPTXP,1914,1851,1894,1939,1940,2012,1957,1874,1931,2007,1952,1977,2057,1997,1957,1953,2212,2247,2311,2198,2128,1090,1129,1441,1434,1224,1194,1454,1829,1882,1877,1657,2021,1795,1955,1837,2288,2276,2158,2248,2033,2630,2482,2719,2650,2892,2949,2855,2524,42,46,2793,2859,2684,2462,2495,2558,2599,2546,2595
-2019F,DE,P1ICP,4161,4086,4423,4598,4815,5130,5009,4838,4635,4610,4088,4308,4276,4086,4130,4313,4431,4111,4070,4185,3949,2238,2524,3092,2840,3260,3094,3265,3607,3721,5256,3079,5166,4920,5285,4972,5680,5515,5130,5285,4334,4962,5202,5321,4784,5449,4956,4771,4616,381,1442,5188,4917,4388,4294,4475,4515,4559,4355,4336
-2019F,DE,P1TCP,5175,4983,5431,5637,5607,6040,5930,5565,5311,5210,5832,5901,5602,5122,5059,4861,5086,4761,4738,5011,4777,2890,3200,3761,3833,4385,3941,4073,4342,4395,6963,4647,7079,5145,5509,5209,5979,5780,5428,5544,4688,5325,5422,5551,5051,5791,5285,5025,4804,580,1599,5322,5030,4497,4439,4562,4602,4635,4434,4416
-2019F,DE,P1TXP,5175,4983,5431,5637,5607,6040,5930,5565,5311,5210,4592,4802,4752,4501,4528,4624,4762,4370,4307,4576,4307,2572,2930,3414,3503,4034,3507,3699,4016,4077,5553,3333,5388,5145,5509,5209,5979,5780,5428,5544,4688,5325,5422,5551,5051,5791,5285,5025,4804,580,1599,5322,5030,4497,4439,4562,4602,4635,4434,4416
-2019F,DE,PAACP,7965,8093,7775,8004,8131,8076,8243,8466,9591,9725,9350,9486,9878,10511,10497,10201,10659,10561,10211,9750,9970,9582,9247,10294,10681,10608,11159,11973,11880,12095,11625,12918,11993,12525,11655,11117,12105,11906,12085,12493,12908,12110,12749,12552,12810,13533,13882,14047,13440,13083,13462,12479,12506,12142,12358,13212,14011,14628,15477,16156
-2019F,DE,PACCP,2568,2192,2344,2585,2491,2908,2985,2353,2302,2598,2733,2724,2771,2992,2159,2114,2359,2551,2032,3188,5076,2801,1824,683,830,727,621,798,870,787,812,813,732,808,691,704,917,877,777,799,888,982,894,862,910,738,752,566,485,613,518,461,470,464,556,871,723,598,734,691
-2019F,DE,PAEIP,48,47,86,102,114,100,129,168,506,1133,3084,2874,5010,6559,8223,6547,7305,8154,8659,7421,6488,5568,3923,3990,3618,3102,4204,2969,4691,4275,3510,4122,4399,3397,2727,1495,1969,1435,2111,2059,1133,2381,1240,2190,1033,1290,196,322,179,187,104,64,46,34,140,120,96,51,334,35
-2019F,DE,PAICP,8577,8083,8896,9070,9011,9939,9952,8907,8809,9575,9370,9531,10155,11281,9873,9488,9686,9613,8894,10988,9152,4407,4802,4728,5218,4729,4669,5165,5663,5551,6919,4939,7035,7325,7949,7291,8342,7308,6824,7027,6455,7250,7202,6845,6351,7181,6522,6141,5730,1588,2350,6079,5646,5030,4911,5135,5167,5062,4981,5052
-2019F,DE,PARCP,2441,2240,2570,2858,2472,2500,2565,2532,2810,2790,2755,2763,2913,2709,2511,2415,2664,2493,2214,3990,1909,1670,1539,1984,2629,2638,1848,2286,2361,2202,1780,1878,1879,1887,2003,1963,2047,1861,1853,1827,1893,1911,1902,2052,1850,1800,1414,1388,1343,1517,1615,1314,1048,1198,1346,1342,971,911,1189,1116
-2019F,DE,PATCP,21599,20655,21672,22619,22218,23522,23875,22426,24018,25821,27293,27379,30727,34051,33263,30765,32673,33373,32010,35338,32596,24029,21334,21678,22976,21803,22500,23193,25465,24909,24646,24670,26039,25942,25024,22569,25380,23386,23649,24206,23277,24634,23987,24500,22953,24542,22767,22464,21177,16988,18049,20397,19716,18868,19311,20679,20968,21248,22715,23050
-2019F,DE,PATPP,48.1,44.8,46.2,46.8,44.7,46.4,46.3,42.7,45,47.8,49.5,48.5,53.6,58.9,57.2,52.4,55.4,56.4,53.8,59.4,54.8,40.3,35.6,35.8,37.6,35.3,35.9,36.4,39.3,37.8,36.8,36.1,37.5,36.7,34.9,30.9,34.3,31.1,31,31.2,29.6,31,29.8,30,27.6,29,26.5,25.8,24,19.1,20.1,22.5,21.5,20.4,20.7,22,22.1,22.2,23.5,23.6
-2019F,DE,PATXP,21551,20607,21586,22517,22104,23422,23746,22258,23512,24688,24208,24505,25717,27493,25040,24218,25368,25219,23351,27917,26108,18460,17411,17688,19359,18701,18297,20223,20774,20635,21136,20548,21640,22545,22298,21074,23411,21951,21538,22147,22144,22253,22747,22311,21920,23252,22571,22142,20998,16801,17945,20333,19670,18834,19171,20559,20872,21198,22380,23015
-2019F,DE,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,PCEIP,0,0,0,0,0,0,0,0,0,0,1240,1099,851,621,531,237,324,391,431,434,470,318,270,348,330,351,434,374,326,317,1410,1314,1691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,PCICP,1927,1927,2213,2350,2285,2370,2341,2291,1980,1976,1556,1622,1581,1568,1469,1645,1648,1484,1453,1474,1379,654,883,1351,1061,1136,1223,1148,1283,1232,2761,1203,2994,2912,2944,2880,2973,3015,2724,2775,1702,1503,1611,1813,1410,1493,1280,1353,1365,0,1117,1614,1350,1269,1375,1406,1417,1419,1320,1353
-2019F,DE,PCTCP,1927,1927,2213,2350,2285,2370,2341,2291,1980,1976,2797,2720,2431,2188,2000,1881,1972,1876,1883,1908,1849,971,1153,1699,1391,1487,1657,1522,1609,1549,4171,2517,4685,2912,2944,2880,2973,3015,2724,2775,1702,1503,1611,1813,1410,1493,1280,1353,1365,0,1117,1614,1350,1269,1375,1406,1417,1419,1320,1353
-2019F,DE,PCTXP,1927,1927,2213,2350,2285,2370,2341,2291,1980,1976,1556,1622,1581,1568,1469,1645,1648,1484,1453,1474,1379,654,883,1351,1061,1136,1223,1148,1283,1232,2761,1203,2994,2912,2944,2880,2973,3015,2724,2775,1702,1503,1611,1813,1410,1493,1280,1353,1365,0,1117,1614,1350,1269,1375,1406,1417,1419,1320,1353
-2019F,DE,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,3,5,6,23,27,33,34
-2019F,DE,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,289,269,277,279,315,349,283,193,265,273
-2019F,DE,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,102,168,162,176,180,194,238,117,233,265
-2019F,DE,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1000,826,675,756,861,840,601,597,748,679
-2019F,DE,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1395,1266,1118,1213,1361,1389,1145,935,1279,1251
-2019F,DE,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1395,1266,1118,1213,1361,1389,1145,935,1279,1251
-2019F,DE,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,DE,RFACP,1464,1094,690,438,497,589,415,371,769,963,671,493,922,1229,1208,961,1031,843,718,541,812,289,201,522,464,232,588,1202,874,881,900,1308,1026,1129,1248,1030,1997,1666,1372,1743,1635,1304,1167,995,988,1090,1150,1243,1249,1012,312,5,233,81,116,65,157,25,19,90
-2019F,DE,RFCCP,1812,1489,1527,1665,1650,2081,2140,1485,1318,1605,1736,1723,1711,2001,1226,1204,1350,1591,1175,1677,4265,1960,1215,185,252,70,157,166,178,232,178,51,88,217,159,131,221,194,124,99,226,215,214,272,191,178,164,107,13,0,0,0,0,0,0,1,1,1,0,0
-2019F,DE,RFEIP,40,39,72,85,95,84,108,140,422,945,1537,1607,4063,5750,7378,6176,6871,7574,8052,6871,5831,5131,3570,3509,3150,2650,3658,2463,4193,3681,1991,2689,2582,3294,2479,1335,1747,1313,1991,1846,872,2160,1058,1659,950,1193,123,265,93,73,6,12,11,9,69,64,18,25,108,13
-2019F,DE,RFICP,2931,2493,2526,2591,2256,2785,2873,2002,1856,2350,2643,2461,2790,3921,2505,1878,2056,2132,1545,2075,1808,1396,1404,840,1146,649,698,935,1121,964,736,944,1224,1733,1786,1570,1460,1215,978,1169,1437,1342,1159,647,775,714,609,519,487,343,354,260,173,76,0,1,0,1,0,0
-2019F,DE,RFTCP,6246,5115,4816,4780,4498,5538,5535,3998,4364,5863,6588,6284,9486,12900,12317,10218,11308,12140,11490,11165,12717,8777,6391,5056,5012,3602,5101,4766,6365,5758,3804,4992,4920,6373,5672,4066,5425,4389,4465,4858,4170,5021,3599,3573,2904,3176,2046,2134,1842,1428,672,277,416,166,185,130,176,53,127,103
-2019F,DE,RFTXP,6207,5076,4744,4695,4403,5454,5428,3858,3942,4918,5051,4677,5423,7150,4939,4043,4437,4566,3438,4293,6886,3646,2821,1546,1862,952,1443,2303,2172,2077,1814,2303,2339,3079,3193,2731,3678,3076,2474,3012,3298,2861,2540,1914,1954,1982,1923,1869,1749,1356,666,265,406,157,117,66,158,27,19,90
-2019F,DE,SGICP,1882,1820,1866,1803,1808,1862,1821,1755,1812,1889,1813,1686,1779,1740,1674,1651,1595,1594,1633,1596,1531,1732,1822,1807,1883,1918,2192,2186,2288,2311,2298,2224,2285,2269,2227,2193,2211,2173,2341,2305,2396,2633,2585,2674,2652,2758,2775,2692,2579,0,0,2644,2700,2633,2580,2502,2519,2471,2498,2370
-2019F,DE,SNICP,0,0,0,0,0,0,0,0,0,0,0,83,89,90,89,77,216,225,270,274,263,0,0,0,0,0,0,0,0,0,0,75,89,89,69,61,153,148,220,298,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3,5,20,27,41,54,55,25,30,32,35
-2019F,DE,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,23,45,48,47,50,49,49,53
-2019F,DE,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,4,4,5,9,8
-2019F,DE,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,4,6,9,12,16,22,40,59,69,81
-2019F,DE,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,3,5,9,36,60,101,121,128,119,143,160,178
-2019F,DE,TPOPP,449,461,469,483,497,507,516,525,534,540,551,565,573,578,581,587,590,592,595,595,595,596,599,605,612,618,628,637,648,658,670,683,695,706,718,730,741,751,763,775,786,796,806,818,831,845,859,872,884,892,900,908,916,924,933,942,950,958,967,977
-2019F,DE,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-444,-540,-313,-538,-556,-568,-580,-444,-614,-593,-723,-577,-647,-445,-511,-179,-159,-527,-476,-684,-139,-247,-90,-133,5,129,118,-97,0,0,103,113,29,-141,-31,15,129,52,227
-2019F,DE,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,WXICP,31,31,28,27,25,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,10,10,10,10,12,11,11,9,8,25,22,21,21,22,10,8,7,4,6,5,6,0,0,0,0,0,0,0
-2019F,DE,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,4,5,5,5,5,5,5
-2019F,DE,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0
-2019F,DE,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,DE,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,4,4,5,5,5,5,5,5
-2019F,DE,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,4,5,5,5,5,5,5
-2019F,FL,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,ARICP,3304,3034,3144,3483,3669,3506,4017,4163,4063,4116,4076,4918,5114,5875,5874,3659,3444,4393,4995,4859,4487,5014,5007,5724,6952,6666,8240,7583,7931,6481,6804,7310,6933,8342,7304,6630,5920,3517,3826,3672,4023,5355,5649,5014,6704,5911,7670,7357,6528,4895,4428,4121,3880,3480,3854,4131,4413,4533,4533,4257
-2019F,FL,ARTCP,3304,3034,3144,3483,3669,3506,4017,4163,4063,4116,4076,4918,5114,5875,5874,3659,3444,4393,4995,4859,4487,5014,5007,5724,6952,6666,8240,7583,7931,6481,6804,7310,6933,8342,7304,6630,5920,3517,3826,3672,4023,5355,5649,5014,6704,5911,7670,7357,6528,4895,4428,4121,3880,3480,3854,4131,4413,4533,4533,4257
-2019F,FL,ARTXP,3304,3034,3144,3483,3669,3506,4017,4163,4063,4116,4076,4918,5114,5875,5874,3659,3444,4393,4995,4859,4487,5014,5007,5724,6952,6666,8240,7583,7931,6481,6804,7310,6933,8342,7304,6630,5920,3517,3826,3672,4023,5355,5649,5014,6704,5911,7670,7357,6528,4895,4428,4121,3880,3480,3854,4131,4413,4533,4533,4257
-2019F,FL,AVACP,4517,3926,5459,5580,4716,4273,3836,3600,3420,2608,3138,2597,2093,2031,2117,1921,1685,1475,1510,1271,1339,1138,881,882,704,841,1023,778,882,976,808,712,593,527,526,599,519,567,431,591,612,483,492,398,393,443,418,370,376,291,404,452,447,456,432,467,469,496,531,568
-2019F,FL,AVTCP,4517,3926,5459,5580,4716,4273,3836,3600,3420,2608,3138,2597,2093,2031,2117,1921,1685,1475,1510,1271,1339,1138,881,882,704,841,1023,778,882,976,808,712,593,527,526,599,519,567,431,591,612,483,492,398,393,443,418,370,376,291,404,452,447,456,432,467,469,496,531,568
-2019F,FL,AVTXP,4517,3926,5459,5580,4716,4273,3836,3600,3420,2608,3138,2597,2093,2031,2117,1921,1685,1475,1510,1271,1339,1138,881,882,704,841,1023,778,882,976,808,712,593,527,526,599,519,567,431,591,612,483,492,398,393,443,418,370,376,291,404,452,447,456,432,467,469,496,531,568
-2019F,FL,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,5,15,45,60,52,55,44,151,130,653,603,742,1360,1441,803,628
-2019F,FL,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,5,15,45,60,52,55,44,151,130,653,603,742,1360,1441,803,628
-2019F,FL,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,CLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,CLCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,3,12,57,86,73,41,2,0,4,0,13,13,17,1,1,0,5,6,8,53,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,CLEIP,1104,1495,1638,1782,1947,2323,3012,4174,4481,4532,5131,5124,5464,6641,6399,5758,6068,6780,7184,8155,8785,9401,9545,12435,14579,18283,17822,22598,23528,24484,24301,25096,25333,25478,26025,26897,29280,29495,29557,28173,29846,28696,28139,28331,27644,26603,27755,28826,28077,23467,25698,22805,19932,20905,23012,19157,17701,16852,13365,9533
-2019F,FL,CLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,135,260,374,748,566,441,630,829,911,782,993,1065,1154,1207,1133,1335,1307,1303,1325,1270,1347,1279,1189,1245,1171,1196,1111,1045,1068,1128,1099,1074,933,846,489,502,575,618,576,500,562,514,417
-2019F,FL,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,CLOCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,135,260,374,748,566,441,630,829,911,782,993,1065,1154,1207,1133,1335,1307,1303,1325,1270,1347,1279,1189,1245,1171,1196,1111,1045,1068,1128,1099,1074,933,846,489,502,575,618,576,500,562,514,417
-2019F,FL,CLRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,13,24,22,12,1,0,1,0,3,3,3,0,0,0,1,1,1,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,CLTCP,1104,1495,1638,1782,1947,2323,3012,4174,4481,4532,5131,5124,5464,6641,6399,5779,6089,6915,7444,8528,9543,9969,9990,13080,15478,19305,18699,23644,24595,25639,25512,26230,26685,26800,27348,28223,30551,30842,30841,29368,31100,29927,29345,29450,28689,27672,28883,29925,29150,24400,26543,23294,20433,21480,23630,19733,18202,17414,13880,9950
-2019F,FL,CLTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,135,260,374,758,567,445,645,899,1021,877,1046,1068,1155,1211,1134,1352,1322,1324,1326,1271,1347,1284,1195,1254,1231,1206,1119,1045,1068,1128,1099,1074,933,846,489,502,575,618,576,500,562,514,417
-2019F,FL,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,DFACP,3858,3880,4404,4381,5112,4482,5086,4948,6769,7127,7493,7472,8197,10786,10716,10160,10682,14399,15900,15842,16014,19304,17751,19761,20166,20762,21837,22838,25861,25576,25155,23694,26501,14622,25851,28915,28649,32321,33143,34490,35141,36439,36609,38765,42771,46030,48968,45932,40308,35470,37267,38044,37220,38998,39907,43040,44455,43909,48575,48389
-2019F,FL,DFCCP,1097,1239,1416,1523,1408,1981,2330,2330,2090,1778,2049,2056,1909,2291,2033,2226,2436,2546,2583,2170,1926,2572,650,2165,2546,4083,3812,4409,3791,3088,3853,3473,3491,3281,2437,2944,2120,1785,1393,1801,2641,3037,2568,2742,3980,3542,3732,2306,2874,3099,2802,2516,2522,2741,2673,2687,2490,2685,2593,2352
-2019F,FL,DFEIP,191,209,251,275,321,388,426,427,457,504,593,1326,3666,2928,3781,5180,5419,5374,5047,4980,3200,2249,856,1007,935,1246,1025,1047,1037,2447,1877,1813,1544,1451,1462,1854,1701,1592,3484,3259,3561,2825,3698,3117,2445,2373,1167,1223,752,1043,2148,801,407,447,491,506,599,553,504,320
-2019F,FL,DFICP,2934,3150,3662,3786,3528,4451,4966,4678,4593,4546,4494,4590,4689,5681,4950,4724,4770,5517,5687,5053,7077,4804,2946,4536,5335,5181,5702,5773,4800,4114,4148,3568,4207,4439,4200,5792,5649,5740,5515,6361,6230,6820,7115,10505,8401,8939,8283,6362,6481,5783,8923,6311,5986,6568,6608,6720,6555,7100,6558,6014
-2019F,FL,DFRCP,541,611,698,751,694,976,1148,1148,1030,876,1010,1013,941,1129,1002,1097,1200,1254,1273,1069,1215,983,724,494,581,634,516,822,598,403,277,275,360,341,277,228,213,145,109,101,119,122,94,115,127,99,84,50,28,38,45,27,14,11,18,14,12,9,10,12
-2019F,FL,DFTCP,8621,9089,10431,10716,11062,12279,13957,13531,14939,14831,15639,16457,19401,22815,22482,23387,24507,29091,30489,29113,29431,29911,22927,27963,29563,31906,32892,34888,36088,35628,35310,32823,36104,24134,34227,39733,38333,41584,43644,46011,47692,49243,50084,55243,57724,60982,62235,55874,50442,45433,51184,47699,46149,48764,49696,52967,54112,54256,58240,57087
-2019F,FL,DFTXP,8430,8880,10180,10441,10741,11891,13531,13104,14482,14327,15046,15131,15735,19887,18701,18207,19088,23716,25443,24134,26231,27662,22071,26956,28628,30660,31867,33841,35051,33182,33434,31010,34559,22683,32765,37878,36631,39992,40160,42752,44131,46418,46386,52126,55279,58609,61068,54650,49691,44390,49037,46898,45742,48318,49205,52461,53513,53703,57736,56767
-2019F,FL,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29301,24490,21660,20167,20796,21124,25935,27942,19643,23299,27751,31234,30936,29424,27285,30494,30185,28855,28821,28117,23309,23985,20559,20154,16135,18931,18000,14213,13062,13226
-2019F,FL,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,243,819,1124,1072,712,334,183,221,180,225,226,130,105,57,20,34,35,24,44,26,10,0,1,1249,1778,2569,13289,16705,16758,17079,18124,18560,18321,18300,19076,20007,20910,20795
-2019F,FL,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,9,12,12,8,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,4,8,43,57,159,86,36,69,55,494,610,532,556,559
-2019F,FL,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,4,9,6,2,1,2,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,17,25,44,235,281,178,174,191,196,198,402,418,433,461,461
-2019F,FL,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,245,830,1140,1093,725,340,185,224,183,228,229,131,106,57,20,34,35,24,44,26,11,0,1,1269,1806,2621,13567,17043,17095,17339,18351,18825,18574,19196,20105,20972,21927,21815
-2019F,FL,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,18,41,49,38,46,46,47,46,46,49,49,51,51,51,55,54,66,72,97,98,99,99,96,86,84,86,86,84,91,95,95,95,86,83,85
-2019F,FL,ESCCP,5586,6087,6922,7529,8504,9369,10229,11374,12620,14535,16244,18195,20383,22613,24019,22904,23703,24742,25590,26384,27422,30934,32759,34189,36992,41290,43985,46570,49875,53205,55769,56993,57278,59576,62388,65201,66255,68879,73087,74790,77900,79455,83279,85257,86765,89410,91300,93931,93205,92275,91614,91778,92038,92145,92926,95847,95547,95004,96265,96567
-2019F,FL,ESICP,3963,4307,4809,5279,5659,6449,7500,8213,8839,8828,9365,9844,10622,11640,10651,13294,14252,15660,17273,18019,18598,16105,14654,15019,16215,15742,14976,15443,16356,17040,16605,16482,16497,16298,16513,16473,17212,18266,18448,18579,18884,19854,18959,19375,19518,19676,19768,19241,18945,16918,17265,16886,16426,16390,16522,16897,16759,16602,16689,16514
-2019F,FL,ESRCP,7258,7984,9141,10129,11340,12283,14103,15382,18256,21489,24610,27225,30444,35238,34345,34756,36022,38955,41847,42218,44746,46139,45126,47280,50315,54118,57672,60406,63972,68184,71115,72814,73189,76827,80595,85770,88315,87845,95768,93846,99006,101377,108164,112650,112203,115791,117053,117816,113937,115474,122245,116341,112127,113294,116535,122759,123321,121463,125528,127182
-2019F,FL,ESRPP,1450,1523,1675,1800,1962,2063,2311,2464,2838,3236,3594,3803,4053,4453,4139,4080,4156,4399,4598,4479,4547,4527,4309,4398,4558,4768,4943,5035,5198,5395,5456,5446,5362,5516,5660,5900,5946,5785,6184,5955,6170,6198,6481,6625,6443,6490,6443,6414,6150,6191,6486,6105,5809,5795,5870,6071,5979,5790,5906,5918
-2019F,FL,ESTCP,16807,18378,20872,22936,25503,28100,31832,34969,39715,44851,50219,55265,61449,69491,69016,70954,73977,79357,84710,86621,90766,93177,92539,96488,103531,111168,116675,122468,130241,138474,143535,146336,147010,152748,159544,167492,171832,175041,187355,187270,195843,200752,210474,217379,218584,224977,228220,231085,226173,224750,231210,225090,220674,221920,226078,235599,235722,233155,238565,240348
-2019F,FL,ESTPP,3359,3505,3824,4075,4412,4720,5215,5602,6174,6754,7333,7720,8181,8781,8316,8329,8535,8961,9307,9189,9224,9141,8837,8976,9378,9794,10000,10208,10583,10957,11013,10945,10770,10968,11204,11521,11569,11526,12098,11883,12204,12273,12611,12784,12551,12609,12562,12581,12208,12049,12268,11812,11433,11350,11387,11652,11428,11115,11224,11183
-2019F,FL,ESTXP,16807,18378,20872,22936,25503,28100,31832,34969,39715,44851,50219,55265,61449,69491,69016,70954,73977,79357,84710,86621,90766,93177,92539,96488,103531,111168,116675,122468,130241,138474,143535,146336,147010,152748,159544,167492,171832,175041,187355,187270,195843,200752,210474,217379,218584,224977,228220,231085,226173,224750,231210,225090,220674,221920,226078,235599,235722,233155,238565,240348
-2019F,FL,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,FSICP,0,0,0,2,2,3,3,3,3,3,3,4,5,4,6,6,7,6,12,30,11,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,HLACP,82,104,138,154,142,134,185,189,188,165,197,209,211,200,188,169,178,191,213,149,161,314,357,424,538,390,437,195,218,213,213,179,167,164,279,148,120,103,92,132,138,314,171,186,269,342,324,197,330,232,101,98,77,83,75,83,87,135,124,125
-2019F,FL,HLCCP,2319,2316,2514,2811,3030,2746,2644,2692,3059,3584,3821,3690,3791,4038,3482,3458,3732,4029,3729,2958,2973,3166,2583,3071,3473,4020,4304,3675,3266,3248,3346,3461,3479,3389,3108,2645,2702,2677,2987,2973,2942,2456,2659,2715,3696,2658,2518,2594,2366,2077,2088,1800,2175,2023,2101,1990,2319,1978,2088,2133
-2019F,FL,HLICP,785,782,856,932,874,711,799,784,803,869,928,851,1008,1105,1103,1242,1383,1622,1428,3339,5341,4056,3998,3125,2085,2489,2581,2151,2073,2106,1662,1707,1721,1961,1698,3008,3221,1039,936,1822,2087,2547,1211,1517,1121,1770,2190,1554,1030,822,979,1452,955,965,1027,1107,1202,1271,1187,1155
-2019F,FL,HLRCP,1749,1747,1897,2121,2286,2072,1995,2031,2308,2704,2882,2784,2860,3046,2627,2609,2816,3039,2813,2232,2243,2388,1948,2317,2620,3033,3247,2773,2464,2450,2524,2611,2625,2556,2345,1995,2039,2020,2254,2243,2219,1853,2006,1841,2413,2210,2120,1909,1905,2399,2350,1850,1355,1295,1409,1352,1447,1628,1763,1653
-2019F,FL,HLTCP,4936,4949,5405,6017,6332,5663,5623,5695,6358,7322,7828,7535,7871,8390,7400,7478,8109,8881,8182,8678,10718,9924,8886,8936,8715,9932,10568,8794,8020,8017,7744,7959,7992,8070,7430,7796,8081,5839,6269,7170,7386,7170,6047,6259,7498,6979,7152,6254,5631,5530,5519,5201,4562,4365,4611,4532,5055,5011,5163,5067
-2019F,FL,HLTXP,4936,4949,5405,6017,6332,5663,5623,5695,6358,7322,7828,7535,7871,8390,7400,7478,8109,8881,8182,8678,10718,9924,8886,8936,8715,9932,10568,8794,8020,8017,7744,7959,7992,8070,7430,7796,8081,5839,6269,7170,7386,7170,6047,6259,7498,6979,7152,6254,5631,5530,5519,5201,4562,4365,4611,4532,5055,5011,5163,5067
-2019F,FL,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,HYEGP,278,263,237,265,290,298,290,286,242,274,292,253,238,234,251,234,259,243,228,241,215,180,261,220,213,244,212,217,209,234,175,263,236,211,274,231,216,241,199,140,87,148,184,263,265,266,203,154,206,208,177,182,151,254,211,244,175,218,233,210
-2019F,FL,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,HYTCP,278,263,237,265,290,298,290,286,242,274,292,253,238,234,251,234,259,243,228,241,215,180,261,220,213,244,212,217,209,234,175,263,236,211,274,231,216,241,199,140,87,148,184,263,265,266,203,154,206,208,177,182,151,254,211,244,175,218,233,210
-2019F,FL,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,JFACP,9482,10651,12992,14361,15696,17525,17629,21018,24293,25472,23840,26289,28620,27847,23616,24199,25102,27301,28011,31217,35911,35598,33730,30140,24240,23101,25022,26502,31960,33566,31958,25048,24436,26644,28640,28045,29345,30520,28508,28977,35134,30658,27035,25653,29246,27891,27631,31161,38621,31477,43343,43963,43709,44894,47250,49845,51618,53380,55367,57074
-2019F,FL,JFTCP,9482,10651,12992,14361,15696,17525,17629,21018,24293,25472,23840,26289,28689,27897,23657,24224,25102,27301,28011,31217,35911,35598,33730,30140,24240,23101,25022,26502,31960,33566,31958,25048,24436,26644,28640,28045,29345,30520,28508,28977,35134,30658,27035,25653,29246,27891,27631,31161,38621,31477,43343,43963,43709,44894,47250,49845,51618,53380,55367,57074
-2019F,FL,JFTXP,9482,10651,12992,14361,15696,17525,17629,21018,24293,25472,23840,26289,28620,27847,23616,24199,25102,27301,28011,31217,35911,35598,33730,30140,24240,23101,25022,26502,31960,33566,31958,25048,24436,26644,28640,28045,29345,30520,28508,28977,35134,30658,27035,25653,29246,27891,27631,31161,38621,31477,43343,43963,43709,44894,47250,49845,51618,53380,55367,57074
-2019F,FL,KSCCP,175,172,182,219,177,166,173,104,117,122,134,131,95,80,50,40,66,58,54,54,28,64,221,647,732,1047,848,467,418,356,125,29,30,54,76,95,106,54,65,61,28,25,16,19,20,52,17,12,5,7,16,12,3,2,6,4,3,3,1,1
-2019F,FL,KSICP,638,491,624,575,1060,1281,1574,1308,1216,1173,1109,1016,837,577,175,115,318,153,170,163,150,110,578,41,106,620,36,41,81,115,50,13,9,13,8,7,33,52,163,109,96,121,2,10,37,2,20,2,1,3,4,2,1,0,0,0,0,0,0,0
-2019F,FL,KSRCP,3150,3108,3290,3954,3193,3001,3112,1884,2114,2196,2414,2370,1722,1446,909,724,1195,1047,978,974,774,574,227,309,803,864,556,630,654,381,154,195,274,218,125,211,264,202,167,161,99,91,63,97,95,82,54,20,14,18,31,11,4,3,8,3,6,2,3,3
-2019F,FL,KSTCP,3962,3771,4096,4749,4430,4449,4858,3297,3447,3490,3657,3517,2654,2103,1134,879,1579,1258,1202,1191,952,748,1026,997,1641,2530,1440,1138,1153,852,329,237,313,284,209,313,402,308,396,332,224,237,81,126,152,136,91,35,21,28,51,25,8,6,14,7,9,5,5,5
-2019F,FL,KSTXP,3962,3771,4096,4749,4430,4449,4858,3297,3447,3490,3657,3517,2654,2103,1134,879,1579,1258,1202,1191,952,748,1026,997,1641,2530,1440,1138,1153,852,329,237,313,284,209,313,402,308,396,332,224,237,81,126,152,136,91,35,21,28,51,25,8,6,14,7,9,5,5,5
-2019F,FL,LUACP,674,656,639,639,671,723,752,607,667,657,669,681,730,729,698,622,691,804,864,904,805,772,704,737,786,733,716,810,781,801,824,737,752,766,800,786,763,806,844,853,840,770,761,703,712,709,690,713,662,595,1312,1267,1156,1237,1307,1431,1356,1263,1295,1212
-2019F,FL,LUICP,237,231,298,298,313,291,302,306,336,412,420,522,559,756,724,567,630,604,648,678,604,579,528,553,590,550,538,608,586,601,619,553,564,575,601,590,573,605,633,640,630,578,571,528,535,532,518,535,497,447,467,434,367,382,400,451,492,470,468,443
-2019F,FL,LUTCP,911,887,937,937,984,1014,1054,913,1003,1069,1089,1203,1288,1486,1423,1189,1321,1408,1512,1582,1409,1351,1232,1290,1376,1282,1254,1418,1367,1402,1443,1291,1316,1340,1401,1377,1336,1411,1477,1493,1470,1347,1331,1231,1247,1240,1209,1248,1159,1042,1779,1702,1523,1619,1708,1881,1848,1734,1763,1655
-2019F,FL,LUTXP,911,887,937,937,984,1014,1054,913,1003,1069,1089,1203,1288,1486,1423,1189,1321,1408,1512,1582,1409,1351,1232,1290,1376,1282,1254,1418,1367,1402,1443,1291,1316,1340,1401,1377,1336,1411,1477,1493,1470,1347,1331,1231,1247,1240,1209,1248,1159,1042,1779,1702,1523,1619,1708,1881,1848,1734,1763,1655
-2019F,FL,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-26,-62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,MGACP,42281,42934,45721,47714,49485,52244,55684,58284,63833,69027,74670,79589,88892,98363,97162,99462,102792,106552,112019,109847,107853,110987,113070,116774,119732,122956,128640,135406,139486,139968,139870,139547,141380,149218,151211,156410,157789,160492,167054,172223,176893,178449,185233,188653,198549,204304,206686,204560,195656,196054,192497,189221,189353,193257,195690,198753,202297,206716,209991,209798
-2019F,FL,MGCCP,685,856,836,664,668,712,746,1113,1221,1288,1382,1468,1100,974,882,1038,1077,1141,1191,1305,1340,915,748,1283,1327,1368,1427,1370,1302,1220,1412,927,818,96,97,100,100,241,247,251,303,243,397,260,281,383,446,676,627,666,1828,947,377,721,591,5361,6473,5494,5586,5640
-2019F,FL,MGICP,182,208,198,223,223,180,218,110,108,143,202,121,112,103,98,92,92,88,81,69,86,0,294,284,415,1022,1024,998,940,1032,1069,965,979,969,1031,1148,1139,1144,1900,1069,1139,2371,2452,2665,2875,2795,2875,3507,3465,3300,2049,1929,1995,2036,2117,4365,4430,4472,4634,4653
-2019F,FL,MGTCP,43148,43997,46755,48600,50376,53136,56647,59507,65163,70459,76254,81178,90105,99440,98142,100592,103961,107781,113292,111222,109279,111902,114113,118342,121475,125346,131092,137775,141728,142220,142351,141440,143176,150283,152338,157657,159028,161878,169201,173543,178336,181063,188082,191578,201705,207482,210006,208744,199749,200021,196374,192098,191725,196014,198398,208479,213200,216683,220211,220090
-2019F,FL,MGTXP,43148,43997,46755,48600,50376,53136,56647,59507,65163,70459,76254,81178,90105,99440,98142,100592,103961,107781,113292,111222,109279,111902,114113,118342,121475,125346,131092,137775,141728,142220,142351,141440,143176,150283,152338,157657,159028,161878,169201,173543,178336,181063,188082,191578,201705,207482,210006,208744,199749,200021,196374,192098,191725,196014,198398,208479,213200,216683,220211,220090
-2019F,FL,MSICP,289,323,354,188,188,183,144,135,150,140,125,109,112,139,178,239,347,393,341,316,300,422,370,332,285,287,275,276,335,308,277,233,153,144,161,148,471,517,629,592,630,163,175,164,148,147,60,59,63,67,70,73,71,162,173,179,181,222,221,201
-2019F,FL,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,NGACP,1000,1166,1711,2385,2431,2529,3090,3827,4250,4564,4359,4233,4021,3884,3081,2320,1867,881,1137,3885,3666,4108,4128,4164,4334,3866,3946,4459,3366,4156,2790,3476,4410,4434,5402,7643,5907,5892,4092,7148,7510,7007,11584,10158,11242,9579,12174,10335,9684,10490,22858,13630,16443,12669,3761,17156,19307,21156,21116,21774
-2019F,FL,NGCCP,6979,6800,10457,13428,18144,12731,13314,22501,21890,24721,26914,25478,23243,24315,22527,31745,39681,41236,35386,36638,30182,33702,29788,29228,30481,30674,35829,37492,37834,35105,36306,39264,41727,41151,39935,40383,41810,36700,37659,36269,47904,49286,55803,54283,56321,57690,50625,51097,50901,50371,54065,53532,54659,59971,62612,60233,62526,61313,63805,63355
-2019F,FL,NGEIP,88518,84614,88893,95392,92581,87001,97731,107819,147600,179806,198367,195511,170824,168293,154862,141154,125560,137466,158042,167444,166047,171468,182471,174813,174740,165683,169533,175675,154550,186814,189165,201333,203320,188228,211492,369298,337268,338858,323771,365587,364245,374311,521868,535099,585841,630410,741759,772968,797266,913672,981750,1043786,1138771,1034288,1036754,1156605,1181451,1186912,1266822,1321071
-2019F,FL,NGICP,35191,42879,49686,56403,57616,74434,89745,81954,88466,91158,92474,98257,88052,98711,94288,89667,105070,104541,102160,118692,101559,111922,94798,82730,78888,75950,65373,68146,82793,84427,86657,87149,89963,102067,120424,128939,133145,127571,124244,136593,107151,96992,84954,74580,64883,64406,71412,67778,69255,65594,81034,90340,104224,103428,94751,96389,103923,103645,108324,119915
-2019F,FL,NGRCP,6380,8400,6589,7286,11356,8135,8409,9430,11318,11636,14702,13242,12837,16295,14793,15209,16839,18220,21619,17518,15134,16357,13622,15372,14866,13533,13860,14566,14891,13089,12976,12908,14380,13940,13855,14540,16293,13117,14102,13797,15133,15547,15127,15866,15892,16124,15641,15066,15594,15214,18744,16400,14366,15321,16652,15407,15352,14934,17092,16565
-2019F,FL,NGTCP,138068,143859,157336,174894,182128,184830,212289,225531,273524,311885,336816,336721,298977,311498,289551,280095,289017,302344,318344,344177,316588,337557,324807,306307,303309,289706,288541,300338,293434,323591,327894,344129,353800,349820,391107,560803,534424,522138,503867,559394,541943,543143,689337,689986,734179,778209,891611,917245,942700,1055341,1158451,1217688,1328463,1225677,1214530,1345790,1382559,1387960,1477159,1542680
-2019F,FL,NGTPP,27.6,27.4,28.8,31.1,31.5,31,34.8,36.1,42.5,47,49.2,47,39.8,39.4,34.9,32.9,33.3,34.1,35,36.5,32.2,33.1,31,28.5,27.5,25.5,24.7,25,23.8,25.6,25.2,25.7,25.9,25.1,27.5,38.6,36,34.4,32.5,35.5,33.8,33.2,41.3,40.6,42.2,43.6,49.1,49.9,50.9,56.6,61.5,63.9,68.8,62.7,61.2,66.6,67,66.2,69.5,71.8
-2019F,FL,NGTXP,49550,59245,68443,79502,89547,97829,114558,117712,125924,132079,138449,141210,128153,143205,134689,138941,163457,164878,160302,176733,150541,166089,142336,131494,128569,124023,119008,124663,138884,136777,138729,142796,150481,161592,179615,191505,197156,183280,180097,193807,177698,168832,167469,154887,148338,147799,149852,144276,145434,141669,176701,173902,189692,191389,177776,189185,201108,201048,210337,221609
-2019F,FL,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,66,4681,7877,8370,8648,17557,15810,15391,16737,14448,19319,14805,24078,23461,22036,18773,26198,20916,21780,20508,25116,25887,26682,28741,25470,22968,31115,31526,32291,31583,33704,30979,31216,28759,31426,29289,32133,29118,23936,22015,17870,26526,27868,28122,29320,29146,29312,29108
-2019F,FL,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,66,4681,7877,8370,8648,17557,15810,15391,16737,14448,19319,14805,24078,23461,22036,18773,26198,20916,21780,20508,25116,25887,26682,28741,25470,22968,31115,31526,32291,31583,33704,30979,31216,28759,31426,29289,32133,29118,23936,22015,17870,26526,27868,28122,29320,29146,29312,29108
-2019F,FL,OPICP,356,389,428,261,779,821,625,553,595,623,634,723,782,841,885,861,876,923,1006,1358,973,1036,935,992,1154,1045,990,920,853,797,765,746,742,747,673,620,1001,1018,1285,1403,1205,657,753,644,500,551,492,511,536,332,260,239,201,557,583,557,542,549,529,515
-2019F,FL,OPTCP,356,389,428,261,779,821,625,553,595,623,634,723,782,841,885,861,876,923,1006,1358,973,1036,935,992,1154,1045,990,920,853,797,765,746,742,747,673,620,1001,1018,1285,1403,1205,657,753,644,500,551,492,511,536,332,260,239,201,557,583,557,542,549,529,515
-2019F,FL,OPTXP,356,389,428,261,779,821,625,553,595,623,634,723,782,841,885,861,876,923,1006,1358,973,1036,935,992,1154,1045,990,920,853,797,765,746,742,747,673,620,1001,1018,1285,1403,1205,657,753,644,500,551,492,511,536,332,260,239,201,557,583,557,542,549,529,515
-2019F,FL,P1ICP,4535,4144,4493,4617,5821,5899,6518,6329,6211,6323,6239,7179,7292,8050,7659,5203,5268,6073,6819,7059,6214,6740,7048,7310,8802,8881,9804,9152,9451,7994,8238,8623,8248,9676,8585,7847,7527,5192,5908,5824,5954,6710,6974,6196,7777,6996,8700,8405,7562,5676,5159,4796,4449,4418,4837,5139,5447,5553,5530,5214
-2019F,FL,P1TCP,13050,12006,14063,15010,14578,14063,14390,12525,12529,11905,12593,12959,11931,12336,11433,8510,8906,9457,10224,10262,9161,9288,9081,9885,11826,12365,12947,11837,12186,10509,10149,10296,9896,11240,10112,9538,9492,10157,12037,12113,10739,12719,16182,17860,20646,22698,22338,17555,14552,11761,12537,10014,7289,9900,9062,9875,10973,9050,10153,9165
-2019F,FL,P1TXP,13050,12006,14063,15010,14578,14063,14390,12525,12529,11905,12593,12959,11931,12336,11433,8510,8906,9457,10224,10262,9161,9288,9081,9885,11826,12365,12947,11837,12186,10509,10149,10296,9896,11240,10112,9538,9178,6821,7415,7490,7533,8079,8306,7413,8997,8281,9879,9521,8619,6587,6922,6538,6058,6116,6591,7045,7280,7316,7360,7000
-2019F,FL,PAACP,64663,66483,75135,76919,79853,84132,87220,91374,101198,107231,112252,118513,130513,142622,136843,138744,144155,154284,162287,170560,173695,174941,172197,172774,170245,175675,185225,195758,207403,209130,208776,198215,204094,203561,217378,223338,225310,233294,237736,244875,258735,255601,260739,258884,284692,293145,298747,296193,280200,267221,289165,286544,282538,288048,293515,301759,308541,315108,329688,325462
-2019F,FL,PACCP,6402,6714,7255,7283,7081,7214,6897,7228,7505,7789,8853,8760,8641,9306,8128,8317,9394,10327,9775,9054,7743,7534,4585,8166,9445,12688,13188,11948,10883,9880,11101,10025,9602,6961,5852,5922,5127,4882,4702,5099,5929,5775,5710,5753,8094,6985,6795,5629,5873,5858,6769,5287,5082,5495,5371,10042,11285,10159,10268,10126
-2019F,FL,PAEIP,13610,14906,17928,19653,22963,27737,30435,30522,32620,36033,42376,52841,67890,70629,66509,73385,79869,70212,77197,75056,73194,77107,54809,50302,31961,23678,44465,33694,40660,42978,40628,48434,45061,54382,53518,35546,37301,42577,66885,61012,58533,65246,54686,60565,60630,61192,38004,32983,20636,15734,16019,5877,2456,4632,3390,3915,5095,2638,3798,2676
-2019F,FL,PAICP,19320,19610,21218,20609,21358,20877,19145,16942,17035,17424,20011,20683,21737,24369,21952,18631,21651,25433,24574,27836,32391,23506,18729,19626,22603,23855,22936,19859,21261,18104,18337,17461,19236,22235,20091,22775,21439,16555,18395,18250,18906,21253,19342,22764,23240,23352,24475,21588,20026,16677,18004,15404,13870,14210,14819,17501,17972,18587,18124,17300
-2019F,FL,PARCP,5440,5466,5884,6825,6172,6049,6255,5063,5451,5776,6306,6167,5522,5621,4537,4429,5211,5340,5063,4275,4232,3945,2899,3120,4004,4530,4319,4226,3716,3234,2955,3081,3258,3115,2746,2434,2515,2367,2530,2505,2438,2066,2163,2052,2635,2390,2258,1980,1947,2455,2426,1888,1372,1309,1435,1369,1466,1639,1777,1668
-2019F,FL,PATCP,109435,113178,127420,131289,137427,146009,149953,151129,163809,174252,189797,206964,234303,252546,237970,243506,260280,265596,278897,286781,291255,287033,253219,253988,238257,240426,270133,265484,283924,283326,281796,277216,281251,290254,299585,290015,291693,299676,330248,331741,344540,349941,342639,350017,379291,387065,370279,358373,328683,307945,332382,315000,305319,313694,318529,334587,344358,348131,363655,357233
-2019F,FL,PATPP,21.9,21.6,23.3,23.3,23.8,24.5,24.6,24.2,25.5,26.2,27.7,28.9,31.2,31.9,28.7,28.6,30,30,30.6,30.4,29.6,28.2,24.2,23.6,21.6,21.2,23.2,22.1,23.1,22.4,21.6,20.7,20.6,20.8,21,19.9,19.6,19.7,21.3,21.1,21.5,21.4,20.5,20.6,21.8,21.7,20.4,19.5,17.7,16.5,17.6,16.5,15.8,16,16,16.5,16.7,16.6,17.1,16.6
-2019F,FL,PATXP,95825,98272,109492,111636,114464,118273,119518,120606,131190,138219,147421,154123,166413,181917,171461,170121,180411,195384,201699,211725,218061,209926,198410,203686,206296,216748,225668,231790,243263,240348,241168,228782,236190,235872,246067,254468,254392,257099,263363,270729,286008,284695,287953,289452,318661,325873,332275,325390,308047,292211,316363,309123,302863,309062,315139,330672,339263,345493,359857,354557
-2019F,FL,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,3336,4622,4624,3205,4640,7876,10447,11649,14416,12459,8034,5933,5173,5615,3475,1230,3784,2471,2831,3693,1734,2793,2165
-2019F,FL,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,3336,4622,4624,3205,4640,7876,10447,11649,14416,12459,8034,5933,5173,5615,3475,1230,3784,2471,2831,3693,1734,2793,2165
-2019F,FL,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,101,98,77,83,75,83,87,135,124,125
-2019F,FL,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2088,1800,2175,2023,2101,1990,2319,1978,2088,2133
-2019F,FL,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,979,1452,955,965,1027,1107,1202,1271,1187,1155
-2019F,FL,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2350,1850,1355,1295,1409,1352,1447,1628,1763,1653
-2019F,FL,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5519,5201,4562,4365,4611,4532,5055,5011,5163,5067
-2019F,FL,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5519,5201,4562,4365,4611,4532,5055,5011,5163,5067
-2019F,FL,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,FL,RFACP,3770,4332,5782,4090,4032,4751,4049,2728,2028,2175,2244,1675,1770,2664,2345,2211,3024,3562,3770,11330,11613,6828,5704,4056,4079,6892,7549,9228,8216,8030,9946,8298,10266,11621,10071,8435,8126,8485,7664,7609,9977,8488,10437,4525,12752,13428,14030,13260,4248,3101,14239,13498,10576,9123,8854,8140,8260,9208,13807,8295
-2019F,FL,RFCCP,2126,2131,2306,2066,1798,1608,1004,988,1017,1017,1467,1414,1745,1923,1681,1555,2083,2553,2217,2567,1476,817,383,1001,1366,2170,2798,2027,2105,1968,2365,2134,1784,141,134,138,99,124,10,13,15,15,71,17,117,351,82,41,0,8,35,12,6,8,0,0,0,0,0,0
-2019F,FL,RFEIP,13419,14697,17677,19378,22641,27349,30009,30095,32163,35529,41783,51515,64154,67650,62687,68180,74450,64837,72151,70076,69994,74857,53953,49295,31026,22432,43440,32647,39623,40532,38752,46621,43516,52931,52055,33692,35286,37648,58780,53130,51766,57781,43112,47001,46536,44403,24378,23726,13952,9518,8256,1600,818,401,428,578,802,351,501,190
-2019F,FL,RFICP,10883,11326,12009,11051,10911,9636,6645,5041,5320,5542,8148,7942,8637,9430,8142,7369,10139,12134,10560,12317,13673,7907,4442,4371,5967,6283,3825,1785,3997,2857,3220,2598,4081,5188,4577,4980,3903,3440,4137,3174,3495,2804,1589,1882,3066,2851,2426,1759,1488,1096,894,915,485,223,229,171,337,192,215,264
-2019F,FL,RFTCP,30199,32487,37774,36585,39382,43344,41707,38852,40529,44263,53642,62546,76305,81667,74855,79315,89695,83086,88698,96290,96756,90409,64481,58722,42438,37777,57612,45688,53941,53387,54283,59651,59648,69882,66838,47245,47414,49697,70590,63926,65253,69088,55210,53424,62471,61033,40915,38786,19688,13723,23424,16025,11886,9755,9511,8889,9399,9750,14522,8750
-2019F,FL,RFTXP,16779,17789,20097,17207,16741,15995,11698,8757,8366,8734,11859,11031,12151,14017,12169,11135,15245,18248,16547,26214,26761,15552,10528,9427,11412,15345,14172,13041,14318,12855,15532,13030,16131,16951,14782,13553,12128,12049,11810,10796,13487,11307,12098,6423,15935,16630,16538,15060,5736,4206,15168,14425,11067,9354,9084,8311,8597,9399,14021,8559
-2019F,FL,SGICP,30,29,40,39,39,40,39,41,39,40,43,40,57,62,72,71,68,68,117,472,142,0,0,0,0,137,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,SNICP,0,0,0,0,520,563,386,321,344,377,400,493,528,534,530,456,369,385,463,469,451,567,528,621,830,638,540,602,474,446,445,347,413,413,320,280,341,331,491,665,445,335,438,344,218,267,327,365,397,216,122,106,69,339,360,337,318,299,274,285
-2019F,FL,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,7,12,17,37,45,65,75,87,96,116,145
-2019F,FL,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,80,126,193,208,240,222,221,871,2404,3889
-2019F,FL,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,6,11,13,13
-2019F,FL,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,8,12,17,25,38,55,79,116,190,308,544
-2019F,FL,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,25,105,160,255,292,361,380,429,1169,2841,4590
-2019F,FL,TPOPP,5004,5243,5458,5628,5781,5954,6104,6242,6433,6641,6848,7158,7511,7914,8299,8518,8667,8856,9102,9426,9840,10193,10471,10750,11040,11351,11668,11997,12306,12638,13033,13370,13651,13927,14239,14538,14853,15186,15487,15759,16048,16357,16689,17004,17415,17842,18167,18368,18527,18653,18846,19056,19302,19552,19854,20219,20627,20977,21255,21492
-2019F,FL,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-40,-69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,WXICP,37,37,33,32,30,32,53,53,59,63,63,77,80,102,100,89,84,71,73,71,70,47,36,40,39,40,39,42,43,43,43,166,176,189,192,192,189,170,165,146,129,159,141,136,134,137,105,88,77,49,69,60,61,55,49,41,43,28,34,29
-2019F,FL,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,FL,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,ARICP,2482,2961,4502,4553,3980,4007,3904,4050,3873,3321,3916,4002,4537,4875,4577,4198,4457,5331,6217,5151,4795,3757,3927,5229,5639,4580,5641,5977,6048,4958,6398,5192,4897,5324,5251,5526,5428,4890,5497,7428,5643,5944,5627,5412,6624,6421,6686,6694,4978,4595,4066,3192,2629,2159,1542,1786,3158,4788,4142,4890
-2019F,GA,ARTCP,2482,2961,4502,4553,3980,4007,3904,4050,3873,3321,3916,4002,4537,4875,4577,4198,4457,5331,6217,5151,4795,3757,3927,5229,5639,4580,5641,5977,6048,4958,6398,5192,4897,5324,5251,5526,5428,4890,5497,7428,5643,5944,5627,5412,6624,6421,6686,6694,4978,4595,4066,3192,2629,2159,1542,1786,3158,4788,4142,4890
-2019F,GA,ARTXP,2482,2961,4502,4553,3980,4007,3904,4050,3873,3321,3916,4002,4537,4875,4577,4198,4457,5331,6217,5151,4795,3757,3927,5229,5639,4580,5641,5977,6048,4958,6398,5192,4897,5324,5251,5526,5428,4890,5497,7428,5643,5944,5627,5412,6624,6421,6686,6694,4978,4595,4066,3192,2629,2159,1542,1786,3158,4788,4142,4890
-2019F,GA,AVACP,262,221,424,494,461,928,908,1006,900,632,600,634,522,489,458,399,387,396,396,377,386,330,244,220,219,212,253,218,227,210,196,182,166,167,160,156,168,157,138,149,106,92,114,140,209,223,184,162,101,94,143,121,149,116,139,116,119,122,136,147
-2019F,GA,AVTCP,262,221,424,494,461,928,908,1006,900,632,600,634,522,489,458,399,387,396,396,377,386,330,244,220,219,212,253,218,227,210,196,182,166,167,160,156,168,157,138,149,106,92,114,140,209,223,184,162,101,94,143,121,149,116,139,116,119,122,136,147
-2019F,GA,AVTXP,262,221,424,494,461,928,908,1006,900,632,600,634,522,489,458,399,387,396,396,377,386,330,244,220,219,212,253,218,227,210,196,182,166,167,160,156,168,157,138,149,106,92,114,140,209,223,184,162,101,94,143,121,149,116,139,116,119,122,136,147
-2019F,GA,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,4,12,35,48,41,44,35,120,101,513,479,585,987,1160,528,427
-2019F,GA,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,4,12,35,48,41,44,35,120,101,513,479,585,987,1160,528,427
-2019F,GA,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,CLACP,9,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,CLCCP,157,125,139,117,105,83,96,71,80,70,56,41,34,48,39,36,18,28,15,21,17,26,11,3,59,30,6,28,21,10,18,6,31,18,24,52,3,15,10,15,8,10,5,0,6,45,0,2,12,7,7,8,7,5,4,2,0,0,0,0
-2019F,GA,CLEIP,2608,2759,2600,3801,4105,5291,6102,5788,7135,7542,7498,8857,10625,10854,11642,12656,14043,16857,17631,19171,21191,21941,21195,22778,26455,28285,26652,27130,26513,25839,27812,24848,23656,25339,27293,29280,29170,30784,30731,31506,33150,30891,32637,33350,36094,39137,38890,40803,39296,32785,34269,28894,20836,20633,22660,19307,19272,16770,16953,13552
-2019F,GA,CLICP,548,538,504,551,634,630,864,831,608,574,506,490,429,417,306,434,554,642,643,555,679,1100,1087,1420,1544,1575,1801,1960,2115,2067,2232,2101,1787,1720,1933,1949,1985,2046,1978,1968,1990,1994,1828,1761,1771,1700,1587,1512,1441,1045,1246,1160,853,731,817,463,432,335,336,312
-2019F,GA,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,CLOCP,548,538,504,551,634,630,864,831,608,574,506,490,429,417,306,434,554,642,643,555,679,1100,1087,1420,1544,1575,1801,1960,2115,2067,2232,2101,1787,1720,1933,1949,1985,2046,1978,1968,1990,1994,1828,1761,1771,1700,1587,1512,1441,1045,1246,1160,853,731,817,463,432,335,336,312
-2019F,GA,CLRCP,226,180,200,162,145,110,127,94,102,89,71,40,25,28,19,15,7,11,5,5,5,6,2,1,14,8,2,9,6,3,4,1,7,4,4,8,0,2,1,2,1,1,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,CLTCP,3548,3605,3445,4634,4992,6116,7191,6786,7928,8275,8131,9429,11114,11348,12006,13141,14623,17538,18293,19752,21892,23073,22295,24202,28072,29898,28460,29126,28654,27918,30067,26957,25481,27081,29254,31288,31158,32846,32720,33491,35149,32896,34470,35111,37872,40887,40477,42317,40749,33836,35522,30061,21696,21370,23481,19772,19704,17105,17289,13863
-2019F,GA,CLTXP,940,846,844,833,887,825,1089,998,792,734,633,572,489,494,364,485,580,681,663,581,701,1132,1101,1424,1617,1613,1808,1997,2142,2079,2255,2109,1825,1742,1961,2008,1988,2062,1989,1985,1999,2005,1833,1761,1778,1749,1587,1514,1453,1051,1253,1168,859,736,821,465,432,335,336,312
-2019F,GA,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,DFACP,2592,2316,3023,4412,4428,4177,4701,5214,6490,7073,7747,8579,9308,11582,11401,10331,10880,12104,12344,13243,14135,14602,14544,16148,16940,18205,18826,21194,22922,21990,22069,22389,22709,24984,25667,27300,33077,29899,30055,32082,33804,35439,33867,36054,38197,42750,41060,38876,32816,31256,33147,31814,28842,31350,32050,34843,31756,36567,31075,33084
-2019F,GA,DFCCP,373,370,436,367,382,603,692,871,758,721,713,874,1035,1069,955,851,1436,1203,900,867,315,1227,1041,2161,2542,1726,1106,1147,1377,1084,1510,998,1207,1209,1152,1453,1156,869,716,1211,1238,1611,1027,941,1077,844,813,835,755,932,1072,1087,1488,1550,1593,1636,1750,1538,1406,1084
-2019F,GA,DFEIP,1,3,1,2,2,2,1,4,15,18,58,518,1033,2577,3266,1077,2035,2414,1283,219,415,372,259,215,169,235,169,154,315,318,218,194,199,336,297,386,559,458,1400,1065,1009,543,441,614,250,287,136,159,164,190,200,162,129,130,343,239,181,191,434,150
-2019F,GA,DFICP,2043,2483,2637,2051,2055,3538,4236,4951,4325,4408,4014,4374,4786,4815,4125,3557,5403,4995,4255,3715,3993,2891,2367,3012,3543,4079,4441,4093,3893,4413,4833,3973,3253,4094,3863,4990,5484,4873,5246,6224,6475,7900,6556,6525,6167,6846,5896,5737,4716,4787,5015,4743,5276,5265,5462,5005,5566,5392,5394,4467
-2019F,GA,DFRCP,131,130,153,129,134,211,243,305,266,253,250,306,363,375,335,298,503,422,315,304,578,184,163,225,264,395,406,391,295,297,297,207,206,251,125,164,151,79,93,55,72,61,55,39,40,42,31,28,32,28,21,24,10,23,13,12,14,11,18,7
-2019F,GA,DFTCP,5140,5302,6249,6962,7002,8531,9873,11344,11853,12473,12781,14650,16525,20417,20081,16115,20257,21137,19096,18347,19437,19276,18374,21761,23458,24639,24949,26979,28802,28101,28927,27760,27574,30874,31104,34292,40426,36178,37511,40637,42597,45554,41946,44173,45732,50768,47937,45635,38483,37192,39455,37830,35745,38318,39461,41735,39267,43699,38327,38793
-2019F,GA,DFTXP,5139,5299,6248,6960,7000,8529,9871,11340,11839,12455,12724,14133,15492,17840,16816,15038,18223,18724,17814,18129,19022,18904,18115,21546,23289,24405,24780,26825,28487,27783,28709,27567,27375,30538,30807,33907,39867,35719,36110,39572,41588,45011,41505,43559,45483,50481,47801,45476,38319,37002,39255,37668,35616,38188,39118,41496,39086,43508,37893,38643
-2019F,GA,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-12567,-4842,-3512,-954,-3509,402,9480,6979,8350,9331,9747,12047,11280,13629,18539,10752,12020,8327,14026,16116,17887,25370,22962,23338,23346,21173,18911,19261,23888,23537
-2019F,GA,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,15,86,205,223,60,112,32,3,0,0,0,0,0,0,0,0,0,668,963,1438,7692,9772,10020,9951,10448,10899,10227,10497,10422,11211,11508,11238
-2019F,GA,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,6,6,6,7,7,7,215,227,236,246,247
-2019F,GA,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,1,1,0,0,0,0,0,0,0,0,0,0,0,15,23,22,112,135,114,117,121,131,110,114,119,123,129,128
-2019F,GA,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,15,87,209,227,61,113,32,3,0,0,0,0,0,0,0,0,0,683,987,1460,7808,9914,10140,10075,10576,11037,10344,10826,10767,11570,11883,11614
-2019F,GA,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,ESACP,43,40,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,16,17,25,28,40,61,67,62,69,74,75,74,73,73,87,94,96,109,98,98,96,105,186,180,180,174,179,179,182,179,173,171,157,156,165,171,171,169,170,164
-2019F,GA,ESCCP,2765,2965,3362,3648,4040,4560,4972,5426,6314,7237,8174,8814,9735,10693,10679,11226,12340,13063,11416,11342,11965,12832,13476,13752,15598,17009,18249,19400,20684,22248,23715,24086,24594,26166,27149,28793,30273,31352,34026,35536,38443,39364,40401,40554,42316,44663,45547,46997,46876,46080,47897,46930,45937,45353,46608,47151,47762,46265,47312,47412
-2019F,GA,ESICP,4713,4858,5476,5729,6052,6903,8012,8609,9564,10292,10853,11678,12694,13733,13775,13866,15060,15734,18520,19107,19195,19379,18960,19737,22259,23122,24367,25227,25984,26388,26717,27193,28197,29084,29942,31493,33175,33957,35077,35255,36085,33941,34603,34768,35846,34602,34588,34054,32529,29348,31047,31521,31225,31443,31849,32134,32290,32251,32696,32393
-2019F,GA,ESRCP,4469,4657,5191,5620,6292,6936,7653,8202,9732,11062,12474,13099,13786,15383,15098,16457,16904,18610,19218,18367,20033,20207,20147,20726,22570,23505,25808,26991,27609,28349,29933,30187,30528,33867,32735,35812,37763,36831,41519,41767,44560,44380,48600,48174,51124,52827,54521,56223,55587,55158,61554,57750,53660,53544,57167,56422,57889,54771,59689,59331
-2019F,GA,ESRPP,1130,1160,1270,1347,1478,1601,1748,1861,2171,2431,2708,2780,2866,3133,3020,3250,3293,3565,3629,3400,3652,3629,3566,3618,3868,3942,4241,4347,4371,4422,4596,4537,4478,4853,4574,4887,5034,4792,5280,5191,5416,5298,5712,5587,5830,5918,5955,6013,5848,5733,6338,5891,5418,5368,5676,5541,5616,5258,5674,5583
-2019F,GA,ESTCP,11990,12520,14068,14997,16383,18398,20637,22237,25610,28590,31500,33591,36214,39808,39552,41549,44304,47407,49154,48818,51209,52434,52609,54243,60468,63697,68490,71680,74346,77060,80440,81539,83391,89191,89913,96192,101307,102250,110720,112656,119185,117790,123789,123677,129466,132265,134834,137454,135174,130766,140672,136371,130979,130497,135790,135878,138112,133457,139866,139301
-2019F,GA,ESTPP,3031,3118,3443,3595,3848,4247,4713,5045,5714,6282,6838,7130,7530,8107,7911,8205,8632,9082,9282,9038,9334,9416,9312,9469,10363,10683,11256,11545,11771,12020,12351,12256,12232,12781,12563,13126,13506,13305,14080,14002,14487,14061,14549,14343,14764,14818,14727,14701,14222,13592,14484,13910,13225,13082,13483,13343,13398,12811,13296,13107
-2019F,GA,ESTXP,11990,12520,14068,14997,16383,18398,20637,22237,25610,28590,31500,33591,36214,39808,39552,41549,44304,47407,49154,48818,51209,52434,52609,54243,60468,63697,68490,71680,74346,77060,80440,81539,83391,89191,89913,96192,101307,102250,110720,112656,119185,117790,123789,123677,129466,132265,134834,137454,135174,130766,140672,136371,130979,130497,135790,135878,138112,133457,139866,139301
-2019F,GA,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,FSICP,0,0,0,6,7,8,8,7,7,7,9,15,13,13,18,19,22,21,27,15,25,13,13,18,23,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,HLACP,66,85,116,126,135,69,52,65,76,75,100,108,108,116,107,106,122,139,282,134,76,212,203,241,319,212,188,130,136,117,105,112,110,118,249,140,120,136,41,120,118,119,128,198,188,278,258,210,385,262,52,104,109,113,95,101,107,40,45,60
-2019F,GA,HLCCP,649,660,714,753,804,880,927,822,916,1160,1186,1204,1225,1173,1032,1109,1231,1257,1147,650,1012,943,791,941,1026,1125,1010,1054,1060,1165,968,1039,1144,1195,1200,1139,1159,1249,1073,1169,1330,935,936,934,1141,848,844,845,982,780,955,830,716,800,888,815,768,897,1057,954
-2019F,GA,HLICP,1507,1338,1712,1780,1926,1716,1683,1735,1833,2295,2430,2492,2869,3374,3263,3478,3799,3866,3666,4856,3188,2703,2895,2275,1611,1964,1979,1853,2213,2461,1916,2340,2346,2560,2339,2441,2579,2503,1711,1949,3498,2708,2823,1942,1788,2345,2427,2083,1604,1529,1764,1631,1573,1605,1921,1756,1706,1408,1821,1702
-2019F,GA,HLRCP,2032,2066,2236,2360,2520,2758,2904,2575,2870,3634,3714,3771,3838,3676,3233,3474,3855,3938,3593,2035,3168,2955,2478,2946,3213,3524,3165,3300,3321,3650,3032,3256,3585,3742,3759,3568,3631,3912,3362,3661,4166,2929,2933,3217,3387,2839,2560,2591,2898,2815,3299,2489,2986,2064,2500,2226,2164,1823,2274,2278
-2019F,GA,HLTCP,4253,4149,4778,5018,5385,5424,5566,5197,5695,7164,7430,7574,8041,8340,7636,8168,9007,9200,8688,7675,7444,6813,6367,6402,6168,6825,6342,6337,6731,7394,6021,6747,7185,7614,7548,7288,7490,7800,6188,6899,9112,6692,6820,6290,6504,6310,6090,5729,5869,5386,6070,5053,5385,4582,5404,4898,4744,4168,5196,4994
-2019F,GA,HLTXP,4253,4149,4778,5018,5385,5424,5566,5197,5695,7164,7430,7574,8041,8340,7636,8168,9007,9200,8688,7675,7444,6813,6367,6402,6168,6825,6342,6337,6731,7394,6021,6747,7185,7614,7548,7288,7490,7800,6188,6899,9112,6692,6820,6290,6504,6310,6090,5729,5869,5386,6070,5053,5385,4582,5404,4898,4744,4168,5196,4994
-2019F,GA,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,HYEGP,2243,2228,2498,2870,4246,3170,3273,3636,3088,3054,2461,3247,3330,4178,3605,4278,4374,3983,3702,4374,4369,2274,3598,4065,4083,2772,2097,3121,2011,3875,4553,4214,4867,4415,4291,4156,4638,4239,5209,2731,2459,2567,2687,4113,3668,4012,2546,2217,2123,3252,3299,2686,2218,3690,3046,2962,3357,2391,3686,3938
-2019F,GA,HYICP,63,61,64,64,63,64,68,69,60,63,58,55,56,55,49,56,57,49,53,56,54,54,54,54,54,54,54,54,54,19,36,18,48,42,40,41,41,40,26,20,22,29,29,27,24,20,23,19,22,8,22,19,19,23,18,21,16,19,11,18
-2019F,GA,HYTCP,2306,2289,2561,2935,4310,3234,3341,3704,3148,3116,2519,3302,3386,4232,3654,4334,4432,4032,3755,4431,4423,2328,3652,4120,4137,2826,2151,3175,2065,3894,4589,4232,4915,4457,4331,4197,4679,4280,5235,2751,2481,2596,2716,4140,3692,4032,2569,2236,2145,3260,3322,2705,2236,3714,3064,2984,3373,2410,3697,3956
-2019F,GA,HYTXP,63,61,64,64,63,64,68,69,60,63,58,55,56,55,49,56,57,49,53,56,54,54,54,54,54,54,54,54,54,19,36,18,48,42,40,41,41,40,26,20,22,29,29,27,24,20,23,19,22,8,22,19,19,23,18,21,16,19,11,18
-2019F,GA,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,JFACP,2306,2355,2440,2482,2542,2158,3716,7235,8839,9968,10506,11749,11716,14174,11950,12887,13274,14155,15258,17165,16421,14829,15085,16495,16790,16236,17742,19691,20295,17451,18439,14441,12422,15204,16936,18451,17293,15240,15148,15316,13046,9903,7430,8790,9177,9576,6552,6726,6334,18023,26717,26159,25036,25695,26091,27201,27573,27445,27015,28171
-2019F,GA,JFTCP,2306,2355,2440,2482,2542,2158,3716,7235,8839,9968,10506,11749,11716,14174,11950,12887,13274,14155,15258,17165,16421,14829,15085,16495,16790,16236,17742,19691,20295,17451,18439,14441,12422,15204,16936,18451,17293,15240,15148,15316,13046,9903,7430,8790,9177,9576,6552,6726,6334,18023,26717,26159,25036,25695,26091,27201,27573,27445,27015,28171
-2019F,GA,JFTXP,2306,2355,2440,2482,2542,2158,3716,7235,8839,9968,10506,11749,11716,14174,11950,12887,13274,14155,15258,17165,16421,14829,15085,16495,16790,16236,17742,19691,20295,17451,18439,14441,12422,15204,16936,18451,17293,15240,15148,15316,13046,9903,7430,8790,9177,9576,6552,6726,6334,18023,26717,26159,25036,25695,26091,27201,27573,27445,27015,28171
-2019F,GA,KSCCP,206,209,171,187,157,149,138,109,38,26,39,49,31,25,16,11,11,22,15,25,12,18,143,28,48,46,73,34,21,73,64,53,37,65,149,35,31,28,27,37,41,61,47,48,21,25,7,13,8,6,24,21,5,10,9,6,22,3,6,6
-2019F,GA,KSICP,715,648,615,576,601,687,659,523,365,310,296,344,318,228,232,200,300,325,313,371,449,220,108,23,34,65,63,56,110,64,23,28,10,22,14,35,37,24,46,37,41,24,20,44,106,126,134,89,5,6,20,6,2,2,5,3,6,2,4,2
-2019F,GA,KSRCP,633,645,525,575,482,460,425,335,117,82,121,150,97,76,48,34,34,68,47,77,91,34,62,103,198,257,203,130,206,177,111,113,109,136,80,126,144,135,171,241,198,181,81,66,93,68,63,39,17,33,35,17,5,5,10,6,7,4,16,10
-2019F,GA,KSTCP,1554,1503,1311,1338,1239,1297,1221,966,519,418,457,542,446,329,296,246,344,415,376,473,552,272,313,154,280,367,338,220,337,314,198,194,155,223,243,195,212,187,245,314,280,266,148,158,220,218,204,141,30,45,79,44,12,16,24,16,35,10,26,18
-2019F,GA,KSTXP,1554,1503,1311,1338,1239,1297,1221,966,519,418,457,542,446,329,296,246,344,415,376,473,552,272,313,154,280,367,338,220,337,314,198,194,155,223,243,195,212,187,245,314,280,266,148,158,220,218,204,141,30,45,79,44,12,16,24,16,35,10,26,18
-2019F,GA,LUACP,530,516,512,512,537,583,606,494,543,539,549,592,634,626,600,516,573,617,663,694,618,592,540,566,603,562,550,621,599,615,632,566,577,587,614,603,586,619,648,654,644,591,584,539,547,544,530,547,508,457,915,869,748,807,793,905,797,795,701,676
-2019F,GA,LUICP,289,281,292,292,307,384,399,382,419,465,474,562,602,697,667,610,678,632,678,710,632,606,553,579,617,575,562,636,613,629,647,579,590,601,628,617,599,633,663,670,659,604,597,552,559,556,542,560,520,467,466,429,394,408,405,441,446,425,410,373
-2019F,GA,LUTCP,819,798,804,804,844,967,1005,876,962,1004,1023,1154,1236,1323,1267,1126,1250,1249,1341,1403,1250,1198,1093,1144,1220,1137,1112,1257,1212,1243,1279,1145,1167,1188,1242,1221,1185,1251,1310,1324,1304,1195,1181,1091,1106,1100,1072,1107,1027,924,1381,1297,1142,1215,1199,1346,1243,1220,1112,1049
-2019F,GA,LUTXP,819,798,804,804,844,967,1005,876,962,1004,1023,1154,1236,1323,1267,1126,1250,1249,1341,1403,1250,1198,1093,1144,1220,1137,1112,1257,1212,1243,1279,1145,1167,1188,1242,1221,1185,1251,1310,1324,1304,1195,1181,1091,1106,1100,1072,1107,1027,924,1381,1297,1142,1215,1199,1346,1243,1220,1112,1049
-2019F,GA,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-87,-69,-53,-25,-89,-123,-9,-4,4,4,-2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,MGACP,30875,31456,33304,34737,36172,38215,40792,42768,46895,50469,53608,57326,61827,65529,64602,65110,67969,69814,72127,69131,65116,65171,65608,67547,70577,71432,75437,78490,81913,81868,81341,82211,82268,92260,92545,96781,100094,100054,105751,108795,109916,111135,114419,115621,117872,119515,117561,119213,113742,115833,115102,110244,109336,113481,109239,114000,110522,115835,115572,113377
-2019F,GA,MGCCP,269,277,294,283,274,306,310,319,346,356,349,365,362,382,357,372,381,393,398,406,363,410,422,402,370,310,360,409,454,404,519,330,415,64,171,62,62,632,155,142,223,78,68,68,68,69,71,72,72,72,71,71,70,73,70,2339,2404,2437,2468,2496
-2019F,GA,MGICP,936,783,846,689,593,616,386,291,237,192,124,102,96,82,74,60,45,44,30,35,26,21,16,20,525,1251,1160,1220,1153,1299,1288,1173,1223,712,777,829,907,890,954,982,981,2338,2387,2556,2811,2710,2808,1784,1654,1605,1306,1301,1263,1365,1177,1236,1257,1274,1297,1295
-2019F,GA,MGTCP,32079,32515,34444,35709,37038,39136,41487,43377,47477,51017,54081,57794,62286,65993,65032,65541,68396,70250,72555,69572,65506,65602,66046,67969,71471,72993,76957,80118,83520,83571,83148,83715,83906,93036,93493,97672,101063,101576,106860,109920,111119,113550,116875,118244,120751,122294,120440,121069,115469,117510,116478,111615,110669,114919,110487,117575,114183,119546,119336,117167
-2019F,GA,MGTXP,32079,32515,34444,35709,37038,39136,41487,43377,47477,51017,54081,57794,62286,65993,65032,65541,68396,70250,72555,69572,65506,65602,66046,67969,71471,72993,76957,80118,83520,83571,83148,83715,83906,93036,93493,97672,101063,101576,106860,109920,111119,113550,116875,118244,120751,122294,120440,121069,115469,117510,116478,111615,110669,114919,110487,117575,114183,119546,119336,117167
-2019F,GA,MSICP,0,0,0,0,0,0,0,0,0,0,0,68,70,87,111,149,474,536,466,432,409,436,382,343,294,296,320,322,390,359,323,609,399,378,422,387,248,272,332,312,332,322,346,325,293,291,232,228,243,259,271,281,276,294,314,325,329,402,401,365
-2019F,GA,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,NGACP,3545,3581,3947,4549,4606,4761,4960,6173,6477,6846,6876,6700,7957,6118,4850,4176,3454,2932,3440,4122,7374,7664,7188,5957,5992,5359,5283,6171,6925,7060,7342,7432,7501,7130,7104,7818,8684,8288,7945,9264,6095,7930,8509,7916,6962,6629,7066,6222,7060,7789,9388,11529,11613,8971,8059,8992,7844,8813,17270,7438
-2019F,GA,NGCCP,21396,21909,25208,26051,26693,26052,27253,30202,36034,39020,38726,41881,44992,47253,44317,49438,46351,55268,60266,62437,58763,57139,54718,56280,55909,51519,50405,54592,55963,53089,49486,51036,53861,57525,54051,56536,61377,57220,55419,43581,58793,50645,48631,50273,55047,52902,48137,48591,51518,53627,60153,56602,51918,57195,59052,53745,51327,49193,56539,53611
-2019F,GA,NGEIP,25337,16433,16288,2871,2619,831,464,8860,16417,34833,58674,63470,38433,34403,43086,40282,4664,6091,5881,3023,3666,2786,1509,1633,608,885,5803,826,1569,684,1932,838,1162,3026,1340,11097,5776,17054,33351,32505,42034,34666,56588,32258,45926,72267,95407,121726,96316,142467,175082,196492,308096,279506,289972,355698,379284,370074,373647,427142
-2019F,GA,NGICP,75966,81023,88411,90670,102831,112510,125200,128777,140115,142965,140891,142209,154505,174124,161879,145479,120495,102040,112317,151681,155158,157090,144414,140285,149517,140009,128420,141201,150448,153088,161992,167098,172227,167388,173839,183680,181767,174746,164499,153867,166126,137899,143152,159406,160559,156202,159614,152674,150773,140326,146737,144940,146481,157982,160842,157937,152311,150172,158445,155992
-2019F,GA,NGRCP,55843,57011,58784,63459,69942,67167,75414,80322,84072,87879,87359,88319,85256,86191,76207,87184,86356,98334,96368,91036,90240,91934,86822,91376,95299,84033,89171,100630,108125,103681,90263,96662,108214,115655,105436,114670,127062,114383,107398,98777,140838,119969,126667,129907,126492,124560,110245,111895,119375,118589,138671,113335,97664,121629,134482,118028,115922,111249,133085,123249
-2019F,GA,NGTCP,182087,179957,192638,187600,206691,211321,233291,254334,283115,311543,332526,342579,331143,348089,330339,326559,261320,264665,278272,312299,315201,316613,294651,295531,307325,281805,279082,303420,323030,317602,311016,323066,342965,350724,341771,373800,384666,371690,368612,337994,413887,351109,383546,379761,394986,412560,420469,441107,425042,462798,530031,522898,615772,625283,652407,694400,706688,689501,738986,767432
-2019F,GA,NGTPP,46,44.8,47.1,45,48.5,48.8,53.3,57.7,63.2,68.5,72.2,72.7,68.9,70.9,66.1,64.5,50.9,50.7,52.5,57.8,57.5,56.9,52.2,51.6,52.7,47.3,45.9,48.9,51.1,49.5,47.8,48.6,50.3,50.3,47.8,51,51.3,48.4,46.9,42,50.3,41.9,45.1,44,45,46.2,45.9,47.2,44.7,48.1,54.6,53.3,62.2,62.7,64.8,68.2,68.6,66.2,70.2,72.2
-2019F,GA,NGTXP,156750,163524,176350,184729,204072,210490,232827,245474,266698,276710,273852,279109,292710,313686,287253,286277,256656,258574,272391,309276,311535,313827,293142,293898,306717,280920,273279,302594,321461,316918,309083,322228,341803,347698,340431,362704,378890,354637,335262,305489,371853,316443,326958,347502,349060,340293,325062,319381,328726,320331,354949,326406,307676,345777,362435,338702,327404,319427,365339,340290
-2019F,GA,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,3093,4134,3713,4277,5095,8436,7235,6606,7774,5472,10130,7238,15259,15149,24961,24797,26016,27996,27233,28927,30661,29925,30414,31380,31478,32473,33682,31108,33257,33748,31534,32006,32545,31691,31683,33512,32306,33942,32903,32570,33838,34481,33709,34363,33591
-2019F,GA,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,3093,4134,3713,4277,5095,8436,7235,6606,7774,5472,10130,7238,15259,15149,24961,24797,26016,27996,27233,28927,30661,29925,30414,31380,31478,32473,33682,31108,33257,33748,31534,32006,32545,31691,31683,33512,32306,33942,32903,32570,33838,34481,33709,34363,33591
-2019F,GA,OPICP,273,243,250,247,935,1005,967,852,919,995,1031,1427,1510,1636,1686,1545,2236,2288,2517,2457,2455,2239,1997,2252,2612,2248,1785,1689,1597,1520,1487,1555,1495,1486,1373,1261,1231,1201,1482,1861,1336,1422,1644,1409,1008,1122,1047,1078,1131,757,839,596,524,1402,1469,1394,1346,1363,1303,1285
-2019F,GA,OPTCP,273,243,250,247,935,1005,967,852,919,995,1031,1427,1510,1636,1686,1545,2236,2288,2517,2457,2455,2239,1997,2252,2612,2248,1785,1689,1597,1520,1487,1555,1495,1486,1373,1261,1231,1201,1482,1861,1336,1422,1644,1409,1008,1122,1047,1078,1131,757,839,596,524,1402,1469,1394,1346,1363,1303,1285
-2019F,GA,OPTXP,273,243,250,247,935,1005,967,852,919,995,1031,1427,1510,1636,1686,1545,2236,2288,2517,2457,2455,2239,1997,2252,2612,2248,1785,1689,1597,1520,1487,1555,1495,1486,1373,1261,1231,1201,1482,1861,1336,1422,1644,1409,1008,1122,1047,1078,1131,757,839,596,524,1402,1469,1394,1346,1363,1303,1285
-2019F,GA,P1ICP,3759,4133,5659,5668,5823,6083,5929,5806,5576,5091,5717,6334,6967,7436,7162,6552,7670,8576,9726,8689,8331,6822,6585,8082,8903,7468,8051,8358,8368,7171,8757,7710,7816,8475,8228,8492,8548,8158,9157,11457,9057,9214,9481,8905,9859,9796,10011,10020,8073,7206,6838,5546,4563,4755,4109,4243,5548,7315,6590,7296
-2019F,GA,P1TCP,5390,5725,7291,7436,7460,8205,8005,7750,7174,6369,7026,7759,8251,8652,8284,7513,8674,9678,10848,9861,9438,7796,7574,9000,9971,8545,9129,9361,9420,8246,9760,8623,8704,9430,9231,9413,9476,9096,10141,12538,10046,10139,10307,9699,10729,10655,10795,10781,8706,7796,7955,6573,5471,5693,5061,5277,6493,8239,7449,8136
-2019F,GA,P1TXP,5390,5725,7291,7436,7460,8205,8005,7750,7174,6369,7026,7759,8251,8652,8284,7513,8674,9678,10848,9861,9438,7796,7574,9000,9971,8545,9129,9361,9420,8246,9760,8623,8704,9430,9231,9413,9476,9096,10141,12538,10046,10139,10307,9699,10729,10655,10795,10781,8706,7796,7955,6573,5471,5693,5061,5277,6493,8239,7449,8136
-2019F,GA,PAACP,38175,38214,41326,43846,45663,47292,51882,57955,64458,68902,73283,79123,84351,93108,89743,89776,93766,97600,101517,104197,99747,98392,98538,102363,106600,107868,113679,120845,126541,122911,124089,121058,121590,135854,138016,144815,152574,147210,152692,157872,158456,157929,158337,163333,170002,177336,174113,171387,160971,172627,184585,179989,170432,175843,170314,178683,172055,181738,176088,176172
-2019F,GA,PACCP,1554,1561,1659,1646,1684,2021,2134,2208,2152,2369,2396,2599,2768,2770,2473,2424,3143,2976,2542,2044,1712,2607,2402,4051,4693,3674,3588,3637,3679,2982,3129,2443,2809,2539,2679,2700,2419,2784,1973,2560,2836,2686,2078,2001,2308,1785,1736,1766,1816,1790,2155,2009,2280,2432,2561,4796,4945,4876,4936,4540
-2019F,GA,PAEIP,40,77,34,43,57,54,34,114,406,493,1600,2378,4948,6469,7829,5136,8868,8664,6616,2569,1085,848,349,280,201,292,525,361,494,346,333,213,268,507,358,495,643,539,1645,1456,1591,696,534,744,337,470,192,193,172,194,212,174,129,130,354,246,181,191,434,150
-2019F,GA,PAICP,13153,12538,14557,14712,15913,19070,18604,19788,19565,20458,20741,21601,23662,25318,23466,19891,23513,25365,24074,24858,20900,15578,14849,16294,18547,25158,17181,16986,17350,17037,18795,16933,18024,18607,18022,19351,20962,19481,18277,21665,21310,23082,23059,22224,23479,24711,23055,20966,16796,15468,15256,13681,12854,13096,12869,12280,14252,15519,15273,14914
-2019F,GA,PARCP,2796,2841,2914,3064,3136,3429,3572,3215,3252,3968,4085,4227,4298,4126,3616,3807,4392,4427,3955,2416,3837,3172,2703,3274,3675,4176,3774,3822,3821,4124,3440,3576,3900,4129,3965,3857,3926,4127,3627,3957,4435,3171,3069,3322,3520,2948,2654,2658,2947,2876,3355,2531,3001,2092,2523,2244,2185,1837,2308,2296
-2019F,GA,PATCP,55720,55231,60490,63311,66453,71867,76226,83280,89833,96191,102104,109928,120027,131791,127126,121033,133683,139032,138705,136083,127281,120598,118841,126262,133718,141169,138747,145651,151886,147401,149785,144223,146591,161637,163039,171219,180525,174141,178215,187509,188629,187564,187077,191625,199646,207251,201750,196970,182703,192955,205563,198385,188697,193593,188620,198250,193618,204161,199039,198072
-2019F,GA,PATPP,14.1,13.8,14.8,15.2,15.6,16.6,17.4,18.9,20,21.1,22.2,23.3,25,26.8,25.4,23.9,26,26.6,26.2,25.2,23.2,21.7,21,22,22.9,23.7,22.8,23.5,24,23,23,21.7,21.5,23.2,22.8,23.4,24.1,22.7,22.7,23.3,22.9,22.4,22,22.2,22.8,23.2,22,21.1,19.2,20.1,21.2,20.2,19.1,19.4,18.7,19.5,18.8,19.6,18.9,18.6
-2019F,GA,PATXP,55679,55154,60456,63268,66396,71813,76192,83166,89427,95697,100504,107549,115079,125323,119298,115897,124815,130368,132089,133515,126196,119750,118492,125982,133517,140877,138222,145290,151391,147055,149452,144010,146322,161130,162681,170724,179882,173601,176569,186054,187038,186868,186543,190881,199309,206781,201558,196777,182531,192761,205351,198211,188568,193463,188266,198003,193438,203970,198605,197922
-2019F,GA,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,356,824,1042,962,1054,1252,1410,1470,1461,1378,1220,1593,1488,1563,1571,1603,1599,1440,1381,1448,1323,1014,785,688,618,592,737,731,746
-2019F,GA,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,356,824,1042,962,1054,1252,1410,1470,1461,1378,1220,1593,1488,1563,1571,1603,1599,1440,1381,1448,1323,1014,785,688,618,592,737,731,746
-2019F,GA,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,356,824,1042,962,1054,1252,1410,1470,1461,1378,1220,1593,1488,1563,1571,1603,1599,1440,1381,1448,1323,1014,785,688,618,592,737,731,746
-2019F,GA,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,52,104,109,113,95,101,107,40,45,60
-2019F,GA,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,955,830,716,800,888,815,768,897,1057,954
-2019F,GA,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1764,1631,1573,1605,1921,1756,1706,1408,1821,1702
-2019F,GA,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3299,2489,2986,2064,2500,2226,2164,1823,2274,2278
-2019F,GA,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6070,5053,5385,4582,5404,4898,4744,4168,5196,4994
-2019F,GA,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6070,5053,5385,4582,5404,4898,4744,4168,5196,4994
-2019F,GA,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,GA,RFACP,1544,1264,1507,1083,1389,1162,1108,1174,715,146,172,136,236,592,626,427,562,375,447,3454,2995,2656,2314,1146,1153,1009,683,499,449,660,1307,1159,3338,2534,1845,1383,1237,1106,912,755,823,650,1795,1991,3812,4451,7968,5653,7086,6702,8509,10680,6213,4281,1905,1517,1181,933,1544,657
-2019F,GA,RFCCP,59,45,46,55,67,83,68,88,94,105,108,106,114,121,113,80,84,101,82,96,10,9,5,518,708,468,1039,995,767,257,68,21,6,6,7,11,11,6,1,0,5,0,0,11,0,0,0,0,0,0,32,0,0,0,2,0,1,0,0,0
-2019F,GA,RFEIP,39,75,33,41,54,52,33,110,391,476,1542,1861,3916,3891,4563,4059,6833,6250,5334,2350,670,476,89,65,32,57,356,207,180,27,115,20,69,170,61,109,84,81,245,391,583,153,93,130,87,184,56,34,7,4,12,13,0,0,11,8,0,0,0,0
-2019F,GA,RFICP,4909,3801,3704,4524,5517,7117,6371,7006,7594,8472,8457,8299,8944,9611,8842,6243,6595,7885,6397,7563,5361,3141,2987,2905,3966,10397,1550,1463,1723,1693,2002,1737,3387,2767,2815,2599,3445,3058,1209,1053,1300,922,1812,2297,2853,3013,1912,1343,749,342,333,461,179,105,199,40,176,130,172,153
-2019F,GA,RFTCP,6551,5185,5289,5703,7027,8413,7579,8377,8794,9200,10279,10402,13209,14216,14144,10809,14074,14611,12260,13463,9036,6281,5395,4635,5859,11931,3628,3164,3118,2637,3491,2937,6800,5478,4728,4103,4777,4251,2367,2199,2710,1726,3699,4429,6753,7648,9937,7029,7842,7048,8887,11154,6392,4386,2116,1564,1358,1063,1716,811
-2019F,GA,RFTXP,6512,5110,5256,5662,6972,8361,7546,8267,8403,8724,8737,8541,9293,10324,9581,6750,7241,8361,6926,11113,8366,5805,5306,4569,5827,11874,3272,2956,2938,2609,3377,2917,6731,5308,4667,3994,4693,4170,2122,1808,2127,1572,3607,4299,6666,7465,9881,6995,7835,7044,8875,11141,6392,4386,2106,1557,1358,1063,1716,811
-2019F,GA,SGICP,114,86,108,104,111,114,112,108,111,120,115,145,153,180,215,212,228,228,268,242,317,359,348,368,383,466,532,88,83,84,91,88,90,90,88,87,87,86,81,285,80,81,80,83,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0
-2019F,GA,SNICP,0,0,0,0,689,746,645,537,576,631,669,960,1028,1040,1032,887,1155,1204,1448,1466,1410,1116,1039,1221,1633,1255,780,869,685,644,643,629,747,747,579,506,531,515,765,1037,694,765,997,784,497,609,609,678,738,401,227,197,128,986,1046,978,922,894,820,852
-2019F,GA,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,10,23,43,89,96,95,31,33,37,45
-2019F,GA,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,116,126,878,1984,1994,2158
-2019F,GA,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,154,180,218,244
-2019F,GA,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,4,6,13,16,17,20
-2019F,GA,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,10,25,47,105,218,229,1076,2212,2265,2467
-2019F,GA,TPOPP,3956,4015,4086,4172,4258,4332,4379,4408,4482,4551,4607,4712,4809,4910,4999,5064,5133,5220,5296,5401,5486,5568,5650,5728,5835,5963,6085,6208,6316,6411,6513,6653,6817,6978,7157,7328,7501,7685,7864,8046,8227,8377,8508,8623,8769,8926,9156,9350,9505,9621,9712,9804,9904,9976,10071,10183,10308,10417,10519,10628
-2019F,GA,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-92,-103,-64,-109,-135,-138,-23,-16,-22,-23,-29,-23,-26,-18,-20,-7,-6,-18,-59,-23,-4,-8,-3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0
-2019F,GA,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,WXICP,159,157,142,136,129,137,202,199,225,237,238,239,247,317,310,277,358,299,308,302,295,492,385,418,414,424,413,442,459,452,450,260,276,296,301,301,371,333,323,285,252,257,228,220,218,222,205,172,150,96,134,118,120,122,109,91,95,67,82,69
-2019F,GA,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,GA,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,3,1,0,-2,0,0,0,0,0,12,10,13,17,7,11,7,11,13,13,18,15,1,3,0,-1,0,0,0,-1,0,-1,0,0,-2,-2
-2019F,HI,ARICP,29,210,183,169,221,306,259,211,260,278,377,288,325,332,257,379,400,332,292,264,285,187,172,259,205,308,272,397,351,296,381,383,431,444,407,438,401,396,322,353,604,342,107,110,120,199,3,3,2,685,773,702,441,721,677,638,413,381,313,268
-2019F,HI,ARTCP,29,210,183,169,221,306,259,211,260,278,377,288,325,332,257,379,400,332,292,264,285,187,172,259,205,308,272,397,351,296,381,383,431,444,407,438,401,396,322,353,604,342,107,110,120,199,3,3,2,685,773,702,441,721,677,638,413,381,313,268
-2019F,HI,ARTXP,29,210,183,169,221,306,259,211,260,278,377,288,325,332,257,379,400,332,292,264,285,187,172,259,205,308,272,397,351,296,381,383,431,444,407,438,401,396,322,353,604,342,107,110,120,199,3,3,2,685,773,702,441,721,677,638,413,381,313,268
-2019F,HI,AVACP,2640,3068,1852,1100,539,613,889,466,238,162,133,141,143,132,123,116,130,147,141,152,199,183,137,156,146,155,279,249,281,287,272,261,243,198,210,218,165,121,107,58,45,48,18,15,39,44,41,41,28,30,37,35,31,27,28,9,7,10,22,31
-2019F,HI,AVTCP,2640,3068,1852,1100,539,613,889,466,238,162,133,141,143,132,123,116,130,147,141,152,199,183,137,156,146,155,279,249,281,287,272,261,243,198,210,218,165,121,107,58,45,48,18,15,39,44,41,41,28,30,37,35,31,27,28,9,7,10,22,31
-2019F,HI,AVTXP,2640,3068,1852,1100,539,613,889,466,238,162,133,141,143,132,123,116,130,147,141,152,199,183,137,156,146,155,279,249,281,287,272,261,243,198,210,218,165,121,107,58,45,48,18,15,39,44,41,41,28,30,37,35,31,27,28,9,7,10,22,31
-2019F,HI,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,11,31,43,37,39,31,107,74,98,116,162,229,277,262,192
-2019F,HI,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,11,31,43,37,39,31,107,74,98,116,162,229,277,262,192
-2019F,HI,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,CLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,CLCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,CLEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,256,618,618,703,761,767,676,684,706,716,698,732,744,680,655,692,741,703,742,724,753,692,769,697,775,759,734,717
-2019F,HI,CLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,42,38,46,16,63,50,32,28,37,47,73,86,192,169,166,146,117,110,113,50,52,53,59,59,72,99,88,61,58,50,61,61,50,12,0,0,0
-2019F,HI,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,CLOCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,42,38,46,16,63,50,32,28,37,47,73,86,192,169,166,146,117,110,113,50,52,53,59,59,72,99,88,61,58,50,61,61,50,12,0,0,0
-2019F,HI,CLRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,CLTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,42,38,46,16,63,50,32,29,45,303,691,704,895,930,933,822,801,816,829,748,784,797,740,714,764,840,791,803,783,803,753,831,747,787,759,734,717
-2019F,HI,CLTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,42,38,46,16,63,50,32,28,37,47,73,86,192,169,166,146,117,110,113,50,52,53,59,59,72,99,88,61,58,50,61,61,50,12,0,0,0
-2019F,HI,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,DFACP,247,948,975,765,1127,844,577,426,629,618,722,821,723,743,925,831,1248,1552,1801,3887,3331,3683,2589,1248,1404,3184,3071,1548,3079,3293,3498,4201,2860,2674,3223,2683,1928,1322,1242,2071,1627,2455,3329,5186,5359,3827,3387,6246,2729,3124,4019,3409,3274,3060,1591,2049,2179,2148,2609,2082
-2019F,HI,DFCCP,48,56,52,59,67,71,79,72,89,123,174,142,130,129,94,84,92,122,125,263,398,178,55,99,116,132,183,409,562,501,453,610,498,414,389,343,224,392,211,260,218,136,310,282,382,384,392,282,221,272,265,299,266,255,323,225,157,205,236,317
-2019F,HI,DFEIP,37,41,45,54,59,61,65,69,77,85,96,101,267,246,352,429,447,549,776,795,888,779,605,647,826,752,824,1069,1274,1431,1813,1710,2173,2170,2168,2211,2323,2302,2413,2555,2775,2975,3987,2297,2486,2584,2453,2313,2199,2250,2246,2264,2183,2079,2055,2134,2037,2094,2154,2317
-2019F,HI,DFICP,554,617,565,484,508,635,655,641,624,775,701,644,655,718,579,603,549,641,865,1620,1369,1380,1296,332,389,458,549,658,715,520,725,689,687,669,540,548,475,623,584,427,473,473,459,439,407,512,456,451,347,404,326,342,376,325,392,321,163,311,263,380
-2019F,HI,DFRCP,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,0,1,1,0,1,1,2,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,3,3,5,3,0,0,0,0,0,0,0,0,0,0
-2019F,HI,DFTCP,886,1663,1637,1362,1761,1612,1378,1208,1420,1601,1695,1709,1776,1837,1951,1948,2337,2865,3567,6567,5987,6021,4545,2326,2735,4526,4627,3685,5631,5745,6489,7210,6219,5929,6321,5787,4950,4640,4451,5314,5094,6040,8086,8206,8634,7307,6691,9294,5501,6053,6856,6314,6099,5719,4362,4730,4536,4758,5263,5096
-2019F,HI,DFTXP,849,1622,1592,1308,1703,1551,1312,1139,1343,1516,1599,1608,1509,1591,1599,1519,1890,2316,2791,5772,5099,5242,3940,1679,1909,3774,3804,2616,4358,4315,4675,5501,4046,3759,4153,3576,2627,2337,2037,2759,2319,3064,4099,5908,6148,4723,4238,6981,3301,3802,4610,4050,3916,3640,2307,2596,2499,2664,3108,2779
-2019F,HI,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,387,490,907,1041,792,920,835,862,932,1085,1091,1099,1067,1093
-2019F,HI,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,32,32,33,33,34
-2019F,HI,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,11,22,23,12,12,11,11,15,29,29,30,30,31
-2019F,HI,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,392,501,930,1065,804,933,847,874,948,1147,1152,1162,1131,1158
-2019F,HI,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,ESCCP,306,338,374,422,458,495,537,581,651,695,771,818,916,1017,1052,1109,1187,1278,1344,1413,1462,1451,1408,1441,1598,1612,1831,1942,2072,2152,2253,2355,2417,2419,2601,2779,2819,2839,2833,2944,3092,3192,3223,3517,3632,3463,3490,3520,3501,3388,3355,3368,3238,3271,3202,3174,3111,3082,3033,3058
-2019F,HI,ESICP,465,639,803,926,1041,1096,1189,1146,1380,1564,1720,1979,2160,2277,2438,2538,2664,2757,2835,2940,3028,3270,3248,3286,3169,3143,3239,3284,3495,3576,3734,3773,3811,3770,3791,3803,3884,3856,3787,3748,3834,3790,3770,3846,3937,3912,3896,3864,3804,3683,3672,3665,3662,3623,3690,3696,3722,3613,3593,3635
-2019F,HI,ESRCP,514,576,643,732,788,861,915,993,1101,1187,1285,1391,1511,1599,1655,1663,1736,1760,1779,1846,1841,1924,1842,1854,1838,1879,1962,2073,2151,2242,2324,2396,2438,2469,2557,2606,2676,2668,2641,2689,2765,2802,2898,3028,3162,3164,3182,3201,3085,3055,2989,2929,2739,2609,2584,2641,2612,2630,2711,2760
-2019F,HI,ESRPP,801,874,940,1073,1125,1223,1289,1374,1501,1583,1660,1735,1824,1878,1906,1877,1920,1917,1910,1936,1902,1967,1853,1831,1788,1807,1865,1941,1992,2048,2087,2107,2105,2105,2153,2178,2223,2202,2173,2222,2278,2286,2338,2420,2483,2448,2430,2433,2316,2269,2192,2123,1963,1852,1826,1856,1828,1844,1905,1950
-2019F,HI,ESTCP,1285,1554,1820,2080,2286,2452,2642,2720,3132,3446,3776,4187,4587,4893,5144,5310,5588,5795,5958,6199,6331,6646,6497,6581,6605,6635,7032,7298,7719,7970,8311,8524,8667,8658,8948,9188,9379,9363,9261,9381,9691,9785,9892,10391,10732,10539,10568,10585,10390,10126,10017,9962,9639,9503,9475,9511,9445,9324,9337,9453
-2019F,HI,ESTPP,2001,2358,2661,3049,3266,3484,3721,3762,4267,4594,4879,5224,5537,5746,5927,5992,6180,6310,6396,6503,6542,6794,6538,6498,6426,6381,6686,6834,7148,7282,7463,7499,7480,7382,7535,7676,7791,7728,7621,7751,7986,7981,7980,8305,8426,8152,8069,8046,7799,7519,7343,7221,6909,6745,6695,6684,6610,6540,6561,6678
-2019F,HI,ESTXP,1285,1554,1820,2080,2286,2452,2642,2720,3132,3446,3776,4187,4587,4893,5144,5310,5588,5795,5958,6199,6331,6646,6497,6581,6605,6635,7032,7298,7719,7970,8311,8524,8667,8658,8948,9188,9379,9363,9261,9381,9691,9785,9892,10391,10732,10539,10568,10585,10390,10126,10017,9962,9639,9503,9475,9511,9445,9324,9337,9453
-2019F,HI,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,FSICP,0,0,0,27,27,31,34,30,30,29,35,43,38,35,39,42,44,46,51,34,41,21,24,30,39,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,19,18,13,16,14,0,0,2,152,185,235,242,245,237,211,262,207,73,178,213,222,212,230,234,168,201,224,261,275,254,230,260,323,110,0
-2019F,HI,HLACP,2,2,0,1,3,4,5,12,10,18,26,20,21,20,23,22,20,22,39,9,26,56,41,47,8,6,5,6,9,9,13,14,35,9,14,8,2,2,1,0,0,0,0,11,0,15,17,12,4,6,5,5,5,5,3,3,3,0,0,0
-2019F,HI,HLCCP,42,55,74,71,75,83,94,126,143,303,328,386,352,363,352,235,369,387,365,543,315,298,281,331,67,74,70,88,98,102,93,96,303,64,66,63,78,145,413,234,320,324,326,241,246,251,257,223,403,540,531,631,554,599,652,604,606,787,740,803
-2019F,HI,HLICP,43,49,53,117,133,82,85,70,58,407,386,325,359,339,379,472,424,234,78,703,1041,804,1612,1523,6,9,9,11,12,13,15,46,130,772,1499,1207,1191,6,181,0,49,61,247,94,67,14,41,58,5,32,50,42,0,1,5,8,10,56,106,27
-2019F,HI,HLRCP,25,33,45,43,46,50,57,76,87,184,198,233,213,220,213,142,223,234,221,329,191,180,170,201,40,45,42,53,59,62,57,58,183,39,40,38,48,88,250,142,194,196,197,146,149,152,156,125,262,239,239,222,326,218,220,131,180,151,119,129
-2019F,HI,HLTCP,112,140,172,232,257,219,242,285,298,912,938,963,945,942,966,872,1036,877,702,1583,1573,1337,2104,2102,121,133,126,157,178,186,178,214,651,884,1619,1316,1319,241,844,376,562,582,770,492,462,432,471,419,674,819,826,900,886,824,881,747,799,995,965,959
-2019F,HI,HLTXP,112,140,172,232,257,219,242,285,298,912,938,963,945,942,966,872,1036,877,702,1583,1573,1337,2104,2102,121,133,126,157,178,186,178,214,651,884,1619,1316,1319,241,844,376,562,582,770,492,462,432,471,419,674,819,826,900,886,824,881,747,799,995,965,959
-2019F,HI,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,HYEGP,27,24,20,23,28,22,27,24,23,24,22,21,22,20,18,18,22,20,20,21,20,14,23,17,15,19,12,15,14,22,23,20,10,14,63,34,39,49,46,45,43,50,35,40,57,62,82,55,45,77,29,45,56,34,42,63,53,29,62,35
-2019F,HI,HYICP,0,0,0,0,87,83,85,85,71,76,86,69,69,75,74,71,71,66,63,69,67,67,67,67,67,67,67,67,67,33,57,51,51,42,77,64,65,67,75,70,60,50,60,50,37,34,38,38,39,35,42,49,59,44,52,59,38,37,34,59
-2019F,HI,HYTCP,27,24,20,23,115,105,112,108,94,100,108,89,91,95,92,89,93,86,84,90,86,80,90,84,82,86,78,82,81,56,80,71,61,56,139,98,104,115,121,115,103,101,95,91,94,96,120,92,84,113,70,93,115,78,94,121,91,66,97,95
-2019F,HI,HYTXP,0,0,0,0,87,83,85,85,71,76,86,69,69,75,74,71,71,66,63,69,67,67,67,67,67,67,67,67,67,33,57,51,51,42,77,64,65,67,75,70,60,50,60,50,37,34,38,38,39,35,42,49,59,44,52,59,38,37,34,59
-2019F,HI,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,JFACP,4321,4856,4777,6118,6886,7618,9475,12053,13873,14105,14273,16302,16244,16511,14887,14849,14202,14875,14861,15276,14116,10028,7472,11271,12946,13260,10176,11481,11972,13239,12646,11123,9993,8891,9472,9940,10087,10221,9999,9474,9438,8895,10189,12708,13379,16372,15334,12756,10702,9303,12908,13430,14161,15075,15103,15810,16053,17150,17345,17733
-2019F,HI,JFTCP,4321,4856,4777,6118,6886,7618,9475,12053,13873,14105,14273,16302,16244,16511,14887,14849,14202,14875,14861,15276,14116,10028,7472,11271,12946,13260,10176,11481,11972,13239,12646,11123,9993,8891,9472,9940,10087,10221,9999,9474,9438,8895,10189,12708,13379,16372,15334,12756,10702,9303,12908,13430,14161,15075,15103,15810,16053,17150,17345,17733
-2019F,HI,JFTXP,4321,4856,4777,6118,6886,7618,9475,12053,13873,14105,14273,16302,16244,16511,14887,14849,14202,14875,14861,15276,14116,10028,7472,11271,12946,13260,10176,11481,11972,13239,12646,11123,9993,8891,9472,9940,10087,10221,9999,9474,9438,8895,10189,12708,13379,16372,15334,12756,10702,9303,12908,13430,14161,15075,15103,15810,16053,17150,17345,17733
-2019F,HI,KSCCP,23,43,41,35,46,39,34,33,21,24,87,47,35,25,36,45,93,121,108,6,0,0,0,1,1,1,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,KSICP,68,27,14,14,4,10,3,0,6,5,66,33,17,16,39,31,36,48,38,34,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,KSRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,KSTCP,91,69,55,49,50,49,37,33,27,29,153,80,52,41,75,76,129,169,146,40,9,0,0,1,2,2,3,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,KSTXP,91,69,55,49,50,49,37,33,27,29,153,80,52,41,75,76,129,169,146,40,9,0,0,1,2,2,3,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,LUACP,19,19,68,68,72,73,76,64,71,66,68,60,64,64,61,74,83,74,80,84,74,71,65,68,73,68,66,75,72,74,76,68,69,71,74,73,71,75,78,79,78,71,70,65,66,65,64,66,61,55,76,84,75,79,70,75,69,65,63,62
-2019F,HI,LUICP,18,18,22,22,23,21,22,21,23,4,4,20,21,21,20,30,33,20,21,22,20,19,17,18,19,18,18,20,19,20,20,18,18,19,20,19,19,20,21,21,21,19,19,17,17,17,17,17,16,15,31,27,24,25,26,29,30,28,26,23
-2019F,HI,LUTCP,38,37,91,91,95,94,98,85,94,70,71,79,85,85,81,104,116,94,101,106,94,90,82,86,92,86,84,95,91,94,96,86,88,90,94,92,89,94,99,100,98,90,89,82,83,83,81,83,77,70,108,111,99,104,97,104,99,92,89,85
-2019F,HI,LUTXP,38,37,91,91,95,94,98,85,94,70,71,79,85,85,81,104,116,94,101,106,94,90,82,86,92,86,84,95,91,94,96,86,88,90,94,92,89,94,99,100,98,90,89,82,83,83,81,83,77,70,108,111,99,104,97,104,99,92,89,85
-2019F,HI,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-143,-124,-89,-43,-126,-413,-189,-95,95,100,-48,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,MGACP,3290,3400,3552,3612,3713,3947,4146,4372,4717,5000,5508,5732,6043,6451,6412,6615,6883,7257,7479,7358,7129,7075,7151,7153,7433,7443,7730,8033,8313,8574,8477,8771,8674,8808,9088,9160,9104,9104,9065,8786,9118,9576,10262,10448,10560,10833,11379,11092,10416,10588,9838,10985,10434,10595,10648,10460,10626,10560,10339,10403
-2019F,HI,MGCCP,55,55,57,56,67,59,75,78,104,121,133,80,83,96,63,98,93,96,101,100,54,59,58,49,43,47,46,44,53,52,59,49,45,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,13,12,309,314,319,324,326
-2019F,HI,MGICP,83,92,98,88,81,76,73,76,61,54,49,60,77,61,68,53,54,53,60,48,49,51,52,38,52,104,101,108,110,129,133,150,152,241,245,245,259,242,266,155,160,122,145,137,169,133,141,244,247,234,143,147,140,138,171,284,281,283,292,293
-2019F,HI,MGTCP,3429,3546,3708,3756,3861,4082,4294,4526,4882,5176,5691,5872,6202,6608,6543,6766,7029,7406,7639,7506,7231,7185,7261,7240,7528,7594,7878,8186,8476,8754,8670,8970,8870,9060,9343,9416,9374,9358,9342,8953,9289,9710,10419,10597,10741,10978,11533,11348,10675,10834,9993,11145,10586,10746,10831,11053,11220,11162,10956,11022
-2019F,HI,MGTXP,3429,3546,3708,3756,3861,4082,4294,4526,4882,5176,5691,5872,6202,6608,6543,6766,7029,7406,7639,7506,7231,7185,7261,7240,7528,7594,7878,8186,8476,8754,8670,8970,8870,9060,9343,9416,9374,9358,9342,8953,9289,9710,10419,10597,10741,10978,11533,11348,10675,10834,9993,11145,10586,10746,10831,11053,11220,11162,10956,11022
-2019F,HI,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,NGACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,3,2,2,2,2,3,11,1,2,2,2,2,0
-2019F,HI,NGCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1715,1610,1607,1548,1328,1858,1883,2019,2049,2129,2223,2148,2144,2123,2200,2199,2132,1751,1747,1749,1771,1749,1720,1751,1803,1838,1813,1836,1769,1752,1777,1768,1850,1873,1931,1908,2384,2446,2601,2608
-2019F,HI,NGEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,NGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,373,463,536,532,475,444,446,439,451,502,431,344,339,362,355,388,401,442,83,85,90,94
-2019F,HI,NGRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1416,1289,1197,1121,1048,625,579,591,563,565,565,545,551,558,578,574,540,517,535,524,535,537,539,537,524,516,518,509,499,510,509,486,481,582,583,572,571,572,590,576
-2019F,HI,NGTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3131,2899,2804,2669,2376,2483,2462,2610,2612,2694,2788,2694,2695,2681,2778,2773,2672,2611,2654,2735,2841,2818,2734,2732,2774,2795,2783,2850,2701,2608,2627,2618,2689,2854,2916,2924,3040,3105,3283,3278
-2019F,HI,NGTPP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2,3,2.8,2.6,2.3,2.4,2.3,2.4,2.4,2.5,2.5,2.4,2.3,2.3,2.3,2.3,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.2,2.2,2.2,2.1,2.2,2,1.9,1.9,1.9,1.9,2,2.1,2.1,2.1,2.2,2.3,2.3
-2019F,HI,NGTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3131,2899,2804,2669,2376,2483,2462,2610,2612,2694,2788,2694,2695,2681,2778,2773,2672,2611,2654,2735,2841,2818,2734,2732,2774,2795,2783,2850,2701,2608,2627,2618,2689,2854,2916,2924,3040,3105,3283,3278
-2019F,HI,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,OPICP,430,455,467,478,479,496,489,469,483,502,488,465,483,532,517,514,500,547,565,558,566,322,342,454,457,385,911,1141,1570,1689,1882,1529,1937,1706,1900,1792,2167,2150,1723,1740,1574,2113,1984,2190,2141,2260,2362,2286,2016,2009,2184,2229,2283,2155,1974,2000,2051,2104,2061,2101
-2019F,HI,OPTCP,430,455,467,478,479,496,489,469,483,502,488,465,483,532,517,514,500,547,565,558,566,322,342,454,457,385,911,1141,1570,1689,1882,1529,1937,1706,1900,1792,2167,2150,1723,1740,1574,2113,1984,2190,2141,2260,2362,2286,2016,2009,2184,2229,2283,2155,1974,2000,2051,2104,2061,2101
-2019F,HI,OPTXP,430,455,467,478,479,496,489,469,483,502,488,465,483,532,517,514,500,547,565,558,566,322,342,454,457,385,911,1141,1570,1689,1882,1529,1937,1706,1900,1792,2167,2150,1723,1740,1574,2113,1984,2190,2141,2260,2362,2286,2016,2009,2184,2229,2283,2155,1974,2000,2051,2104,2061,2101
-2019F,HI,P1ICP,649,812,786,829,870,992,925,799,915,906,1066,939,1006,1133,1049,1174,1265,1265,1291,1318,1186,827,830,979,953,1083,1562,1961,2356,2380,2617,2311,2754,2513,2683,2618,2998,2956,2428,2464,2566,2849,2481,2699,2667,2859,2743,2663,2335,2995,3244,3246,3055,3244,3011,3009,2836,2852,2400,2392
-2019F,HI,P1TCP,3331,3943,2748,2033,1527,1717,1924,1362,1245,1158,1354,1186,1248,1354,1270,1408,1570,1608,1620,1560,1459,1080,1032,1204,1172,1308,1910,2287,2709,2742,2965,2641,3067,2782,2967,2909,3233,3152,2613,2601,2688,2969,2569,2779,2772,2968,2848,2770,2423,3080,3358,3365,3160,3349,3109,3093,2912,2926,2484,2485
-2019F,HI,P1TXP,3331,3943,2748,2033,1527,1717,1924,1362,1245,1158,1354,1186,1248,1354,1270,1408,1570,1608,1620,1560,1459,1080,1032,1204,1172,1308,1910,2287,2709,2742,2965,2641,3067,2782,2967,2909,3233,3152,2613,2601,2688,2969,2569,2779,2772,2968,2848,2770,2423,3080,3358,3365,3160,3349,3109,3093,2912,2926,2484,2485
-2019F,HI,PAACP,11487,13645,12177,12694,13564,14294,16548,18918,21834,22363,22473,24867,24522,25296,23206,23520,23710,25405,25980,28013,26317,22326,18516,21403,23328,25641,22884,22474,25361,27691,27639,27034,25631,23305,25017,24759,22058,21334,20876,22177,22532,23704,25306,29347,30897,32278,32597,34678,24917,24320,27959,28950,28886,29719,28291,29106,29746,31080,31402,31630
-2019F,HI,PACCP,209,253,261,256,290,283,316,339,395,610,760,686,632,646,568,477,669,757,726,929,792,589,500,490,251,275,369,596,2475,2113,1430,773,1897,524,899,480,326,560,2338,511,558,478,648,536,644,651,662,517,636,825,808,943,833,867,987,1138,1076,1311,1301,1446
-2019F,HI,PAEIP,2756,3053,3374,3822,4204,4353,4677,4942,5481,6081,6798,7540,8556,8786,9085,9309,9887,10340,10643,10795,11127,11127,10595,10876,11147,11047,11575,12196,13044,13686,15657,12903,13865,12272,12735,12921,13319,13175,13264,13453,13623,13588,14842,13098,13704,13888,13952,13738,13209,12954,12610,12518,11677,11295,10822,10880,10498,10488,10551,10696
-2019F,HI,PAICP,2367,3089,3159,3116,3153,3497,3515,3976,3659,3769,3874,3407,3830,3879,3666,3648,3557,3589,3375,4592,5135,4588,5926,3321,2531,2997,4173,4070,4961,4469,5231,4989,5078,5250,6151,5643,5880,4672,3765,3380,3685,3513,3779,3733,3704,4298,4194,3844,3367,4131,4214,4231,3897,3991,3836,3921,3698,4017,3507,3488
-2019F,HI,PARCP,26,34,45,43,46,51,58,77,87,185,200,234,214,221,214,143,224,235,222,331,192,181,170,201,41,45,43,54,61,62,57,58,184,41,42,40,48,88,250,142,194,197,197,146,149,152,159,128,267,242,239,222,326,218,220,132,180,151,119,129
-2019F,HI,PATCP,16844,20074,19015,19931,21257,22478,25113,28252,31456,33007,34105,36734,37753,38826,36739,37097,38047,40326,40945,44660,43562,38811,35706,36291,37297,40006,39044,39389,45902,48021,50015,45758,46655,41392,44843,43842,41631,39829,40493,39662,40591,41479,44772,46861,49098,51267,51564,52905,42397,42472,45830,46865,45620,46091,44157,45177,45198,47047,46878,47389
-2019F,HI,PATPP,26.2,30.5,27.8,29.2,30.4,31.9,35.4,39.1,42.9,44,44.1,45.8,45.6,45.6,42.3,41.9,42.1,43.9,44,46.8,45,39.7,35.9,35.8,36.3,38.5,37.1,36.9,42.5,43.9,44.9,40.3,40.3,35.3,37.8,36.6,34.6,32.9,33.3,32.8,33.4,33.8,36.1,37.5,38.6,39.7,39.4,40.2,31.8,31.5,33.6,34,32.7,32.7,31.2,31.7,31.6,33,32.9,33.5
-2019F,HI,PATXP,14088,17021,15641,16110,17053,18125,20437,23309,25975,26926,27307,29194,29197,30041,27654,27788,28160,29986,30302,33865,32436,27684,25111,25415,26151,28959,27469,27193,32858,34335,34357,32855,32790,29120,32108,30922,28312,26654,27229,26209,26968,27891,29930,33762,35394,37379,37611,39167,29188,29518,33220,34347,33943,34796,33335,34297,34700,36559,36327,36693
-2019F,HI,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,PCICP,103,103,100,146,144,159,152,98,143,118,131,133,160,232,216,220,296,319,375,439,306,298,299,248,271,372,361,403,415,375,333,381,367,344,356,368,411,390,362,351,366,376,372,381,388,382,361,357,300,287,256,288,306,343,333,342,342,339,0,0
-2019F,HI,PCTCP,103,103,100,146,144,159,152,98,143,118,131,133,160,232,216,220,296,319,375,439,306,298,299,248,271,372,361,403,415,375,333,381,367,344,356,368,411,390,362,351,366,376,372,381,388,382,361,357,300,287,256,288,306,343,333,342,342,339,0,0
-2019F,HI,PCTXP,103,103,100,146,144,159,152,98,143,118,131,133,160,232,216,220,296,319,375,439,306,298,299,248,271,372,361,403,415,375,333,381,367,344,356,368,411,390,362,351,366,376,372,381,388,382,361,357,300,287,256,288,306,343,333,342,342,339,0,0
-2019F,HI,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,3,3,0,0,0
-2019F,HI,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,531,631,554,599,652,604,606,787,740,803
-2019F,HI,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50,42,0,1,5,8,10,56,106,27
-2019F,HI,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,239,222,326,218,220,131,180,151,119,129
-2019F,HI,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,826,900,886,824,881,747,799,995,965,959
-2019F,HI,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,826,900,886,824,881,747,799,995,965,959
-2019F,HI,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,HI,RFACP,968,1351,953,1030,1226,1195,1380,1525,2297,2393,1744,1791,1284,1376,775,1013,1144,1477,1580,1248,1441,1231,1060,1461,1320,1526,1557,1082,1634,2216,2657,2594,3756,2654,2936,2677,702,489,383,1708,2226,2658,1437,914,1493,1121,2375,4465,978,1214,1075,1002,906,880,848,699,810,1148,1025,1320
-2019F,HI,RFCCP,41,44,36,35,34,31,34,30,37,39,38,32,32,32,23,15,22,31,28,16,25,54,106,9,23,21,67,53,1762,1457,825,18,1052,34,433,62,13,11,1704,6,8,5,0,0,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,RFEIP,2719,3012,3329,3768,4145,4292,4611,4873,5404,5996,6702,7438,8289,8539,8733,8880,9440,9791,9867,9999,10239,10348,9990,10229,10320,10295,10751,11127,11771,12255,13844,11193,11692,10102,10567,10709,10996,10873,10851,10898,10848,10613,10855,10801,11218,11304,11499,11426,11009,10704,10364,10255,9494,9216,8767,8746,8461,8395,8397,8379
-2019F,HI,RFICP,1038,1519,1656,1598,1560,1712,1776,2390,2001,1628,1671,1440,1733,1627,1591,1346,1266,1396,1081,904,1491,1527,2136,449,1132,1344,1952,1332,1768,1427,1740,1793,1356,1056,1184,1024,957,845,305,332,438,8,446,364,395,781,811,428,434,466,451,454,326,283,257,298,408,514,445,396
-2019F,HI,RFTCP,4766,5926,5974,6431,6965,7230,7801,8818,9738,10056,10154,10701,11338,11575,11122,11255,11871,12695,12556,12167,13196,13160,13292,12148,12796,13185,14326,13595,16935,17355,19067,15599,17856,13845,15120,14473,12667,12218,13243,12945,13520,13284,12738,12079,13110,13210,14687,16318,12421,12384,11889,11710,10726,10378,9871,9744,9679,10056,9866,10094
-2019F,HI,RFTXP,2047,2914,2645,2662,2820,2938,3190,3945,4334,4060,3452,3263,3049,3035,2389,2374,2432,2904,2689,2168,2957,2812,3302,1919,2475,2890,3575,2468,5164,5100,5222,4406,6164,3744,4553,3764,1671,1345,2392,2046,2672,2671,1883,1277,1892,1905,3188,4893,1412,1680,1525,1456,1233,1163,1105,997,1218,1662,1470,1716
-2019F,HI,SGICP,430,455,467,451,452,466,455,439,453,472,453,421,445,497,478,472,456,501,513,524,525,594,625,620,646,658,1785,1810,2067,2171,2401,2324,2388,2372,2346,2310,2329,2290,2200,2165,2181,2219,2179,2254,2235,2241,2247,2179,2088,2123,2136,2140,2186,2131,2089,2025,2040,2000,2022,1919
-2019F,HI,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,8,17,28,39,65,134,171,228,243,279,360,406,435
-2019F,HI,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,4,5,19,39,54,89,175,185,268
-2019F,HI,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,4
-2019F,HI,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,5,18,43,123,246,323,389,479,609,620,674
-2019F,HI,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,5,9,18,34,59,111,262,437,590,687,848,1146,1213,1381
-2019F,HI,TPOPP,642,659,684,682,700,704,710,723,734,750,774,802,828,852,868,886,904,918,932,953,968,978,994,1013,1028,1040,1052,1068,1080,1095,1113,1137,1159,1173,1188,1197,1204,1212,1215,1210,1214,1226,1240,1251,1274,1293,1310,1316,1332,1347,1364,1380,1395,1409,1415,1423,1429,1426,1423,1416
-2019F,HI,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-152,-185,-107,-184,-190,-462,-480,-401,-577,-619,-756,-603,-676,-469,-539,-188,-168,-495,-447,-622,-118,-208,-76,-112,4,105,96,-79,-117,42,83,91,24,-114,-25,12,104,42,184
-2019F,HI,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,10,10,10,10,12,11,11,9,8,0,0,0,0,0,10,8,7,4,6,5,6,0,0,0,0,0,0,0
-2019F,HI,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,29,36,23,22,20,20,23,16,19,16,17,2,2,2,7,7,80,238,240,251,261,341,378,503,579,613,639,532,602,529
-2019F,HI,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,HI,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,29,36,23,22,20,20,23,16,19,16,17,2,2,2,7,7,80,238,240,251,261,341,378,503,579,613,639,532,602,529
-2019F,HI,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,ARICP,2579,2551,2523,2322,2526,2569,2638,2517,2533,2719,2914,3120,2970,2608,2567,2294,2439,2553,2843,3154,1699,1972,1915,1603,1841,2023,2038,1788,2213,1710,1537,1563,1406,1354,1964,1636,2052,2623,2157,2942,2471,1926,2403,2303,3020,3195,2603,2078,2081,1836,1274,1234,1545,1459,1328,1336,1436,1483,1211,1151
-2019F,IA,ARTCP,2579,2551,2523,2322,2526,2569,2638,2517,2533,2719,2914,3120,2970,2608,2567,2294,2439,2553,2843,3154,1699,1972,1915,1603,1841,2023,2038,1788,2213,1710,1537,1563,1406,1354,1964,1636,2052,2623,2157,2942,2471,1926,2403,2303,3020,3195,2603,2078,2081,1836,1274,1234,1545,1459,1328,1336,1436,1483,1211,1151
-2019F,IA,ARTXP,2579,2551,2523,2322,2526,2569,2638,2517,2533,2719,2914,3120,2970,2608,2567,2294,2439,2553,2843,3154,1699,1972,1915,1603,1841,2023,2038,1788,2213,1710,1537,1563,1406,1354,1964,1636,2052,2623,2157,2942,2471,1926,2403,2303,3020,3195,2603,2078,2081,1836,1274,1234,1545,1459,1328,1336,1436,1483,1211,1151
-2019F,IA,AVACP,366,225,328,315,358,358,471,370,295,271,256,261,239,98,232,191,206,204,214,191,184,161,111,109,89,83,151,110,145,111,99,82,75,70,69,72,71,78,72,81,78,57,109,95,87,139,52,45,77,92,70,66,58,48,50,48,40,42,42,46
-2019F,IA,AVTCP,366,225,328,315,358,358,471,370,295,271,256,261,239,98,232,191,206,204,214,191,184,161,111,109,89,83,151,110,145,111,99,82,75,70,69,72,71,78,72,81,78,57,109,95,87,139,52,45,77,92,70,66,58,48,50,48,40,42,42,46
-2019F,IA,AVTXP,366,225,328,315,358,358,471,370,295,271,256,261,239,98,232,191,206,204,214,191,184,161,111,109,89,83,151,110,145,111,99,82,75,70,69,72,71,78,72,81,78,57,109,95,87,139,52,45,77,92,70,66,58,48,50,48,40,42,42,46
-2019F,IA,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,5,10,34,98,133,114,121,98,333,554,690,794,893,1091,1369,1382,1570
-2019F,IA,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,5,10,34,98,133,114,121,98,333,554,690,794,893,1091,1369,1382,1570
-2019F,IA,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,CLACP,38,9,8,8,8,8,7,5,4,3,3,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,CLCCP,373,315,331,281,202,211,189,143,103,99,78,61,43,48,77,97,43,52,189,254,71,163,149,159,174,217,196,260,300,139,196,183,52,58,34,78,195,333,249,343,232,248,275,252,159,252,276,290,257,265,266,247,213,210,209,173,130,122,104,99
-2019F,IA,CLEIP,2118,1902,2286,2329,2368,2760,2841,2977,3233,3714,4030,4316,5277,5351,4720,4936,6697,7593,8454,9347,10745,11808,11435,11921,11966,12491,12044,12997,13921,14598,15482,16010,15508,16763,16684,17877,17994,18322,20163,20206,21317,21305,21504,21680,21873,21072,21236,23019,24734,22607,24780,22677,20747,19517,19705,16840,14289,14478,16230,12787
-2019F,IA,CLICP,2193,2049,2092,2258,2212,2464,2397,2154,1986,1919,1955,1460,1592,1598,1340,1333,1554,1510,1411,1687,1505,1476,1420,1430,1443,1572,1563,1857,1808,2351,2353,2672,2571,2494,2735,2761,3085,3103,2832,2995,2902,2814,2860,2898,2925,2930,3067,3009,2904,2682,3348,3542,3345,3433,3094,2849,2485,2412,2399,2326
-2019F,IA,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,CLOCP,2193,2049,2092,2258,2212,2464,2397,2154,1986,1919,1955,1460,1592,1598,1340,1333,1554,1510,1411,1687,1505,1476,1420,1430,1443,1572,1563,1857,1808,2351,2353,2672,2571,2494,2735,2761,3085,3103,2832,2995,2902,2814,2860,2898,2925,2930,3067,3009,2904,2682,3348,3542,3345,3433,3094,2849,2485,2412,2399,2326
-2019F,IA,CLRCP,537,453,476,387,279,279,251,189,131,126,100,58,32,28,36,42,17,20,56,64,19,36,30,30,41,61,59,78,85,37,49,40,12,13,6,12,27,41,31,47,29,31,38,38,18,22,27,32,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,CLTCP,5258,4728,5194,5264,5069,5722,5686,5467,5458,5862,6166,5896,6945,7026,6173,6407,8311,9175,10110,11352,12340,13483,13033,13540,13624,14342,13862,15191,16114,17126,18080,18905,18143,19328,19460,20728,21301,21798,23275,23590,24480,24398,24676,24868,24975,24276,24607,26350,27894,25554,28393,26466,24305,23160,23008,19863,16904,17011,18734,15212
-2019F,IA,CLTXP,3141,2826,2908,2935,2701,2962,2845,2491,2225,2148,2136,1581,1669,1675,1454,1472,1614,1582,1656,2005,1595,1675,1599,1619,1658,1850,1818,2194,2193,2528,2599,2895,2635,2565,2776,2851,3307,3477,3111,3384,3163,3093,3173,3187,3102,3204,3370,3332,3161,2947,3613,3789,3558,3643,3303,3023,2615,2533,2504,2425
-2019F,IA,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,DFACP,1711,1252,1866,2506,2610,1991,2477,2398,3776,4122,4339,5285,5640,6532,6629,6851,7439,7945,7776,8816,7924,7394,8756,7907,8174,8094,7774,8783,8905,8888,9352,8362,8545,9220,9782,10762,12275,11914,12198,12341,12049,12111,12327,12910,14871,15113,15752,17272,16555,15862,16822,17053,16338,16600,17408,16898,16947,17158,17566,17882
-2019F,IA,DFCCP,1046,1008,1014,929,897,941,988,1028,1039,927,895,803,922,888,788,722,739,775,866,1334,751,623,647,1223,1502,1167,717,836,721,571,576,562,484,357,356,415,356,320,463,487,481,544,454,697,466,316,632,247,374,512,467,680,969,966,887,904,889,1003,1019,1236
-2019F,IA,DFEIP,259,200,169,191,157,183,205,215,223,222,327,376,540,265,360,507,478,554,763,496,168,175,133,139,108,101,105,115,123,113,123,112,92,126,187,154,140,219,275,308,223,218,136,212,177,355,270,442,180,128,183,158,204,183,127,94,164,121,130,137
-2019F,IA,DFICP,5536,5122,5486,5141,5088,5607,6225,6402,6539,6166,5884,5790,5539,5632,5083,4670,4589,4768,5351,6738,4698,4310,4589,3816,4687,4971,6157,5456,5409,4788,4807,4593,6173,6171,6083,5636,6247,6475,6572,5915,6027,6813,6209,4722,4571,4550,4418,4683,5633,5544,6119,5949,6290,6181,6643,7657,7912,7446,7374,7967
-2019F,IA,DFRCP,2610,2514,2530,2319,2238,2347,2466,2565,2592,2312,2232,2003,2300,2215,1965,1802,1843,1935,2160,3328,2388,2011,2110,1014,1245,1490,1461,1341,1175,1241,926,885,772,824,886,781,774,725,550,537,481,415,580,389,322,226,241,229,286,182,191,253,128,128,135,135,108,169,158,147
-2019F,IA,DFTCP,11163,10097,11066,11086,10991,11068,12362,12608,14168,13749,13677,14257,14941,15531,14825,14553,15088,15977,16915,20711,15930,14513,16235,14099,15716,15823,16214,16531,16333,15600,15784,14513,16066,16699,17293,17748,19793,19652,20058,19588,19261,20101,19706,18930,20407,20560,21313,22873,23026,22227,23781,24092,23929,24058,25199,25689,26020,25897,26247,27369
-2019F,IA,DFTXP,10904,9896,10896,10895,10834,10886,12157,12393,13945,13527,13350,13880,14400,15266,14465,14046,14610,15423,16152,20215,15762,14338,16102,13960,15608,15722,16109,16416,16210,15488,15660,14401,15975,16573,17107,17593,19653,19433,19783,19280,19038,19883,19570,18718,20230,20205,21043,22431,22847,22100,23598,23934,23725,23875,25072,25595,25856,25776,26117,27232
-2019F,IA,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,40,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1059,0,0,0,0,0,0,0,0,0,0,0,165,108,68,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2934,2209,3497,4122,3889,3858,4626,4931,3168,3935,2281,2990,2995,3766,2674,3500,2737,385,-2933,-3115,-6574,-5125,-5178,-4292,-4218,-4006,-586,-3709,-6877,-5401
-2019F,IA,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1059,0,0,0,0,0,0,0,0,0,0,0,165,67,28,0,5,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,1094,1143,963,769,789,914,927,1063,851,1038,1293,1541,1787,1754,1115,1349,1679,1821,2138,2219,2271,2423,2516,792,707,1221,2201,2127,3539,3726,3477,3417,3797,4148,4521,4159,4075,4115
-2019F,IA,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,14,9,6,6,7,8,10,8,4,25,28,31,2,2,8,18,22,22,32,35,40,44,69,16,26,53,89,102,217,213,210,209,214,306,63,64,65,66
-2019F,IA,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,78,34,55,44,40,45,42,45,30,39,45,39,60,55,36,43,42,45,47,76,80,88,116,34,32,46,66,67,126,135,97,92,79,86,99,101,99,92
-2019F,IA,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,1185,1186,1025,820,836,967,979,1116,885,1102,1366,1611,1849,1811,1158,1410,1744,1888,2217,2330,2391,2555,2701,842,765,1320,2356,2295,3882,4073,3784,3718,4090,4540,4683,4325,4239,4273
-2019F,IA,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8851,8851,6657,9034,9034,9034,9058,9034,9034,9034
-2019F,IA,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8851,8851,6657,9034,9034,9034,9058,9034,9034,9034
-2019F,IA,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,ESCCP,1812,1990,2223,2414,2580,2797,2781,2942,3209,3418,3655,3911,4175,4401,4490,5121,5291,5470,5717,5852,5502,6780,6850,7182,6285,6306,6551,6717,7136,7301,7532,7938,7783,8536,8753,8890,8673,8944,9384,9668,9932,10776,11429,11637,10840,11271,11660,12084,12178,11706,12025,12088,12210,12445,12339,12072,12291,12135,12418,12310
-2019F,IA,ESICP,2676,2733,2831,3042,3415,3719,3958,4247,4553,5021,5338,5658,6361,7034,7199,6626,7367,8029,8603,8855,9318,9750,9321,9507,9527,9520,9797,10264,11025,11017,11392,11684,12134,12465,13224,13771,14789,15531,16079,16499,17127,16238,16548,16803,17437,17915,18331,19125,19237,18211,18865,19240,19512,19635,20436,21289,22046,23065,23953,24239
-2019F,IA,ESRCP,3720,3937,4157,4433,4742,5044,4554,4845,5436,5920,6480,6854,7276,7651,7798,8338,8422,8852,9634,9701,10038,9852,10198,11064,9870,9851,10008,10045,10677,10394,10513,11159,10290,11103,11062,11640,11537,11673,11855,11867,12029,12430,12921,12768,12625,13571,13344,14060,14073,13723,14555,14327,13988,14626,14427,13786,14094,13722,14840,14495
-2019F,IA,ESRPP,1350,1429,1512,1614,1727,1839,1649,1735,1939,2111,2288,2403,2544,2672,2719,2894,2901,3038,3301,3327,3445,3388,3531,3854,3453,3481,3585,3630,3857,3752,3780,3989,3651,3914,3880,4059,4006,4038,4084,4067,4107,4239,4403,4340,4274,4578,4474,4688,4665,4525,4771,4672,4546,4727,4638,4415,4498,4365,4711,4588
-2019F,IA,ESTCP,8208,8659,9210,9889,10736,11560,11294,12034,13197,14360,15473,16422,17813,19086,19487,20085,21080,22351,23954,24408,24858,26382,26369,27753,25682,25677,26356,27026,28838,28712,29437,30781,30208,32104,33039,34301,34999,36148,37318,38034,39088,39444,40898,41207,40903,42757,43337,45270,45488,43641,45445,45655,45709,46705,47202,47147,48431,48922,51211,51043
-2019F,IA,ESTPP,2978,3142,3349,3600,3910,4216,4089,4309,4708,5119,5463,5759,6228,6665,6796,6972,7261,7671,8209,8371,8530,9072,9130,9668,8984,9074,9440,9767,10417,10363,10585,11003,10718,11316,11590,11962,12153,12503,12856,13036,13345,13453,13938,14007,13848,14423,14530,15094,15079,14389,14896,14887,14856,15096,15174,15099,15457,15562,16258,16155
-2019F,IA,ESTXP,8208,8659,9210,9889,10736,11560,11294,12034,13197,14360,15473,16422,17813,19086,19487,20085,21080,22351,23954,24408,24858,26382,26369,27753,25682,25677,26356,27026,28838,28712,29437,30781,30208,32104,33039,34301,34999,36148,37318,38034,39088,39444,40898,41207,40903,42757,43337,45270,45488,43641,45445,45655,45709,46705,47202,47147,48431,48922,51211,51043
-2019F,IA,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,60,55,36,8,9,8,6,5,2,2
-2019F,IA,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,60,55,36,8,9,8,6,5,2,2
-2019F,IA,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,FSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,HLACP,23,18,28,45,38,55,74,111,90,100,58,67,58,66,59,53,45,48,68,39,34,103,103,123,143,90,141,48,46,51,42,49,46,54,151,58,98,91,21,4,9,82,10,52,44,62,61,77,135,138,15,13,11,11,9,9,9,28,108,119
-2019F,IA,HLCCP,390,387,457,490,459,558,633,823,813,873,803,805,890,854,797,800,839,784,715,593,458,424,443,527,346,352,384,297,361,397,323,395,400,465,462,466,626,581,491,615,624,401,520,494,475,410,521,531,699,1038,644,782,602,634,649,500,510,559,932,1103
-2019F,IA,HLICP,1098,1089,1285,1516,1537,1815,2056,2176,2712,3202,2949,3020,3544,4088,5340,5593,10154,9966,8480,8719,6557,5551,7417,6630,3728,4893,4789,3082,2951,3156,3087,3255,4932,10944,10894,12267,4986,4399,9946,12589,13368,12031,13111,7859,14128,15814,16355,11945,13971,14638,14581,13867,11242,15489,15607,14477,14532,14757,14862,15915
-2019F,IA,HLRCP,3507,3483,4113,4409,4128,5020,5697,7407,7317,7854,7227,7247,8013,7684,7173,7199,7548,7056,6435,5336,4119,3813,3990,4746,3118,3172,3459,2671,3253,3571,2904,3556,3601,4188,4156,4197,5634,5225,4423,5538,5620,3613,4676,4932,4327,4595,4256,4340,5718,5575,4598,4646,3730,4544,4634,3914,4008,3796,5895,6551
-2019F,IA,HLTCP,5017,4976,5882,6460,6162,7448,8460,10517,10931,12029,11038,11139,12506,12692,13369,13645,18586,17854,15698,14686,11167,9891,11953,12026,7336,8507,8774,6098,6612,7174,6355,7255,8978,15651,15663,16989,11344,10296,14882,18746,19621,16127,18317,13337,18974,20881,21192,16893,20523,21389,19838,19308,15584,20678,20899,18900,19059,19139,21797,23688
-2019F,IA,HLTXP,5017,4976,5882,6460,6162,7448,8460,10517,10931,12029,11038,11139,12506,12692,13369,13645,18586,17854,15698,14686,11167,9891,11953,12026,7336,8507,8774,6098,6612,7174,6355,7255,8978,15651,15663,16989,11344,10296,14882,18746,19621,16127,18317,13337,18974,20881,21192,16893,20523,21389,19838,19308,15584,20678,20899,18900,19059,19139,21797,23688
-2019F,IA,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,HYEGP,879,895,930,756,688,926,865,805,950,864,934,911,992,905,890,877,644,779,929,897,945,980,917,918,917,988,952,970,698,672,875,901,1000,747,1071,1003,935,805,913,946,904,845,946,789,946,960,909,962,819,971,948,925,766,749,879,960,917,1034,925,796
-2019F,IA,HYICP,2,2,1,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,HYTCP,881,897,931,758,690,928,867,806,951,866,935,913,993,906,891,879,645,780,930,898,946,982,918,920,918,989,953,971,699,672,875,901,1000,747,1071,1003,935,805,913,946,904,845,946,789,946,960,909,962,819,971,948,925,766,749,879,960,917,1034,925,796
-2019F,IA,HYTXP,2,2,1,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,JFACP,195,200,227,239,252,232,298,471,650,745,725,655,730,710,749,835,964,1004,1127,1039,813,717,635,591,615,592,595,779,713,750,891,892,803,720,897,1046,819,793,1186,885,771,777,782,793,910,990,1033,899,786,525,956,964,1005,967,963,1063,1060,1161,1158,1152
-2019F,IA,JFTCP,195,200,227,239,252,232,298,471,650,745,725,655,730,710,749,835,964,1004,1127,1039,813,717,635,591,615,592,595,779,713,750,891,892,803,720,897,1046,819,793,1186,885,771,777,782,793,910,990,1033,899,786,525,956,964,1005,967,963,1063,1060,1161,1158,1152
-2019F,IA,JFTXP,195,200,227,239,252,232,298,471,650,745,725,655,730,710,749,835,964,1004,1127,1039,813,717,635,591,615,592,595,779,713,750,891,892,803,720,897,1046,819,793,1186,885,771,777,782,793,910,990,1033,899,786,525,956,964,1005,967,963,1063,1060,1161,1158,1152
-2019F,IA,KSCCP,94,86,77,84,78,54,35,18,18,16,13,10,14,15,9,6,5,5,5,10,5,14,36,4,4,7,2,6,5,6,38,3,4,7,13,3,4,8,3,4,6,13,6,4,5,15,4,3,1,1,2,2,1,1,1,1,1,1,2,1
-2019F,IA,KSICP,192,147,132,159,158,142,369,420,139,178,152,115,148,157,135,70,86,64,62,205,119,125,115,31,34,33,39,47,24,24,19,15,18,31,28,41,20,27,34,44,43,43,24,13,15,15,10,10,4,2,3,2,1,1,3,2,3,2,1,3
-2019F,IA,KSRCP,2301,2117,1881,2063,1906,1327,857,450,452,399,325,247,344,369,213,138,124,134,135,245,47,235,299,54,108,115,75,57,78,41,24,34,20,33,19,25,30,28,25,24,26,37,22,20,28,22,15,10,6,14,15,11,2,2,4,3,6,5,3,5
-2019F,IA,KSTCP,2587,2351,2090,2306,2142,1523,1262,888,609,594,490,372,506,541,357,214,215,203,202,460,171,374,450,89,146,155,115,110,107,71,81,51,42,71,60,69,54,63,62,72,75,93,53,37,48,52,30,23,11,17,20,14,4,4,8,5,9,7,6,9
-2019F,IA,KSTXP,2587,2351,2090,2306,2142,1523,1262,888,609,594,490,372,506,541,357,214,215,203,202,460,171,374,450,89,146,155,115,110,107,71,81,51,42,71,60,69,54,63,62,72,75,93,53,37,48,52,30,23,11,17,20,14,4,4,8,5,9,7,6,9
-2019F,IA,LUACP,516,502,484,484,508,480,498,414,455,471,480,397,425,506,485,501,556,521,560,586,522,500,456,478,509,475,464,525,506,519,534,478,487,496,519,510,495,522,547,553,544,499,493,456,462,459,447,462,429,386,345,334,298,313,328,348,342,302,287,277
-2019F,IA,LUICP,196,191,236,236,248,218,227,226,249,216,220,188,202,245,234,155,172,192,206,215,192,184,168,176,187,175,171,193,186,191,196,176,179,182,191,187,182,192,201,203,200,183,181,168,170,169,165,170,158,142,256,230,210,226,230,258,232,216,212,199
-2019F,IA,LUTCP,713,694,720,720,756,698,725,640,703,687,700,585,626,751,719,655,728,713,766,801,714,684,624,653,697,649,635,718,692,710,731,654,666,679,709,697,676,715,748,756,745,682,674,623,631,628,612,632,587,527,601,564,508,538,559,606,574,518,499,476
-2019F,IA,LUTXP,713,694,720,720,756,698,725,640,703,687,700,585,626,751,719,655,728,713,766,801,714,684,624,653,697,649,635,718,692,710,731,654,666,679,709,697,676,715,748,756,745,682,674,623,631,628,612,632,587,527,601,564,508,538,559,606,574,518,499,476
-2019F,IA,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,MGACP,23488,23576,24000,24223,24375,25224,26386,28093,29130,30014,30039,32649,33778,36911,34716,34929,37119,37633,37826,35494,32432,30991,30487,31217,30280,29525,29574,29932,30763,31036,30470,30584,30016,31266,32744,33345,34561,34040,35603,35681,35436,35020,36099,36273,36738,36906,37368,37248,36697,36677,37206,37531,35392,35948,36895,36064,39765,36178,35828,35622
-2019F,IA,MGCCP,178,184,187,184,189,194,204,225,295,270,271,275,285,304,307,323,830,1180,1190,1267,350,381,381,241,204,237,273,266,339,233,142,727,645,637,35,35,244,445,470,433,533,547,640,653,1010,741,1359,1609,1483,1759,2282,2142,2141,2197,2078,2657,552,560,568,573
-2019F,IA,MGICP,5797,5770,5522,5985,5485,5373,6068,6233,5211,5137,5391,4401,4341,4889,3825,3791,2788,2423,1911,1739,2612,2902,2162,928,1740,1703,1508,1490,1407,1304,1072,1160,1052,799,1108,1038,1105,1092,900,879,784,1201,1265,1323,1698,1568,1702,1394,1102,1152,1320,1355,985,970,772,748,875,880,870,797
-2019F,IA,MGTCP,29463,29531,29710,30391,30049,30792,32659,34552,34636,35422,35701,37325,38404,42104,38847,39042,40738,41237,40927,38501,35394,34274,33030,32386,32223,31465,31355,31687,32509,32574,31684,32471,31713,32703,33887,34418,35909,35577,36973,36993,36753,36768,38004,38249,39445,39215,40429,40251,39281,39588,40808,41028,38519,39115,39744,39469,41192,37618,37266,36991
-2019F,IA,MGTXP,29463,29531,29710,30391,30049,30792,32659,34552,34636,35422,35701,37325,38404,42104,38847,39042,40738,41237,40927,38501,35394,34274,33030,32386,32223,31465,31355,31687,32509,32574,31684,32471,31713,32703,33887,34418,35909,35577,36973,36993,36753,36768,38004,38249,39445,39215,40429,40251,39281,39588,40808,41028,38519,39115,39744,39469,41192,37618,37266,36991
-2019F,IA,MSICP,0,0,0,0,0,0,0,0,0,0,0,52,53,66,84,113,706,799,695,643,610,263,230,206,177,178,61,61,74,68,61,26,17,16,18,17,95,105,127,120,127,77,83,78,70,70,91,89,95,101,106,110,108,230,245,254,257,410,408,372
-2019F,IA,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,NGACP,8921,8288,8913,9516,10004,11070,10805,13765,12609,15900,18299,19833,20269,16484,17182,16095,8868,6975,4931,10772,12681,10874,8860,7930,10532,10350,7262,8149,10589,10446,9150,6649,6948,7343,10748,11067,12670,11340,8803,7787,8307,9027,11016,9948,10250,11625,12526,12321,14101,13846,11042,10811,10145,11413,12731,10950,8928,10502,12269,11860
-2019F,IA,NGCCP,27863,30118,33035,33212,36327,38702,41792,45118,48034,52700,57266,59138,61623,63350,64052,66915,64734,60519,49200,58308,50588,46804,51536,46854,48104,47643,43709,38057,44955,46142,43953,46615,46095,50337,47922,50325,54571,50191,43027,44895,45609,45892,46423,48081,46068,45152,43424,46367,56099,56698,51674,51875,43767,56592,57439,49165,49414,49710,56854,57985
-2019F,IA,NGEIP,48587,57208,55270,52544,56416,52238,61968,60506,69245,68769,77910,71321,60638,61864,61201,46929,25804,13590,8177,8333,6834,3362,2501,3249,3069,2100,1365,3265,5459,2402,4141,4428,2928,4585,3366,4643,3367,4124,5947,5249,4735,5754,5250,4252,8290,21285,19629,25941,17645,10019,12560,9893,16509,12070,10497,16199,20886,29369,47070,45776
-2019F,IA,NGICP,43337,47521,48605,55659,69134,68244,46372,71869,82674,89753,98968,102116,105523,131632,133224,121489,122343,112212,95044,118167,114523,115174,89401,85161,93373,87060,80364,88346,102013,89347,90240,97446,100752,102374,108168,112926,113691,107148,105388,101341,100065,92589,92223,93856,93890,96007,101032,140892,162478,164512,167423,167233,168907,173545,172142,178772,189618,241187,256030,249885
-2019F,IA,NGRCP,58430,61528,67729,68074,71753,77259,78541,81592,84936,91219,96219,92231,96463,91310,91936,94370,89676,86950,80877,95941,84955,77017,84791,77323,79767,78750,74202,65246,76111,77403,71380,78801,74879,83422,78260,82238,88078,81696,68901,71430,73857,71074,71545,74024,68321,67271,61844,67754,75449,70111,68376,67097,55855,72519,76574,62735,61247,60362,70950,71385
-2019F,IA,NGTCP,187138,204663,213552,219005,243634,247513,239478,272850,297498,318341,348662,344639,344516,364640,367595,345798,311425,280246,238229,291521,269581,253231,237089,220517,234845,225903,206902,203063,239127,225740,218864,233938,231602,248060,248465,261198,272377,254499,232067,230702,232573,224336,226457,230161,226819,241340,238454,293274,325772,315186,311075,306909,295183,326139,329383,317821,330093,391130,443173,436891
-2019F,IA,NGTPP,67.9,74.3,77.7,79.7,88.7,90.3,86.7,97.7,106.1,113.5,123.1,120.9,120.4,127.3,128.2,120,107.3,96.2,81.6,100,92.5,87.1,82.1,76.8,82.2,79.8,74.1,73.4,86.4,81.5,78.7,83.6,82.2,87.4,87.2,91.1,94.6,88,79.9,79.1,79.4,76.5,77.2,78.2,76.8,81.4,79.9,97.8,108,103.9,102,100.1,95.9,105.4,105.9,101.8,105.4,124.4,140.7,138.3
-2019F,IA,NGTXP,138551,147455,158282,166461,187218,195275,177510,212344,228253,249572,270752,273318,283878,302776,306394,298869,285621,266656,230052,283188,262747,249869,234588,217268,231776,223803,205537,199798,233668,223337,214723,229511,228674,243475,245098,256556,269010,250376,226120,225453,227838,218582,221207,225909,218529,220055,218825,267333,308127,305167,298515,297016,278674,314069,318886,301622,309207,361761,396103,391115
-2019F,IA,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1330,2291,2479,2888,1209,2889,2563,2204,2269,2309,2700,1927,2993,2523,3163,3139,3012,4147,3405,3235,4107,3730,3924,4149,3768,3640,4453,3853,4574,3988,4929,4538,5095,4519,5282,4679,4451,5215,4347,5321,4152,5243,4703,5214,4895,5236
-2019F,IA,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1330,2291,2479,2888,1209,2889,2563,2204,2269,2309,2700,1927,2993,2523,3163,3139,3012,4147,3405,3235,4107,3730,3924,4149,3768,3640,4453,3853,4574,3988,4929,4538,5095,4519,5282,4679,4451,5215,4347,5321,4152,5243,4703,5214,4895,5236
-2019F,IA,OPICP,44,43,39,38,502,542,598,505,544,594,627,571,606,647,660,612,1092,1179,1136,1087,1038,558,498,518,580,498,330,360,320,301,294,417,471,477,399,363,442,434,570,679,518,282,314,273,221,239,283,280,288,212,200,193,179,481,506,494,486,662,646,613
-2019F,IA,OPTCP,44,43,39,38,502,542,598,505,544,594,627,571,606,647,660,612,1092,1179,1136,1087,1038,558,498,518,580,498,330,360,320,301,294,417,471,477,399,363,442,434,570,679,518,282,314,273,221,239,283,280,288,212,200,193,179,481,506,494,486,662,646,613
-2019F,IA,OPTXP,44,43,39,38,502,542,598,505,544,594,627,571,606,647,660,612,1092,1179,1136,1087,1038,558,498,518,580,498,330,360,320,301,294,417,471,477,399,363,442,434,570,679,518,282,314,273,221,239,283,280,288,212,200,193,179,481,506,494,486,662,646,613
-2019F,IA,P1ICP,3011,2932,2930,2754,3434,3471,3832,3668,3464,3706,3913,3995,3926,3657,3596,3130,3789,3987,4247,4661,3047,2839,2696,2327,2642,2729,2577,2388,2743,2226,2046,2171,2073,2045,2582,2228,2696,3276,2962,3868,3232,2435,2922,2756,3426,3617,3061,2538,2531,2192,1733,1658,1935,2732,2688,2384,2503,2617,2402,2382
-2019F,IA,P1TCP,6288,5863,5699,5701,6284,5690,5693,4921,4684,4864,4986,4910,4948,4645,4535,3966,4679,4853,5160,5723,3805,3750,3598,2973,3353,3409,3269,3086,3477,2903,2741,2767,2671,2676,3224,2857,3315,3936,3631,4550,3915,3072,3593,3385,4115,4299,3828,3375,3246,2781,2360,2241,2381,3156,3163,2874,2944,3054,2799,2748
-2019F,IA,P1TXP,6288,5863,5699,5701,6284,5690,5693,4921,4684,4864,4986,4910,4948,4645,4535,3966,4679,4853,5160,5693,3805,3750,3598,2973,3353,3409,3269,3086,3477,2903,2741,2767,2671,2676,3224,2857,3315,3936,3631,4550,3915,3072,3593,3385,4053,4299,3628,3119,3094,2728,2226,2102,2357,3156,3163,2874,2944,3054,2799,2748
-2019F,IA,PAACP,26526,26131,27187,28047,28380,28354,30233,31901,34419,35746,35923,39318,40871,44824,42870,43359,46348,47369,47577,46165,41909,39874,40549,40428,39814,38858,38700,40184,41078,41356,41389,40448,39972,41827,44161,45793,48318,47439,49626,49544,48888,48546,49820,50578,53110,53668,54713,56004,54678,53679,55414,55960,53101,53886,55652,54431,58164,54869,54989,55097
-2019F,IA,PACCP,1940,1851,1909,1879,1838,1882,2091,2205,2246,2160,2047,1965,2184,2185,2069,1966,2574,2947,2930,3440,1642,1469,1536,1999,2059,1765,1415,1422,1447,1239,1108,1696,1582,1497,889,940,1250,1376,1449,1559,1675,1537,1662,1902,2002,1532,2568,2451,2607,3353,3458,3638,3780,3860,3707,4153,2004,2208,2583,2950
-2019F,IA,PAEIP,298,230,195,219,180,210,235,247,257,256,375,492,804,411,484,722,845,893,1143,856,231,181,158,155,117,103,105,115,123,113,123,112,92,126,187,154,140,219,275,308,223,218,136,212,239,355,470,699,332,180,317,296,227,183,127,94,164,121,130,137
-2019F,IA,PAICP,16016,15421,15665,15888,16112,16620,18770,18774,18197,18455,18398,17426,17522,18565,18247,17463,21706,21686,20369,22507,17187,15659,17144,13886,12921,14475,15501,12508,12748,11623,11105,11265,14298,20117,20845,21260,15128,15314,20468,23352,23551,22524,23567,16810,24105,25740,25580,20604,23407,23591,23773,22861,20460,25378,25716,25267,25821,25717,25520,27077
-2019F,IA,PARCP,8417,8115,8524,8792,8272,8694,9021,10422,10360,10566,9784,9497,10657,10268,9351,9139,9515,9125,8730,8909,6554,6059,6399,5814,4471,4777,4995,4070,4506,4853,3853,4475,4393,5044,5061,5003,6438,5978,4999,6099,6128,4064,5279,5341,4676,4843,4512,4579,6010,5772,4804,4909,3859,4674,4772,4052,4122,3970,6056,6703
-2019F,IA,PATCP,53197,51748,53479,54824,54783,55760,60350,63550,65479,67182,66528,68698,72038,76253,73022,72649,80987,82020,80749,81876,67523,63242,65785,62283,59383,59979,60714,58298,59901,59183,57579,57995,60337,68612,71143,73150,71274,70325,76817,80861,80464,76889,80464,74843,84132,86138,87842,84336,87034,86575,87766,87664,81428,87981,89975,87996,90276,86885,89278,91964
-2019F,IA,PATPP,19.3,18.8,19.4,20,20,20.3,21.9,22.8,23.4,24,23.5,24.1,25.2,26.6,25.5,25.2,27.9,28.2,27.7,28.1,23.2,21.7,22.8,21.7,20.8,21.2,21.7,21.1,21.6,21.4,20.7,20.7,21.4,24.2,25,25.5,24.7,24.3,26.5,27.7,27.5,26.2,27.4,25.4,28.5,29.1,29.5,28.1,28.9,28.5,28.8,28.6,26.5,28.4,28.9,28.2,28.8,27.6,28.3,29.1
-2019F,IA,PATXP,52899,51518,53284,54605,54603,55550,60115,63303,65222,66927,66152,68206,71233,75842,72538,71927,80142,81127,79606,81020,67292,63061,65627,62128,59265,59875,60610,58183,59779,59071,57456,57883,60246,68486,70956,72995,71134,70107,76542,80553,80241,76670,80328,74631,83893,85784,87372,83637,86702,86395,87449,87368,81201,87797,89848,87902,90112,86765,89148,91827
-2019F,IA,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,26,22,21,19,22,21,20,28,32,40,54,46,46,49,61,50,43,60,32,63,61,92,91,52,87,62,37
-2019F,IA,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,199,256,152,53,134,138,24,0,0,0,0,0,0,0
-2019F,IA,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,622,295,346,255,332,417
-2019F,IA,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,12,26,22,21,19,22,21,20,28,32,40,54,108,46,248,317,202,96,195,170,87,626,714,387,398,342,394,454
-2019F,IA,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,26,22,21,19,22,21,20,28,32,40,54,46,46,49,61,50,43,60,32,63,626,714,387,398,342,394,454
-2019F,IA,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,13,11,11,9,9,9,28,108,119
-2019F,IA,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,644,782,602,634,649,500,510,559,932,1103
-2019F,IA,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5669,4961,4549,6448,6564,5436,5468,5718,5827,6879
-2019F,IA,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4598,4646,3730,4544,4634,3914,4008,3796,5895,6551
-2019F,IA,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10926,10401,8892,11637,11856,9859,9995,10100,12762,14652
-2019F,IA,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10926,10401,8892,11637,11856,9859,9995,10100,12762,14652
-2019F,IA,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IA,RFACP,227,357,254,236,238,15,29,46,24,24,26,6,0,0,0,0,18,13,6,0,0,7,0,3,5,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,RFCCP,232,186,174,191,216,135,231,110,81,74,65,72,72,125,169,115,161,203,154,236,79,28,28,4,3,1,39,18,20,33,30,9,37,5,1,0,1,0,1,0,3,1,2,0,0,3,3,0,0,0,3,0,3,0,0,0,1,0,0,0
-2019F,IA,RFEIP,39,30,25,28,23,27,31,32,33,33,49,116,264,147,125,214,366,339,380,330,63,6,25,16,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,RFICP,573,507,442,493,568,354,588,294,271,243,261,220,172,300,404,279,386,541,381,650,273,57,281,185,123,179,469,92,238,149,94,87,69,158,178,92,93,71,88,100,140,43,60,150,282,191,44,44,170,66,20,32,8,6,6,0,0,17,11,16
-2019F,IA,RFTCP,1071,1081,895,948,1046,531,878,482,409,374,401,414,509,572,697,608,931,1096,921,1216,415,98,334,207,140,182,508,117,258,182,124,96,106,162,179,92,94,71,88,100,143,44,62,150,282,194,47,44,170,66,24,32,11,6,6,0,1,17,11,16
-2019F,IA,RFTXP,1033,1051,869,920,1022,503,848,450,376,341,352,298,245,425,573,394,565,756,541,886,352,92,309,191,131,180,508,117,258,182,124,96,106,162,179,92,94,71,88,100,143,44,62,150,282,194,47,44,170,66,24,32,11,6,6,0,1,17,11,16
-2019F,IA,SGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,SNICP,0,0,0,0,466,504,553,461,494,541,574,442,473,478,475,408,277,289,348,352,339,249,232,272,364,280,230,257,202,190,190,302,359,359,279,243,247,240,356,483,323,118,153,121,76,94,111,123,134,73,41,36,23,212,225,211,199,230,211,219
-2019F,IA,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,16,27,36,56,80,99
-2019F,IA,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,11,15
-2019F,IA,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,3,4,5
-2019F,IA,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,13,20,31,43,56
-2019F,IA,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,24,41,60,94,138,176
-2019F,IA,TPOPP,2756,2756,2750,2747,2746,2742,2762,2793,2803,2805,2832,2852,2860,2864,2868,2881,2903,2914,2918,2916,2914,2908,2888,2871,2859,2830,2792,2767,2768,2771,2781,2798,2818,2837,2851,2867,2880,2891,2903,2918,2929,2932,2934,2942,2954,2964,2983,2999,3017,3033,3051,3067,3077,3094,3111,3123,3133,3144,3150,3160
-2019F,IA,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,WXICP,44,43,39,38,36,38,45,44,50,53,53,78,80,103,101,90,108,90,93,91,89,47,36,40,39,40,39,42,43,43,43,89,94,101,103,103,100,89,87,77,68,87,77,75,74,75,81,68,59,38,53,47,47,39,35,29,30,22,27,23
-2019F,IA,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,4,3,4,4,3,4
-2019F,IA,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,494,488,919,982,1050,1647,2318,2757,4084,7421,9170,10705,14030,15565,16303,17870,20068,21368,21331,26301
-2019F,IA,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IA,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,494,488,919,982,1050,1647,2318,2757,4084,7421,9170,10709,14032,15568,16307,17873,20072,21373,21334,26305
-2019F,IA,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,4,3,4,4,3,4
-2019F,ID,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,ARICP,491,495,865,628,537,710,681,640,693,1214,1147,1038,1228,1112,936,880,867,890,955,833,797,537,540,662,474,632,544,499,402,831,1281,988,1465,1533,1798,2014,2034,2080,3049,3052,3081,1849,2646,753,1739,1721,2027,1538,2006,1230,1233,1155,1076,956,968,1413,900,847,821,805
-2019F,ID,ARTCP,491,495,865,628,537,710,681,640,693,1214,1147,1038,1228,1112,936,880,867,890,955,833,797,537,540,662,474,632,544,499,402,831,1281,988,1465,1533,1798,2014,2034,2080,3049,3052,3081,1849,2646,753,1739,1721,2027,1538,2006,1230,1233,1155,1076,956,968,1413,900,847,821,805
-2019F,ID,ARTXP,491,495,865,628,537,710,681,640,693,1214,1147,1038,1228,1112,936,880,867,890,955,833,797,537,540,662,474,632,544,499,402,831,1281,988,1465,1533,1798,2014,2034,2080,3049,3052,3081,1849,2646,753,1739,1721,2027,1538,2006,1230,1233,1155,1076,956,968,1413,900,847,821,805
-2019F,ID,AVACP,133,124,211,233,241,177,174,172,151,151,154,143,152,161,152,120,131,133,163,155,162,121,83,73,55,80,87,76,52,55,39,39,1,63,54,48,55,72,61,67,27,56,67,57,88,78,77,76,38,73,75,70,65,57,63,43,44,42,50,54
-2019F,ID,AVTCP,133,124,211,233,241,177,174,172,151,151,154,143,152,161,152,120,131,133,163,155,162,121,83,73,55,80,87,76,52,55,39,39,1,63,54,48,55,72,61,67,27,56,67,57,88,78,77,76,38,73,75,70,65,57,63,43,44,42,50,54
-2019F,ID,AVTXP,133,124,211,233,241,177,174,172,151,151,154,143,152,161,152,120,131,133,163,155,162,121,83,73,55,80,87,76,52,55,39,39,1,63,54,48,55,72,61,67,27,56,67,57,88,78,77,76,38,73,75,70,65,57,63,43,44,42,50,54
-2019F,ID,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,7,10,8,9,7,24,42,30,60,33,129,79,98,166
-2019F,ID,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,7,10,8,9,7,24,42,30,60,33,129,79,98,166
-2019F,ID,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,CLACP,4,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,CLCCP,194,179,186,177,166,151,152,161,129,119,80,151,107,133,126,132,149,160,170,126,89,68,60,69,68,36,28,18,59,64,48,56,42,35,34,34,25,27,51,48,17,17,16,12,6,12,11,40,9,8,9,7,5,4,2,0,0,0,0,0
-2019F,ID,CLEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,CLICP,222,279,299,273,376,321,278,191,197,151,171,248,294,273,344,459,562,386,379,471,401,452,502,434,406,439,429,470,448,452,489,604,484,486,494,426,369,330,421,376,603,534,469,490,600,536,391,459,423,414,415,382,248,360,350,192,107,114,122,101
-2019F,ID,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,CLOCP,222,279,299,273,376,321,278,191,197,151,171,248,294,273,344,459,562,386,379,471,401,452,502,434,406,439,429,470,448,452,489,604,484,486,494,426,369,330,421,376,603,534,469,490,600,536,391,459,423,414,415,382,248,360,350,192,107,114,122,101
-2019F,ID,CLRCP,279,257,268,244,229,200,201,214,165,151,102,145,81,78,59,57,61,62,51,31,24,15,12,13,16,10,9,5,17,17,12,12,9,8,6,5,3,3,6,7,2,2,2,2,1,1,1,4,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,CLTCP,699,715,755,695,772,673,631,566,492,421,353,544,483,484,529,647,772,608,600,628,514,535,575,516,490,486,466,494,524,533,549,673,535,528,534,465,397,361,479,430,623,553,487,503,607,548,403,504,432,422,424,389,253,364,352,192,107,114,122,101
-2019F,ID,CLTXP,699,715,755,695,772,673,631,566,492,421,353,544,483,484,529,647,772,608,600,628,514,535,575,516,490,486,466,494,524,533,549,673,535,528,534,465,397,361,479,430,623,553,487,503,607,548,403,504,432,422,424,389,253,364,352,192,107,114,122,101
-2019F,ID,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,DFACP,648,418,625,471,512,1079,1446,1177,962,1237,1263,1362,1551,1840,2248,2306,2172,2721,2841,3492,2750,2021,2300,2144,2552,2821,2782,2995,2988,3169,3443,3468,3531,4283,4300,4470,5008,5341,4989,5484,5799,5847,5828,5872,6187,6568,6915,7201,6023,5776,7065,7100,6756,7177,7456,9142,9513,9340,10464,10540
-2019F,ID,DFCCP,232,244,229,233,258,248,213,466,509,316,294,294,293,306,309,341,331,339,379,314,218,122,469,397,336,328,264,377,392,328,344,350,343,297,372,392,455,351,412,515,432,372,328,306,401,336,286,257,224,250,390,413,374,360,367,338,433,368,399,527
-2019F,ID,DFEIP,0,0,0,0,0,0,1,0,1,1,1,2,1,1,7,5,3,1,5,1,0,0,0,0,1,1,1,0,1,4,2,1,1,0,0,1,0,0,1,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,DFICP,2529,2700,2716,2735,3010,2768,2559,4322,4819,3357,3206,3212,3274,3463,3604,3935,4024,4143,4271,3055,2209,2198,1438,2108,1784,1568,1977,2135,2235,2520,2756,3017,2032,2011,2126,2265,2169,2351,2039,2450,2414,2535,2386,2140,2540,2972,2395,2307,2130,2241,2557,2782,2360,2319,2634,2264,2219,2021,2329,1747
-2019F,ID,DFRCP,663,697,654,663,736,708,607,1328,1452,900,837,839,834,871,881,972,944,966,1080,895,485,423,276,587,497,569,587,512,560,526,535,567,471,543,442,440,391,435,372,475,396,365,350,323,414,322,373,248,228,171,157,182,142,131,127,124,128,113,88,68
-2019F,ID,DFTCP,4072,4060,4225,4103,4516,4803,4825,7293,7743,5811,5600,5708,5953,6481,7049,7560,7474,8170,8575,7758,5662,4764,4483,5237,5170,5287,5611,6019,6176,6547,7079,7403,6378,7134,7239,7567,8023,8478,7813,8925,9047,9126,8893,8641,9542,10198,9970,10014,8605,8439,10169,10476,9632,9987,10584,11867,12293,11842,13280,12883
-2019F,ID,DFTXP,4072,4060,4224,4103,4516,4803,4824,7293,7742,5810,5600,5706,5952,6480,7042,7554,7471,8168,8570,7757,5662,4764,4483,5237,5169,5286,5610,6019,6175,6543,7078,7402,6377,7134,7239,7567,8022,8478,7812,8925,9041,9119,8893,8641,9542,10198,9969,10014,8605,8438,10169,10476,9632,9987,10584,11867,12293,11842,13280,12883
-2019F,ID,ELEXP,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,1,4,1,0,0,0,0,56,89,59,28,47,21,24,29,5,2,4,11,0
-2019F,ID,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,41,100,28,106,144,263,0,67,3,170,170,148,86,127,5,1,2,33,89,40,100,54,14,5,29,35,16,17,19,13,19,34,0
-2019F,ID,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10371,10639,13665,10558,13501,10238,10207,9340,10602,11048,13564,14001,13254,13200,13542,13442,11901,14772,14413,11975,12957,8920,10480,11305,10155,9514,9511,8454,7497,7568
-2019F,ID,ELNIP,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,56,0,41,100,28,106,144,263,0,67,3,170,170,148,64,126,0,0,2,33,89,40,44,-34,-44,-24,-17,14,-8,-12,14,11,15,23,0
-2019F,ID,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,20,17,37,45,56,102,175,159,175,110,18,16,10,0,0,0,0,0,0,0,0,0,322,309,518,636,763,932,1166,1302,1383,1379,1712,1850,1896,1775,1907
-2019F,ID,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,6,2,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,1,1,2,3,4,5,35,33,33,34,35
-2019F,ID,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,4,7,5,7,4,0,0,0,0,0,0,0,0,0,0,0,0,15,15,22,26,27,35,46,44,49,44,54,60,59,60,60
-2019F,ID,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,20,18,40,48,59,109,187,166,187,117,18,16,11,0,0,0,0,0,0,0,0,0,337,325,541,666,791,968,1214,1350,1437,1428,1801,1942,1989,1868,2001
-2019F,ID,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,ESCCP,1261,1472,1595,1683,1764,1290,1737,1772,1868,2070,2088,2261,2421,2640,2933,3530,3761,4142,3776,4337,3973,4868,4638,4323,4204,4592,4435,4611,4909,4965,5212,5166,5718,5253,6010,5584,6231,6285,6273,6745,7420,6885,7292,5466,5484,5615,5813,6015,6049,6005,5865,5969,5978,6250,6128,6264,6279,6421,6437,6441
-2019F,ID,ESICP,2849,3201,3228,3469,3825,4340,4456,5196,5947,5956,6052,6110,6654,6246,6643,5112,5303,4916,4683,4603,4798,6567,5979,6270,6195,6029,5923,6286,6807,7143,7165,6909,7551,7222,7647,7843,9042,9481,9193,9171,8408,7305,6352,8663,9011,8636,8891,9401,9313,8195,8796,8912,9574,9338,8970,8740,8612,8645,8889,8847
-2019F,ID,ESRCP,1463,1519,1597,1638,1708,1779,1831,1917,2049,2186,2354,2602,2845,3100,3346,3870,4169,4456,4502,5048,4936,5148,5499,5212,5710,5780,5433,5209,5449,5713,5626,5971,5739,6245,6222,6193,6508,6628,6610,6806,7006,6906,7056,7090,7314,7601,8057,8339,8540,8554,8137,8390,8159,8619,8135,8055,8172,8728,8428,8697
-2019F,ID,ESRPP,2181,2221,2308,2398,2512,2593,2658,2786,2948,3091,3279,3522,3727,3964,4141,4652,4864,5044,4944,5413,5207,5350,5648,5308,5763,5815,5486,5288,5528,5745,5557,5734,5355,5632,5433,5260,5409,5395,5278,5336,5392,5232,5264,5200,5255,5322,5486,5541,5566,5503,5180,5296,5113,5347,4984,4874,4853,5075,4810,4861
-2019F,ID,ESTCP,5573,6192,6420,6789,7297,7408,8025,8885,9863,10211,10494,10973,11919,11986,12922,12513,13232,13514,12961,13988,13707,16583,16117,15806,16109,16402,15791,16106,17165,17821,18003,18046,19008,18720,19879,19620,21781,22394,22077,22722,22834,21096,20700,21219,21809,21853,22762,23755,23901,22754,22798,23272,23712,24208,23233,23059,23063,23794,23754,23985
-2019F,ID,ESTPP,8306,9052,9278,9940,10731,10799,11647,12914,14192,14443,14615,14853,15617,15326,15992,15040,15440,15296,14232,14998,14459,17234,16552,16098,16258,16500,15947,16351,17415,17921,17783,17330,17737,16883,17359,16665,18105,18228,17629,17812,17572,15982,15443,15563,15669,15300,15498,15783,15578,14638,14513,14689,14858,15017,14234,13954,13695,13836,13557,13407
-2019F,ID,ESTXP,5573,6192,6420,6789,7297,7408,8025,8885,9863,10211,10494,10973,11919,11986,12922,12513,13232,13514,12961,13988,13707,16583,16117,15806,16109,16402,15791,16106,17165,17821,18003,18046,19008,18720,19879,19620,21781,22394,22077,22722,22834,21096,20700,21219,21809,21853,22762,23755,23901,22754,22798,23272,23712,24208,23233,23059,23063,23794,23754,23985
-2019F,ID,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,FSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,76,72,63,75,40,79,76,72,84,83,96
-2019F,ID,HLACP,7,9,12,12,12,4,4,7,8,12,9,13,21,17,19,21,21,28,33,28,23,43,75,73,85,59,65,35,41,41,48,40,36,34,50,27,21,10,2,10,20,4,2,13,43,33,41,27,46,18,11,11,6,5,4,4,4,1,1,1
-2019F,ID,HLCCP,100,102,103,103,128,111,121,194,224,230,227,252,293,259,251,227,238,223,231,118,101,93,104,127,82,104,92,80,104,127,102,119,95,104,98,119,143,138,56,234,466,381,240,210,296,347,324,340,376,237,252,259,375,282,327,322,399,333,399,392
-2019F,ID,HLICP,79,119,135,142,163,146,168,217,233,230,212,230,304,222,292,325,376,359,462,677,598,492,572,526,286,333,331,291,324,328,187,336,284,262,234,291,2106,31,209,82,307,86,37,105,77,282,316,428,218,99,97,219,160,155,127,133,125,154,192,142
-2019F,ID,HLRCP,269,274,276,277,345,299,325,521,601,618,610,677,788,697,674,611,639,599,621,318,271,250,279,341,220,281,247,215,279,343,273,320,255,281,263,321,385,371,152,629,1252,1025,646,543,996,850,894,875,962,1064,1020,1039,834,1263,921,797,838,1094,1002,1384
-2019F,ID,HLTCP,455,504,526,534,648,560,617,940,1065,1090,1057,1171,1406,1195,1235,1184,1274,1208,1348,1142,993,879,1030,1067,673,778,735,621,747,839,610,814,669,682,645,758,2656,550,419,954,2045,1495,926,871,1412,1512,1575,1670,1602,1417,1380,1528,1375,1705,1378,1257,1367,1582,1594,1919
-2019F,ID,HLTXP,455,504,526,534,648,560,617,940,1065,1090,1057,1171,1406,1195,1235,1184,1274,1208,1348,1142,993,879,1030,1067,673,778,735,621,747,839,610,814,669,682,645,758,2656,550,419,954,2045,1495,926,871,1412,1512,1575,1670,1602,1417,1380,1528,1375,1705,1378,1257,1367,1582,1594,1919
-2019F,ID,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,HYEGP,6165,5595,5981,5978,6292,6641,6827,6897,6746,6280,7076,7469,7844,8279,9686,10274,10372,6749,9871,9165,9507,9507,11591,12771,13195,10863,12153,8105,6745,9349,9115,8745,6654,9715,7916,10989,13283,14676,12936,13499,10967,7223,8769,8354,8462,8542,11242,9022,9363,10434,9154,13405,10940,8473,9002,8757,9033,10670,11024,10333
-2019F,ID,HYICP,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,HYTCP,6165,5595,5982,5979,6293,6641,6828,6897,6746,6280,7076,7469,7844,8279,9686,10274,10372,6749,9871,9165,9507,9507,11591,12771,13195,10863,12153,8105,6745,9349,9115,8745,6654,9715,7916,10989,13283,14676,12936,13499,10967,7223,8769,8354,8462,8542,11242,9022,9363,10434,9154,13405,10940,8473,9002,8757,9033,10670,11024,10333
-2019F,ID,HYTXP,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,JFACP,899,906,977,994,1031,870,929,1026,1203,1087,960,1007,985,943,985,950,978,980,1013,1135,1243,1223,1044,959,1089,1122,1117,1154,1178,1239,1143,957,973,1076,1201,1568,874,760,718,856,880,724,793,686,822,819,981,903,842,576,647,645,605,693,723,689,798,912,1060,952
-2019F,ID,JFTCP,899,906,977,994,1031,870,929,1026,1203,1087,960,1007,985,943,985,950,978,980,1013,1135,1243,1223,1044,959,1089,1122,1117,1154,1178,1239,1143,957,973,1076,1201,1568,874,760,718,856,880,724,793,686,822,819,981,903,842,576,647,645,605,693,723,689,798,912,1060,952
-2019F,ID,JFTXP,899,906,977,994,1031,870,929,1026,1203,1087,960,1007,985,943,985,950,978,980,1013,1135,1243,1223,1044,959,1089,1122,1117,1154,1178,1239,1143,957,973,1076,1201,1568,874,760,718,856,880,724,793,686,822,819,981,903,842,576,647,645,605,693,723,689,798,912,1060,952
-2019F,ID,KSCCP,102,401,265,268,378,500,442,78,254,194,116,118,180,207,132,81,110,99,95,17,0,0,8,5,1,3,2,2,1,0,1,0,0,0,2,3,4,1,3,1,2,5,1,1,4,4,2,1,0,1,0,0,0,0,0,0,0,0,1,0
-2019F,ID,KSICP,5,3,6,7,23,21,56,391,255,196,114,113,125,92,92,64,85,97,96,108,0,17,23,3,1,2,1,1,1,1,3,2,1,1,1,2,1,13,4,6,3,1,1,1,2,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0
-2019F,ID,KSRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,1,5,7,7,2,5,2,2,2,2,15,13,4,14,6,10,5,3,4,7,5,3,2,1,2,2,1,1,0,0,0,0,0,1,2
-2019F,ID,KSTCP,107,404,271,275,401,521,498,469,508,390,230,231,305,299,224,145,195,197,191,125,0,17,31,11,5,7,8,9,10,4,9,4,2,2,6,20,17,18,21,13,14,11,5,5,12,10,6,3,2,3,2,2,1,1,0,0,0,0,2,3
-2019F,ID,KSTXP,107,404,271,275,401,521,498,469,508,390,230,231,305,299,224,145,195,197,191,125,0,17,31,11,5,7,8,9,10,4,9,4,2,2,6,20,17,18,21,13,14,11,5,5,12,10,6,3,2,3,2,2,1,1,0,0,0,0,2,3
-2019F,ID,LUACP,127,124,116,116,121,128,133,111,122,117,119,121,129,142,136,119,132,138,148,155,138,132,121,126,135,126,123,139,134,137,141,126,129,131,137,135,131,138,145,146,144,132,130,121,122,122,118,122,114,102,145,137,127,135,141,170,166,153,148,146
-2019F,ID,LUICP,19,19,26,26,27,32,33,30,33,32,32,32,34,38,37,44,49,44,47,49,44,42,38,40,43,40,39,44,43,44,45,40,41,42,44,43,42,44,46,47,46,42,41,38,39,39,38,39,36,32,80,77,65,70,74,71,71,62,61,58
-2019F,ID,LUTCP,147,143,142,142,149,160,166,142,156,149,151,153,164,180,173,163,181,182,195,204,182,175,159,167,178,166,162,183,177,181,186,167,170,173,181,178,173,182,191,193,190,174,172,159,161,160,156,161,150,135,224,213,192,206,214,241,238,215,209,204
-2019F,ID,LUTXP,147,143,142,142,149,160,166,142,156,149,151,153,164,180,173,163,181,182,195,204,182,175,159,167,178,166,162,183,177,181,186,167,170,173,181,178,173,182,191,193,190,174,172,159,161,160,156,161,150,135,224,213,192,206,214,241,238,215,209,204
-2019F,ID,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,MGACP,5990,6200,6379,6404,6523,6743,7018,7415,7682,8224,8993,9130,9956,10029,9932,10396,11402,11493,12259,11604,10339,9988,9753,9969,9821,10026,10270,10154,10421,10738,10952,10826,11246,12394,12511,13083,13595,13998,14827,15511,15051,14505,14904,14092,14250,14116,14905,15483,14927,15295,15877,15412,15978,16232,16574,17215,17877,18269,17195,18145
-2019F,ID,MGCCP,45,45,50,49,52,52,55,56,59,62,65,68,68,74,82,90,93,93,96,96,100,131,131,118,264,134,136,141,376,356,148,345,312,38,38,38,167,39,33,40,32,32,26,15,16,16,52,21,71,27,22,24,42,51,55,351,315,320,327,329
-2019F,ID,MGICP,930,874,911,879,853,859,887,749,724,753,626,822,542,940,678,801,541,661,585,454,639,405,391,298,443,511,488,433,408,433,352,439,388,339,378,400,412,425,425,335,309,562,581,603,703,674,724,670,617,549,589,607,538,580,531,544,577,569,581,570
-2019F,ID,MGTCP,6965,7119,7341,7332,7427,7654,7960,8221,8466,9039,9684,10020,10565,11043,10691,11288,12035,12247,12941,12154,11078,10523,10275,10385,10528,10672,10893,10727,11205,11527,11453,11610,11947,12770,12927,13521,14174,14462,15284,15886,15392,15098,15511,14711,14969,14806,15681,16174,15616,15871,16488,16042,16558,16863,17160,18110,18769,19158,18103,19044
-2019F,ID,MGTXP,6965,7119,7341,7332,7427,7654,7960,8221,8466,9039,9684,10020,10565,11043,10691,11288,12035,12247,12941,12154,11078,10523,10275,10385,10528,10672,10893,10727,11205,11527,11453,11610,11947,12770,12927,13521,14174,14462,15284,15886,15392,15098,15511,14711,14969,14806,15681,16174,15616,15871,16488,16042,16558,16863,17160,18110,18769,19158,18103,19044
-2019F,ID,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,24,24,13,13,12
-2019F,ID,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,NGACP,489,524,233,221,631,1058,1544,1406,1923,2358,4203,5116,4722,4649,3973,4231,4624,4659,4418,4474,4205,3926,3101,2767,3627,2951,2611,3564,4091,4961,5081,4589,3280,3781,4752,6386,5969,5220,5529,4550,5980,6624,6041,4624,5859,5430,6587,7621,6929,7096,7748,5332,5862,6073,4050,5149,5695,5918,6599,7449
-2019F,ID,NGCCP,2794,3216,4371,3887,4080,5062,4609,4972,6374,6613,5851,8232,10712,9387,8040,12177,8742,8405,5503,6923,5756,5422,5729,5758,8493,8999,8543,7618,8252,9024,8535,9582,8932,10675,10088,10360,11506,11433,11676,12618,13414,13623,13592,12019,12995,13231,13573,14274,16333,15740,15033,16855,15838,18485,16963,16708,17598,19777,19113,20971
-2019F,ID,NGEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,18,104,676,38,491,46,16,5,9,5,24,5,4,0,0,0,0,0,0,0,0,183,1781,1769,1749,1712,10479,2720,9596,11892,11425,9611,12504,12530,12575,12375,8299,13599,24860,18370,27710,23311,20924,23683,31409
-2019F,ID,NGICP,16542,17573,18017,18915,21347,22880,24475,21726,24637,25485,28805,28293,30309,32062,31332,29936,21174,20026,26451,33597,31653,28885,24275,20135,19140,19461,16279,18956,20710,22903,23327,26662,27044,29146,29781,34024,34577,34999,34303,33846,32464,30435,28729,24689,23907,22852,23488,24119,25191,24256,24195,25392,29781,27996,28046,31680,34811,35916,34818,38672
-2019F,ID,NGRCP,2181,2656,3185,3612,4767,4889,5476,6179,6545,6980,7711,8455,10887,9947,9652,14089,12512,11771,7800,8752,7387,6711,6861,6510,7339,7759,7283,7007,7683,8783,8569,10223,9659,12557,12285,13003,14941,15239,16002,17912,19131,19118,20399,18940,20682,21603,22450,23419,27532,25531,23975,26666,23924,27370,24616,23482,24889,28799,27487,30803
-2019F,ID,NGTCP,22006,23969,25806,26635,30825,33889,36104,34283,39479,41436,46570,50096,56630,56045,53057,60451,47156,45537,44210,54237,49047,44960,39971,35179,38604,39194,34721,37148,40736,45671,45512,51056,48915,56160,56906,63774,67176,68672,69280,70675,72701,80279,71481,69868,75335,74540,75709,81937,88515,85198,83326,82544,89004,104784,92045,104729,106304,111334,111700,129304
-2019F,ID,NGTPP,32.8,35,37.3,39,45.3,49.4,52.4,49.8,56.8,58.6,64.9,67.8,74.2,71.7,65.7,72.7,55,51.5,48.5,58.2,51.7,46.7,41,35.8,39,39.4,35.1,37.7,41.3,45.9,45,49,45.6,50.7,49.7,54.2,55.8,55.9,55.3,55.4,55.9,60.8,53.3,51.2,54.1,52.2,51.5,54.4,57.7,54.8,53,52.1,55.8,65,56.4,63.4,63.1,64.7,63.8,72.3
-2019F,ID,NGTXP,22006,23969,25806,26635,30825,33889,36104,34283,39479,41436,46570,50096,56630,56045,52997,60433,47052,44861,44172,53746,49001,44944,39966,35170,38599,39170,34716,37145,40736,45671,45512,51056,48915,56160,56906,63774,66993,66891,67511,68926,70989,69800,68761,60272,63443,63115,66098,69434,75985,72623,70951,74245,75405,79924,73675,77019,82993,90410,88017,97895
-2019F,ID,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,OPICP,9,9,8,8,7,8,15,15,16,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,19,21,21,21,26,24,23,20,18,25,22,21,21,22,20,17,15,10,13,12,12,36,36,35,36,24,25,22
-2019F,ID,OPTCP,9,9,8,8,7,8,15,15,16,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,19,21,21,21,26,24,23,20,18,25,22,21,21,22,20,17,15,10,13,12,12,36,36,35,36,24,25,22
-2019F,ID,OPTXP,9,9,8,8,7,8,15,15,16,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,19,21,21,21,26,24,23,20,18,25,22,21,21,22,20,17,15,10,13,12,12,36,36,35,36,24,25,22
-2019F,ID,P1ICP,525,526,905,669,594,771,785,1076,997,1459,1311,1183,1388,1242,1065,988,1001,1032,1098,990,841,597,601,705,519,674,584,544,445,875,1329,1048,1526,1597,1864,2079,2103,2161,3122,3124,3147,1917,2710,813,1800,1782,2086,1595,2058,1272,1326,1243,1152,1063,1078,1519,1007,934,907,886
-2019F,ID,P1TCP,887,1176,1497,1286,1335,1576,1533,1437,1524,1922,1700,1565,1849,1752,1484,1307,1373,1402,1504,1318,1141,850,813,913,712,884,801,768,640,1071,1516,1216,1657,1792,2060,2280,2305,2376,3346,3345,3330,2116,2912,996,2021,1991,2286,1796,2211,1450,1548,1452,1345,1256,1282,1732,1218,1128,1106,1088
-2019F,ID,P1TXP,887,1176,1497,1286,1335,1576,1533,1437,1524,1922,1700,1565,1849,1752,1484,1307,1373,1402,1504,1318,1141,850,813,913,712,884,801,768,640,1071,1516,1216,1657,1792,2060,2280,2305,2376,3346,3345,3330,2116,2912,996,2021,1991,2286,1796,2211,1450,1548,1452,1345,1256,1282,1732,1218,1128,1106,1088
-2019F,ID,PAACP,7856,7785,8320,8230,8440,9055,9704,9909,10139,10836,11500,11775,12793,13131,13470,13912,14835,15493,16457,17468,14655,13529,13377,13345,13737,14234,14444,14554,14813,15379,15766,15456,15916,17981,18254,19331,19684,20318,20742,22075,21922,21267,21724,20841,21513,21735,23037,23812,21990,21840,23819,23374,23536,24301,24961,27263,28403,28717,28917,29838
-2019F,ID,PACCP,480,793,647,653,817,911,830,794,1045,802,701,731,833,846,773,739,772,754,801,546,905,375,729,667,696,595,496,609,880,838,614,815,764,469,516,557,773,530,508,790,931,789,596,532,717,703,664,619,671,514,667,699,794,693,749,1011,1147,1021,1126,1248
-2019F,ID,PAEIP,0,0,0,0,0,0,1,0,1,1,1,2,1,1,7,5,3,1,5,1,0,0,0,0,1,1,1,0,1,4,2,1,1,0,0,1,0,0,1,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PAICP,4217,4647,4891,4687,5051,4846,4614,6506,6970,6203,5630,5729,5751,6108,6226,6734,6713,6884,7322,5501,4413,3717,3200,3721,3083,3147,3397,3457,3461,4175,4652,4884,4238,4216,4616,5038,6793,4970,5796,5998,6179,5123,5795,3662,5120,5932,5666,5037,5023,4170,4588,4854,4211,4117,4370,4459,3932,3677,4014,3345
-2019F,ID,PARCP,932,971,930,941,1081,1007,931,1849,2053,1519,1447,1516,1622,1568,1555,1583,1583,1564,1701,1213,756,673,555,931,719,851,839,734,846,871,814,888,728,826,707,776,788,809,538,1110,1658,1395,999,870,1417,1177,1271,1125,1191,1237,1178,1222,977,1395,1048,921,967,1207,1091,1454
-2019F,ID,PATCP,13484,14195,14788,14511,15389,15819,16080,19059,20209,19360,19278,19753,21001,21655,22032,22973,23906,24696,26286,24729,20731,18294,17861,18664,18235,18829,19178,19354,20002,21267,21847,22043,21647,23492,24094,25702,28039,26627,27585,29972,30696,28581,29115,25905,28767,29547,30638,30594,28876,27761,30253,30149,29518,30505,31128,33655,34449,34623,35148,35886
-2019F,ID,PATPP,20.1,20.8,21.4,21.2,22.6,23.1,23.3,27.7,29.1,27.4,26.8,26.7,27.5,27.7,27.3,27.6,27.9,28,28.9,26.5,21.9,19,18.3,19,18.4,18.9,19.4,19.6,20.3,21.4,21.6,21.2,20.2,21.2,21,21.8,23.3,21.7,22,23.5,23.6,21.7,21.7,19,20.7,20.7,20.9,20.3,18.8,17.9,19.3,19,18.5,18.9,19.1,20.4,20.5,20.1,20.1,20.1
-2019F,ID,PATXP,13484,14195,14788,14511,15389,15818,16079,19059,20208,19359,19277,19751,21000,21653,22025,22967,23903,24695,26282,24727,20730,18293,17861,18664,18234,18827,19177,19354,20001,21263,21845,22042,21646,23492,24094,25701,28038,26627,27584,29972,30691,28574,29115,25905,28766,29547,30637,30593,28876,27761,30253,30149,29518,30505,31128,33654,34449,34623,35148,35885
-2019F,ID,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,11,6,5,4,4,4,1,1,1
-2019F,ID,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,252,259,375,282,327,322,399,333,399,392
-2019F,ID,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,97,219,160,155,127,133,125,154,192,142
-2019F,ID,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1020,1039,834,1263,921,797,838,1094,1002,1384
-2019F,ID,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1380,1528,1375,1705,1378,1257,1367,1582,1594,1919
-2019F,ID,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1380,1528,1375,1705,1378,1257,1367,1582,1594,1919
-2019F,ID,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ID,RFACP,52,3,0,0,0,55,0,0,11,7,2,0,0,0,0,0,0,0,0,898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,RFCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,29,17,19,12,25,3,10,7,26,19,1,14,29,7,4,4,1,3,0,0,0,0,0,0,0,0,0,0,0,2,3,2,0,0,0,0,0,0,0
-2019F,ID,RFEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,RFICP,153,427,223,262,432,301,215,142,197,404,275,282,244,241,587,684,771,690,906,323,126,26,198,84,52,61,17,54,50,19,28,43,8,8,14,3,2,1,1,6,2,23,80,0,0,221,145,37,0,8,19,3,1,0,0,0,4,0,5,0
-2019F,ID,RFTCP,205,430,223,262,432,356,215,142,208,411,277,282,244,241,587,684,771,690,906,1221,613,54,215,104,63,86,20,64,56,45,47,44,22,38,21,7,7,2,5,6,2,23,80,0,0,221,145,37,0,8,21,7,3,0,0,0,4,0,5,0
-2019F,ID,RFTXP,205,430,223,262,432,356,215,142,208,411,277,282,244,241,587,684,771,690,906,1221,613,54,215,104,63,86,20,64,56,45,47,44,22,38,21,7,7,2,5,6,2,23,80,0,0,221,145,37,0,8,21,7,3,0,0,0,4,0,5,0
-2019F,ID,SGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2
-2019F,ID,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,3,4,5,6
-2019F,ID,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,459,556,555
-2019F,ID,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4
-2019F,ID,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,4,7,12,27,50
-2019F,ID,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,4,4,6,40,476,589,615
-2019F,ID,TPOPP,671,684,692,683,680,686,689,688,695,707,718,739,763,782,808,832,857,883,911,933,948,962,974,982,991,994,990,985,986,994,1012,1041,1072,1109,1145,1177,1203,1229,1252,1276,1299,1320,1340,1363,1392,1428,1469,1505,1534,1554,1571,1584,1596,1612,1632,1652,1684,1720,1752,1789
-2019F,ID,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,WXICP,9,9,8,8,7,8,15,15,16,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,19,21,21,21,26,24,23,20,18,25,22,21,21,22,20,17,15,10,13,12,12,15,13,11,11,9,11,9
-2019F,ID,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,172,207,313,441,1307,1891,2460,2806,2270,2578,2545,2655,2551
-2019F,ID,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ID,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,172,207,313,441,1307,1891,2460,2806,2270,2578,2545,2655,2551
-2019F,ID,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,58,8,1,43,6,1,-13,1,3,-1,2,2,80,66,86,113,51,80,47,58,79,78,111,91,7,19,1,-9,-3,0,0,-4,-1,-4,-3,-2,-16,-13
-2019F,IL,ARICP,7244,6891,7562,7301,8868,9751,11004,11004,13125,12476,12651,11392,10933,12456,10735,10213,9893,11070,11584,10792,8094,6089,4860,5365,5727,7502,6185,6315,5604,8052,8339,7917,9293,6310,7798,7457,9127,8350,9859,11282,9047,9124,9881,10529,9535,9675,8335,7606,9605,6958,6293,5099,4060,4067,4282,5084,4673,4110,3517,4027
-2019F,IL,ARTCP,7244,6891,7562,7301,8868,9751,11004,11004,13125,12476,12651,11392,10933,12456,10735,10213,9893,11070,11584,10792,8094,6089,4860,5365,5727,7502,6185,6315,5604,8052,8339,7917,9293,6310,7798,7457,9127,8350,9859,11282,9047,9124,9881,10529,9535,9675,8335,7606,9605,6958,6293,5099,4060,4067,4282,5084,4673,4110,3517,4027
-2019F,IL,ARTXP,7244,6891,7562,7301,8868,9751,11004,11004,13125,12476,12651,11392,10933,12456,10735,10213,9893,11070,11584,10792,8094,6089,4860,5365,5727,7502,6185,6315,5604,8052,8339,7917,9293,6310,7798,7457,9127,8350,9859,11282,9047,9124,9881,10529,9535,9675,8335,7606,9605,6958,6293,5099,4060,4067,4282,5084,4673,4110,3517,4027
-2019F,IL,AVACP,3733,2488,819,546,389,383,294,1144,727,369,264,232,174,138,119,82,69,90,21,13,132,272,216,234,201,212,209,159,187,192,164,176,176,231,204,215,202,197,168,172,156,113,185,162,177,97,83,78,90,60,105,115,106,84,70,88,79,82,88,87
-2019F,IL,AVTCP,3733,2488,819,546,389,383,294,1144,727,369,264,232,174,138,119,82,69,90,21,13,132,272,216,234,201,212,209,159,187,192,164,176,176,231,204,215,202,197,168,172,156,113,185,162,177,97,83,78,90,60,105,115,106,84,70,88,79,82,88,87
-2019F,IL,AVTXP,3733,2488,819,546,389,383,294,1144,727,369,264,232,174,138,119,82,69,90,21,13,132,272,216,234,201,212,209,159,187,192,164,176,176,231,204,215,202,197,168,172,156,113,185,162,177,97,83,78,90,60,105,115,106,84,70,88,79,82,88,87
-2019F,IL,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,69,57,113,382,1098,1488,1277,1354,1094,3729,3497,3707,3957,4360,4124,4228,4345,4094
-2019F,IL,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,69,57,113,382,1098,1488,1277,1354,1094,3729,3497,3707,3957,4360,4124,4228,4345,4094
-2019F,IL,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IL,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IL,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IL,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IL,CLACP,238,62,55,51,53,51,46,33,28,21,17,12,9,6,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,CLCCP,2614,2268,2401,2080,1777,1697,1829,1638,1299,1318,967,1006,772,627,709,536,656,574,640,264,147,211,290,389,367,210,206,222,210,243,212,211,232,214,218,194,165,263,211,159,205,203,152,231,225,134,122,145,209,177,171,151,129,132,123,97,105,103,112,87
-2019F,IL,CLEIP,19218,19991,20052,21130,22739,25047,27599,28462,29453,29947,28993,28113,29679,32755,32475,32350,33521,33943,33492,34487,34611,32411,31519,34265,32054,31608,30844,28894,26681,25758,27396,27754,25264,31744,32599,33463,38091,41017,39660,40548,46046,45732,49266,50180,54078,53822,53939,56488,57368,53670,55382,53682,48509,51996,51563,43446,35431,34224,35493,29152
-2019F,IL,CLICP,13842,13635,13837,13723,14378,15669,15650,13683,12685,12323,10928,9077,8755,7729,7736,7257,6457,6032,5645,5387,5350,4854,4703,5153,5887,5829,6064,6467,7056,6393,6243,6666,6052,6130,6222,5937,6154,6325,6170,5990,5590,4710,4180,4305,4195,4152,4266,4449,4315,3396,4385,4942,4753,4684,4623,3732,3479,3562,3502,3481
-2019F,IL,CLKCP,2948,2806,2976,2840,3282,3598,3683,3382,3111,3756,3730,3448,3225,3092,3218,3033,2722,2397,2301,2105,1810,1731,1764,2028,2499,2358,2234,2514,2611,2548,2356,2240,2316,2160,2035,2284,2414,2445,2324,2359,2098,1232,883,861,670,650,658,776,699,501,994,1505,1588,1566,1500,1042,969,972,942,993
-2019F,IL,CLOCP,10894,10828,10861,10883,11095,12071,11967,10301,9574,8567,7198,5629,5530,4638,4518,4224,3735,3635,3345,3282,3540,3123,2939,3125,3388,3471,3830,3953,4445,3844,3888,4426,3736,3970,4187,3653,3740,3880,3846,3631,3492,3479,3297,3444,3525,3502,3608,3673,3615,2895,3392,3437,3165,3118,3123,2690,2510,2590,2560,2488
-2019F,IL,CLRCP,3761,3263,3455,2873,2454,2250,2425,2172,1653,1677,1231,967,583,368,334,230,268,223,191,66,39,46,59,74,86,59,62,66,59,64,53,46,51,47,38,29,22,32,26,22,25,25,21,35,25,12,12,16,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,CLTCP,39673,39219,39800,39856,41400,44714,47550,45987,45118,45286,42136,39175,39798,41485,41258,40374,40901,40772,39969,40204,40147,37523,36572,39881,38394,37706,37176,35648,34006,32457,33904,34677,31599,38135,39077,39623,44431,47638,46067,46719,51865,50671,53619,54751,58523,58120,58338,61099,61891,57243,59938,58775,53390,56812,56309,47274,39015,37889,39107,32721
-2019F,IL,CLTXP,20454,19227,19749,18727,18661,19668,19950,17526,15665,15339,13143,11062,10119,8730,8783,8024,7381,6829,6477,5717,5536,5111,5053,5616,6340,6098,6332,6754,7325,6700,6508,6923,6335,6391,6478,6160,6341,6620,6407,6171,5820,4938,4353,4571,4445,4298,4400,4611,4523,3573,4556,5093,4882,4816,4746,3829,3584,3664,3614,3568
-2019F,IL,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,DFACP,8721,8578,8806,10928,11592,11509,11073,11841,14009,14648,15234,17351,20788,22397,22121,20488,21875,22167,22443,26321,22560,20388,18560,20954,20545,19061,20831,20704,21260,23567,30695,24835,24050,27218,21408,24293,26201,25917,28110,33544,32770,32215,30265,39025,37340,38530,39486,39479,37035,36940,36340,39197,36342,37957,40156,45391,42807,44383,45320,42415
-2019F,IL,DFCCP,4834,4863,4712,4343,4271,4148,3859,3795,3957,3822,3778,3850,4027,3891,3786,3905,4644,4514,4784,2637,2100,4060,3130,4722,5799,4127,2089,1814,2060,1642,1799,1685,1787,2000,2017,1870,1818,2205,1862,1466,1602,1815,1640,1431,837,833,923,744,1225,850,891,936,1009,1283,1317,1194,1152,1071,1016,1188
-2019F,IL,DFEIP,161,148,136,118,134,126,219,172,305,603,2667,4394,4535,2884,4046,3335,3380,3500,3467,2372,691,551,527,547,413,436,459,425,552,455,491,495,365,469,624,539,548,551,595,459,363,289,234,256,210,338,200,260,263,227,197,160,136,135,168,107,134,103,106,97
-2019F,IL,DFICP,13545,13418,12897,12144,12131,12074,11784,11270,12102,12776,10836,11698,11818,11472,10725,11138,12641,12522,13412,8978,7842,6893,7684,6638,8153,6617,9747,10568,8257,8047,8848,7659,8426,7114,6978,7846,7691,8112,9535,7385,7798,7557,7394,7178,8056,8182,8362,8653,9141,5467,6058,6203,6158,6883,7739,7740,7380,7221,7785,7412
-2019F,IL,DFRCP,15330,15420,14944,13772,13544,13154,12239,12035,12549,12119,11980,12208,12769,12340,12006,12384,14727,14315,15171,8361,3512,2618,2667,1927,2367,2344,2311,2099,2234,1842,1394,1225,991,744,735,761,746,708,418,508,412,320,264,253,304,212,180,155,203,117,117,110,65,77,85,71,74,74,85,65
-2019F,IL,DFTCP,42592,42426,41496,41304,41673,41011,39175,39114,42923,43968,44495,49502,53936,52984,52683,51249,57267,57019,59277,48668,36704,34511,32568,34788,37278,32585,35437,35611,34363,35552,43227,35899,35620,37544,31762,35309,37003,37494,40520,43362,42945,42195,39798,48144,46746,48094,49150,49291,47867,43601,43602,46607,43712,46336,49464,54504,51546,52852,54311,51177
-2019F,IL,DFTXP,42431,42278,41359,41186,41539,40885,38956,38942,42618,43365,41828,45108,49401,50100,48637,47915,53888,53518,55810,46296,36014,33959,32041,34241,36865,32149,34978,35185,33811,35097,42736,35404,35255,37075,31138,34770,36455,36943,39926,42903,42582,41906,39564,47888,46536,47757,48950,49031,47604,43373,43406,46446,43575,46200,49296,54397,51413,52749,54205,51080
-2019F,IL,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,160,18,19,0,6,10,2,0,0,0,0,0,0,0,0,1,0
-2019F,IL,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,66,53,9,1,0,6,0,0,0,0,2,24,0
-2019F,IL,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-4394,624,-1423,-10745,-5039,-6567,-6210,7149,8638,-14227,-27482,-28697,-33268,-37194,-35603,-32506,-33927,-39107,-40447,-43961,-42664,-43066,-40160,-47681,-47963,-42251,-33658,-33889,-33121,-34739
-2019F,IL,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-125,-160,-16,-18,0,60,42,8,1,0,6,0,0,0,0,2,24,0
-2019F,IL,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,578,544,1231,1998,2739,3204,3359,3635,3221,3559,4100,4058,5069,4257,3089,4493,5330,5680,6835,7726,7124,9209,9508,8537,8422,9649,11835,10992,11426,10914,10847,11128,11187,10897,11148,11156,10937,10790
-2019F,IL,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,3,5,10,15,16,16,15,17,14,15,5,7,5,5,9,11,7,13,16,22,28,31,17,29,19,27,85,24,19,25,18,17,264,260,259,261,268
-2019F,IL,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,13,11,23,32,40,46,44,45,39,47,47,60,70,58,41,60,64,53,59,136,133,188,210,185,189,142,150,143,211,205,198,207,163,191,206,210,210,209
-2019F,IL,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,597,558,1260,2040,2794,3266,3419,3696,3278,3620,4162,4123,5147,4321,3136,4562,5405,5740,6907,7879,7280,9425,9749,8739,8641,9810,12012,11220,11660,11138,11069,11353,11367,11352,11615,11626,11407,11267
-2019F,IL,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10238,10238,10266,7679,11081,11081,11112,11081,11081,11081
-2019F,IL,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10238,10238,10266,7679,11081,11081,11112,11081,11081,11081
-2019F,IL,ESACP,308,302,304,296,291,302,304,298,295,293,296,290,294,286,245,262,266,286,302,302,282,294,296,297,350,379,398,408,421,422,408,422,411,410,404,393,427,426,422,437,459,457,475,484,445,528,519,545,566,527,560,516,553,573,582,524,519,520,551,570
-2019F,IL,ESCCP,10002,11253,12409,13159,14047,15059,17062,18392,19769,21059,22406,23474,24679,26708,26563,28097,29302,30664,32254,32253,31579,32850,33059,33712,34080,32578,33609,35811,37698,38019,38999,40771,38844,41901,43615,45201,45586,46426,48191,50642,53152,52976,53654,49561,47358,49977,50631,52043,51770,50329,51437,50468,50808,50473,50619,50320,50910,49988,50763,49279
-2019F,IL,ESICP,13722,13448,14540,15689,17126,18708,19913,20376,22377,24444,25647,26854,29820,32568,32272,30330,32183,33796,35802,36003,35158,33700,30434,32349,34032,36178,36786,36575,37942,38481,39299,39712,40898,40249,41765,42251,42423,42837,43377,41972,40939,40780,39288,43042,48008,45888,44916,45430,45503,41507,44180,44844,45277,44387,44330,43131,43632,42971,44115,43250
-2019F,IL,ESRCP,9969,10809,11475,12267,13315,14173,15775,16663,18765,20546,22533,23977,25462,27179,26880,26366,26308,28157,29096,29288,29930,28380,28600,30740,30431,29976,30965,31995,33980,32378,32871,35964,32367,35226,35706,38386,37554,37264,39707,39631,40146,41820,45030,43161,43443,48593,46381,48036,46780,44324,48583,47057,46902,46372,46009,44646,45990,43717,47226,45220
-2019F,IL,ESRPP,988,1067,1116,1179,1259,1325,1456,1522,1707,1861,2025,2140,2263,2416,2387,2335,2319,2473,2549,2570,2617,2480,2504,2694,2667,2629,2719,2809,2983,2838,2870,3109,2768,2983,2997,3197,3103,3058,3236,3207,3229,3349,3595,3438,3451,3854,3668,3784,3670,3464,3784,3657,3641,3596,3571,3472,3587,3421,3711,3570
-2019F,IL,ESTCP,34001,35811,38727,41411,44779,48243,53053,55729,61206,66342,70881,74596,80254,86741,85959,85056,88059,92903,97454,97846,96949,95224,92389,97098,98893,99111,101758,104789,110041,109301,111577,116869,112521,117786,121490,126231,125990,126953,131697,132682,134697,136034,138447,136248,139254,144986,142448,146055,144620,136688,144761,142886,143540,141805,141540,138620,141050,137196,142655,138319
-2019F,IL,ESTPP,3371,3535,3767,3981,4232,4512,4896,5091,5567,6010,6370,6659,7132,7709,7633,7533,7763,8159,8539,8585,8478,8321,8088,8511,8666,8694,8936,9199,9661,9580,9742,10102,9622,9974,10198,10512,10411,10418,10732,10736,10833,10893,11053,10851,11061,11498,11266,11504,11345,10681,11274,11104,11142,10996,10985,10780,11001,10735,11211,10920
-2019F,IL,ESTXP,34001,35811,38727,41411,44779,48243,53053,55729,61206,66342,70881,74596,80254,86741,85959,85056,88059,92903,97454,97846,96949,95224,92389,97098,98893,99111,101758,104789,110041,109301,111577,116869,112521,117786,121490,126231,125990,126953,131697,132682,134697,136034,138447,136248,139254,144986,142448,146055,144620,136688,144761,142886,143540,141805,141540,138620,141050,137196,142655,138319
-2019F,IL,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,69,64,55,7,11,9,7,7,2,3
-2019F,IL,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,69,64,55,7,11,9,7,7,2,3
-2019F,IL,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,FSICP,0,0,0,494,490,584,663,597,601,596,862,1075,1137,1010,1148,1260,1308,1249,1409,887,957,420,444,531,569,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,HLACP,316,334,362,363,316,318,405,567,597,595,526,589,542,491,513,486,564,616,723,261,178,365,481,572,699,423,377,310,336,267,328,312,319,281,531,287,247,175,269,337,217,112,224,228,191,306,453,340,740,492,55,49,42,46,37,37,41,54,145,155
-2019F,IL,HLCCP,898,856,936,1003,867,1036,1231,1392,1400,1550,1490,1510,1673,1616,1545,1582,1700,1614,1583,891,701,700,690,821,571,608,524,567,527,606,555,657,633,671,652,669,902,916,778,1127,940,707,939,973,904,805,810,699,935,916,795,725,545,1082,747,636,639,1029,909,1116
-2019F,IL,HLICP,8534,8831,9679,10359,10926,11399,12323,13464,15156,17653,17818,18151,21048,22767,24406,23889,27590,27839,27976,45463,33867,29017,21694,20878,21483,22607,28590,37717,41418,7998,8368,9761,7857,16800,19741,20981,18725,18373,10222,14587,13521,13426,13574,9720,12168,14892,14790,14735,12301,13037,15589,15409,15641,13056,16979,15894,15642,15617,15907,17102
-2019F,IL,HLRCP,5210,4968,5429,5821,5029,6010,7145,8075,8121,8994,8646,8763,9709,9379,8965,9177,9863,9363,9186,5169,4066,4064,4006,4766,3315,3530,3038,3290,3059,3518,3220,3810,3674,3897,3784,3884,5235,5314,4514,6537,5453,4100,5448,4556,4291,4355,4698,5330,7198,6529,6610,5821,4798,6615,5444,5010,4764,4718,5802,7239
-2019F,IL,HLTCP,14958,14989,16405,17545,17138,18763,21105,23497,25274,28792,28481,29013,32971,34254,35429,35135,39716,39432,39467,51784,38811,34147,26872,27037,26069,27168,32529,41884,45341,12389,12471,14539,12482,21649,24708,25822,25109,24777,15783,22588,20131,18346,20185,15477,17553,20359,20751,21104,21174,20973,23049,22004,21026,20799,23207,21577,21087,21417,22763,25612
-2019F,IL,HLTXP,14958,14989,16405,17545,17138,18763,21105,23497,25274,28792,28481,29013,32971,34254,35429,35135,39716,39432,39467,51784,38811,34147,26872,27037,26069,27168,32529,41884,45341,12389,12471,14539,12482,21649,24708,25822,25109,24777,15783,22588,20131,18346,20185,15477,17553,20359,20751,21104,21174,20973,23049,22004,21026,20799,23207,21577,21087,21417,22763,25612
-2019F,IL,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,6,5,5,5,4,3,2,3,0,0,3,0,0,0,0,0,0,0,2,2,3,2,1,2,1,1
-2019F,IL,HYEGP,166,177,170,155,156,158,155,160,147,153,146,118,133,113,106,104,112,109,111,112,121,117,107,117,124,119,124,90,48,100,144,134,133,127,115,119,100,92,134,139,142,141,129,138,150,129,173,154,139,136,119,140,109,119,129,123,131,124,145,123
-2019F,IL,HYICP,19,20,19,22,22,17,19,19,20,18,20,19,17,16,18,19,18,21,17,18,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,HYTCP,185,197,189,177,178,175,173,180,166,171,166,136,150,129,124,122,130,129,129,130,138,134,124,134,141,136,141,107,65,100,144,134,139,130,121,124,106,97,138,142,144,144,129,138,154,129,173,154,139,136,119,140,111,120,132,124,133,125,147,124
-2019F,IL,HYTXP,19,20,19,22,22,17,19,19,20,18,20,19,17,16,18,19,18,21,17,18,17,17,17,17,17,17,17,17,17,0,0,0,7,4,6,5,5,5,4,3,2,3,0,0,3,0,0,0,0,0,0,0,2,2,3,2,1,2,1,1
-2019F,IL,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IL,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IL,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IL,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IL,JFACP,4356,5638,7586,9315,10015,12176,12534,16882,20144,21371,22644,24037,26460,28103,24366,24271,24985,26571,26464,23770,19508,16899,16596,15944,2687,2748,2054,1997,3956,4497,3952,6437,7399,9170,9619,10360,12076,12502,13164,18245,22699,18664,13583,13365,21547,39525,28578,29573,27993,24970,30838,30366,28834,29311,30811,32942,33359,33457,32779,33341
-2019F,IL,JFTCP,4356,5638,7586,9315,10015,12176,12534,16882,20144,21371,22644,24037,27844,29099,25177,24769,25516,27132,27136,24334,19664,16928,16642,15944,2687,2748,2054,1997,3956,4497,3952,6437,7399,9170,9619,10360,12076,12502,13164,18245,22699,18664,13583,13365,21547,39525,28578,29573,27993,24970,30838,30366,28834,29311,30811,32942,33359,33457,32779,33341
-2019F,IL,JFTXP,4356,5638,7586,9315,10015,12176,12534,16882,20144,21371,22644,24037,26460,28103,24366,24271,24985,26571,26464,23770,19508,16899,16596,15944,2687,2748,2054,1997,3956,4497,3952,6437,7399,9170,9619,10360,12076,12502,13164,18245,22699,18664,13583,13365,21547,39525,28578,29573,27993,24970,30838,30366,28834,29311,30811,32942,33359,33457,32779,33341
-2019F,IL,KSCCP,78,88,90,97,91,96,70,32,46,49,51,46,66,69,54,47,22,18,28,16,16,14,7,19,12,96,98,42,59,63,26,40,34,32,50,80,67,108,39,84,68,65,37,37,45,53,33,36,7,10,10,5,2,3,6,4,6,3,4,5
-2019F,IL,KSICP,3239,2721,2552,3047,2774,2723,2260,2453,2145,2148,2196,1973,2536,2607,1801,1351,863,943,1073,485,429,503,97,437,241,91,105,112,75,96,47,47,47,64,78,129,235,150,190,57,71,72,49,56,70,73,50,83,17,17,21,7,7,30,50,6,6,2,3,5
-2019F,IL,KSRCP,2052,2302,2369,2548,2390,2518,1844,828,1197,1275,1336,1214,1716,1809,1419,1225,571,464,740,419,161,149,335,183,265,568,202,150,217,208,101,117,61,81,72,84,96,109,120,520,121,120,142,106,100,117,68,52,24,32,34,24,7,10,17,11,18,11,8,14
-2019F,IL,KSTCP,5369,5111,5012,5692,5255,5337,4175,3313,3388,3472,3583,3234,4317,4485,3274,2622,1456,1424,1841,920,606,666,439,638,518,755,405,303,350,367,174,203,142,176,201,293,398,367,349,661,261,257,228,198,215,243,151,170,48,59,66,36,16,42,72,21,29,16,15,24
-2019F,IL,KSTXP,5369,5111,5012,5692,5255,5337,4175,3313,3388,3472,3583,3234,4317,4485,3274,2622,1456,1424,1841,920,606,666,439,638,518,755,405,303,350,367,174,203,142,176,201,293,398,367,349,661,261,257,228,198,215,243,151,170,48,59,66,36,16,42,72,21,29,16,15,24
-2019F,IL,LUACP,1333,1297,1272,1272,1336,1295,1346,1232,1354,1216,1239,1253,1342,1661,1591,1452,1612,1513,1625,1700,1514,1452,1324,1386,1478,1378,1347,1523,1469,1506,1550,1387,1414,1440,1505,1479,1435,1516,1587,1604,1580,1448,1430,1322,1340,1333,1298,1341,1245,1119,880,859,764,811,845,971,893,830,785,713
-2019F,IL,LUICP,1340,1304,1372,1371,1440,1321,1372,1533,1684,1979,2015,1968,2108,2152,2061,1668,1853,1957,2102,2200,1959,1878,1713,1793,1912,1782,1743,1970,1900,1949,2006,1794,1829,1863,1947,1913,1857,1962,2054,2075,2044,1873,1850,1711,1733,1724,1680,1735,1610,1448,816,768,716,735,747,780,751,693,667,607
-2019F,IL,LUTCP,2672,2601,2644,2643,2775,2616,2718,2766,3038,3195,3255,3221,3450,3813,3652,3120,3466,3470,3727,3900,3473,3330,3037,3180,3391,3160,3090,3493,3369,3455,3556,3181,3243,3302,3452,3392,3292,3478,3641,3679,3624,3320,3281,3033,3073,3057,2978,3076,2855,2567,1696,1626,1479,1546,1592,1751,1643,1523,1452,1320
-2019F,IL,LUTXP,2672,2601,2644,2643,2775,2616,2718,2766,3038,3195,3255,3221,3450,3813,3652,3120,3466,3470,3727,3900,3473,3330,3037,3180,3391,3160,3090,3493,3369,3455,3556,3181,3243,3302,3452,3392,3292,3478,3641,3679,3624,3320,3281,3033,3073,3057,2978,3076,2855,2567,1696,1626,1479,1546,1592,1751,1643,1523,1452,1320
-2019F,IL,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2834,-2317,-1589,-631,-2158,-3094,-1392,-664,636,641,-314,941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,MGACP,71193,72995,75168,77381,78727,81788,87157,89234,94117,97300,100534,101340,109280,113119,110050,113669,117420,119971,126582,115445,104550,103216,101805,104312,102692,108826,106493,108384,114006,113661,104123,102638,104710,107865,109579,109570,109906,111630,112132,117570,118731,118783,120034,119937,122842,121758,122220,122242,118010,115629,114383,109258,107348,108035,108705,108322,110994,110276,109212,105720
-2019F,IL,MGCCP,358,393,439,454,439,469,465,483,509,526,533,539,543,607,599,678,712,742,788,823,1008,1072,1077,590,451,549,575,553,546,469,560,399,374,132,161,138,184,224,228,152,223,253,379,365,397,249,427,240,268,898,241,186,249,172,163,2620,2591,2564,2605,2622
-2019F,IL,MGICP,6476,6000,6772,6338,6062,6512,4907,4669,6080,5542,6017,6416,4038,5302,5179,4290,4583,4033,3163,2846,3505,3008,2287,2054,1935,1738,1572,1570,1497,1418,1264,1342,1212,1590,1515,1500,1464,1489,1347,1087,1032,2089,2248,2445,2714,2639,2745,1794,1499,1503,2109,2057,1956,2013,1587,1903,2051,2075,2096,2050
-2019F,IL,MGTCP,78026,79388,82379,84174,85228,88769,92528,94387,100706,103368,107084,108295,113860,119028,115828,118637,122716,124746,130532,119113,109062,107296,105170,106955,105079,111114,108641,110508,116048,115548,105948,104380,106297,109587,111255,111207,111554,113343,113707,118810,119985,121126,122661,122747,125954,124646,125393,124277,119777,118031,116733,111501,109553,110220,110454,112845,115636,114915,113913,110393
-2019F,IL,MGTXP,78026,79388,82379,84174,85228,88769,92528,94387,100706,103368,107084,108295,113860,119028,115828,118637,122716,124746,130532,119113,109062,107296,105170,106955,105079,111114,108641,110508,116048,115548,105948,104380,106297,109587,111255,111207,111554,113343,113707,118810,119985,121126,122661,122747,125954,124646,125393,124277,119777,118031,116733,111501,109553,110220,110454,112845,115636,114915,113913,110393
-2019F,IL,MSICP,519,579,635,336,336,328,357,334,372,347,310,311,319,395,506,682,802,908,790,731,693,910,798,715,614,618,923,926,1124,1034,930,1342,880,833,931,854,429,471,574,539,575,600,644,605,545,542,473,464,494,528,552,573,562,545,581,601,609,598,596,542
-2019F,IL,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,NGACP,10068,10022,9459,11721,12193,13372,15425,19402,17526,21693,27973,23252,23235,21371,19067,14226,16558,19171,13267,18503,14564,12153,14048,9546,11173,11188,8308,6750,12798,13531,12116,11077,11384,11688,13900,13311,14524,14733,13191,11583,13521,11154,13493,10825,11584,11173,11140,11651,13508,24874,20158,22092,25000,27223,31059,26957,24039,22621,26342,28535
-2019F,IL,NGCCP,47252,57910,68404,74887,102291,128996,161122,175281,174565,189006,193434,210424,224488,218530,216114,215718,246659,243686,251895,237199,228178,223427,218751,204834,232170,213528,204979,191047,215257,196171,200267,193844,196964,203157,197558,203802,218054,202850,174687,188520,201768,189160,204570,211710,204039,201882,196361,203368,222382,222768,198036,215605,188099,230820,246273,215218,212482,215915,241974,247280
-2019F,IL,NGEIP,42348,33778,41825,46953,50515,34618,43165,45847,73131,81382,132382,125834,72795,39595,42792,34245,30548,14430,22566,31547,19165,13166,10387,11948,5963,5881,6067,3172,5706,6967,9211,12987,9415,16142,34670,39238,25813,44712,56555,53775,47189,46801,81867,32168,30624,58418,42729,62567,34586,33214,45900,47510,89300,52266,42538,83976,145716,142141,139048,170447
-2019F,IL,NGICP,186211,203609,206610,217889,235921,237747,266886,325546,336857,359246,380937,407123,398926,425047,409675,352324,373535,369839,366681,359913,349324,345813,292421,281406,303900,284875,267845,264593,269288,278878,275761,302833,300473,305130,305201,320961,322114,317663,303033,305225,301115,277356,290549,270332,263549,260596,245537,254956,264098,235145,286015,283516,277077,293914,294594,266521,255358,259583,263010,268101
-2019F,IL,NGRCP,232118,251735,276634,289550,314930,341984,354274,382277,392325,434065,439152,462644,487845,445723,461746,478602,507935,519973,520525,495570,478489,467398,458572,430606,479572,446567,437081,407875,462339,499984,442163,466970,475360,495311,473788,500796,538749,497230,409812,445217,467052,427146,459400,473451,443410,437572,398231,433048,465927,440065,416570,418143,360891,452602,479465,400876,386590,377511,438218,438021
-2019F,IL,NGTCP,517997,557054,602932,641000,715850,756717,840872,948353,994404,1085392,1173878,1229277,1207289,1150266,1149394,1095115,1175235,1167099,1174934,1142732,1089720,1061957,994179,938340,1032778,962039,924280,873437,965388,995531,939519,987711,993597,1031429,1025117,1078108,1119254,1077188,957277,1004320,1030645,951616,1049880,998487,953207,969642,893998,965591,1000501,956066,966679,986866,940367,1056825,1093929,993548,1024185,1017771,1108592,1152384
-2019F,IL,NGTPP,51.4,55,58.7,61.6,67.7,70.8,77.6,86.6,90.4,98.3,105.5,109.7,107.3,102.2,102.1,97,103.6,102.5,103,100.3,95.3,92.8,87,82.2,90.5,84.4,81.2,76.7,84.8,87.3,82,85.4,85,87.3,86.1,89.8,92.5,88.4,78,81.3,82.9,76.2,83.8,79.5,75.7,76.9,70.7,76.1,78.5,74.7,75.3,76.7,73,82,84.9,77.3,79.9,79.6,87.1,91
-2019F,IL,NGTXP,475649,523276,561107,594047,665335,722099,797707,902506,921273,1004010,1041496,1103443,1134494,1110671,1106602,1060870,1144687,1152669,1152368,1111185,1070555,1048791,983792,926392,1026815,956158,918213,870265,959682,988564,930307,974724,984182,1015286,990447,1038870,1093441,1032476,900723,950545,983456,904815,968013,966319,922583,911224,851269,903024,965915,922852,920779,939356,851067,1004559,1051391,909572,878469,875630,969544,981937
-2019F,IL,NUEGP,254,528,1193,934,983,965,1407,807,919,825,2514,4374,13067,20051,19592,22315,26455,28547,32926,27463,27742,29483,27625,28021,34976,39106,42614,50194,69166,74820,71887,71866,73742,78373,72654,78481,69774,51069,55596,81744,89438,92358,90860,94733,92047,93263,94154,95729,95152,95474,96190,95823,96401,97131,97858,97282,98607,97191,98102,98735
-2019F,IL,NUETP,254,528,1193,934,983,965,1407,807,919,825,2514,4374,13067,20051,19592,22315,26455,28547,32926,27463,27742,29483,27625,28021,34976,39106,42614,50194,69166,74820,71887,71866,73742,78373,72654,78481,69774,51069,55596,81744,89438,92358,90860,94733,92047,93263,94154,95729,95152,95474,96190,95823,96401,97131,97858,97282,98607,97191,98102,98735
-2019F,IL,OPICP,9000,8818,9233,9254,13356,14277,14631,13663,14376,15174,17327,16130,19282,20564,20447,20110,20245,20365,21791,20986,19314,10951,10454,12650,12164,11099,10966,12887,15149,15222,15837,13615,16359,14708,16065,14434,16715,16964,15569,16466,14088,13677,14756,15524,14879,15938,16485,16306,14765,13997,14778,14997,15369,16534,15586,15596,16078,16703,16551,17242
-2019F,IL,OPTCP,9000,8818,9233,9254,13356,14277,14631,13663,14376,15174,17327,16130,19282,20564,20447,20110,20245,20365,21791,20986,19314,10951,10454,12650,12164,11099,10966,12887,15149,15222,15837,13615,16359,14708,16065,14434,16715,16964,15569,16466,14088,13677,14756,15524,14879,15938,16485,16306,14765,13997,14778,14997,15369,16534,15586,15596,16078,16703,16551,17242
-2019F,IL,OPTXP,9000,8818,9233,9254,13356,14277,14631,13663,14376,15174,17327,16130,19282,20564,20447,20110,20245,20365,21791,20986,19314,10951,10454,12650,12164,11099,10966,12887,15149,15222,15837,13615,16359,14708,16065,14434,16715,16964,15569,16466,14088,13677,14756,15524,14879,15938,16485,16306,14765,13997,14778,14997,15369,16534,15586,15596,16078,16703,16551,17242
-2019F,IL,P1ICP,25548,24461,25167,25531,31770,33266,34269,33477,36070,35952,39165,36738,39959,44769,41579,39242,38639,40295,41835,41353,36926,22897,20837,24760,24737,24473,23385,25674,27340,29938,31431,28398,32843,28496,31270,29278,32955,32344,33290,35862,30992,29404,30841,32066,30191,31732,30589,29563,29681,26242,25936,25004,24504,26255,25808,26121,26721,26399,25661,26605
-2019F,IL,P1TCP,32744,30635,29717,29995,35975,37558,37823,36713,39394,38861,42055,39484,43256,48446,44762,42047,40914,42380,44249,43502,38749,24785,22720,26582,26692,26726,25241,27547,29272,31907,33271,30118,34528,30279,33101,31521,34996,34293,35550,38335,32917,31149,32636,33692,32049,33521,32125,31070,31046,27463,26966,26006,25383,27163,26745,27195,27717,27324,26546,27424
-2019F,IL,P1TXP,32744,30635,29717,29995,35975,37558,37823,36713,39394,38861,42055,39484,43256,48446,44762,42047,40914,42380,44249,43502,38749,24785,22720,26582,26692,26726,25241,27547,29272,31907,33271,30118,34528,30279,33101,31136,34755,34273,35204,38242,32917,31149,32636,33692,31852,33331,32071,31070,31046,27463,26966,26006,25383,27163,26745,27195,27717,27324,26546,27424
-2019F,IL,PAACP,90819,92379,94679,100521,102839,107891,113750,121669,131581,136079,140850,145159,158812,166180,159082,160662,166787,171069,177983,167808,148721,142600,139009,143481,128440,132835,131397,133179,141563,143747,140863,135798,138099,146242,142895,146240,150097,151984,155468,171503,176244,171469,165796,174158,183452,201572,192165,193091,185148,179234,182601,179843,173457,176265,180625,187753,188174,189082,188349,182432
-2019F,IL,PACCP,14504,14346,13915,13623,12125,13202,12345,13390,13498,13867,13478,10946,11596,11408,11440,11171,11163,10836,11161,8510,6457,7094,5937,7199,7533,5723,4176,3887,3771,3007,3144,2820,2872,2891,2946,2803,3161,3582,3022,2907,2847,2898,3008,2813,2232,2000,2194,1719,2438,2674,1958,1871,1805,2540,2233,4454,4388,4666,4534,4931
-2019F,IL,PAEIP,355,326,301,260,297,278,484,380,674,1331,5888,11265,13711,11791,11841,11072,10791,13594,17194,15964,13608,10167,7742,6349,4902,3005,4624,3660,2559,1990,2113,3044,2271,2122,2611,1938,1973,1147,1684,821,1158,2964,453,2225,1518,669,284,272,272,229,204,160,136,135,168,107,134,103,106,97
-2019F,IL,PAICP,70939,69642,70778,71609,75202,78315,77236,78424,85049,89087,90531,84685,93562,100938,98567,94287,97088,98437,98853,110344,94737,71765,59743,61102,60827,58845,66469,78245,81485,49610,51628,48007,50707,54528,60103,59968,61426,60995,54544,59079,53586,52786,54145,51541,53463,57748,56667,54830,52764,46262,49696,48684,48271,48259,52133,51673,51892,51513,51568,53284
-2019F,IL,PARCP,22592,22689,22742,22140,20963,21683,21229,20938,21868,22388,21962,22186,24193,23528,22390,22786,25161,24142,25096,13949,7739,6831,7008,6875,5946,6442,5552,5539,5510,5567,4716,5151,4725,4721,4592,4729,6077,6131,5052,7565,5987,4540,5854,4916,4695,4684,4945,5537,7424,6677,6761,5955,4871,6702,5545,5092,4856,4803,5895,7318
-2019F,IL,PATCP,199209,199383,202415,208153,211425,221369,225043,234802,252670,262752,272709,274241,301875,313846,303320,299978,310990,318078,330288,316576,271262,238458,219438,225005,207649,206850,212217,224511,234887,203921,202463,194821,198675,210503,213146,215677,222734,223839,219770,241875,239822,234657,229255,235653,245361,266673,256255,255449,248047,235076,241221,236513,228540,233901,240703,249079,249444,250168,250452,248062
-2019F,IL,PATPP,19.8,19.7,19.7,20,20,20.7,20.8,21.4,23,23.8,24.5,24.5,26.8,27.9,26.9,26.6,27.4,27.9,28.9,27.8,23.7,20.8,19.2,19.7,18.2,18.1,18.6,19.7,20.6,17.9,17.7,16.8,17,17.8,17.9,18,18.4,18.4,17.9,19.6,19.3,18.8,18.3,18.8,19.5,21.1,20.3,20.1,19.5,18.4,18.8,18.4,17.7,18.1,18.7,19.4,19.5,19.6,19.7,19.6
-2019F,IL,PATXP,198855,199057,202114,207893,211129,221090,224559,234422,251996,261421,266821,262976,288164,302054,291479,288906,300199,304484,313094,300612,257654,228290,211696,218656,202747,203844,207593,220850,232328,201930,200350,191776,196403,208381,210535,213739,220761,222691,218086,241054,238664,231693,228803,233428,243842,266004,255971,255177,247775,234847,241016,236353,228404,233765,240535,248972,249311,250065,250346,247965
-2019F,IL,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,241,19,346,93,0,0,0,0,197,190,54,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,PCICP,4726,4726,4448,4559,5331,5195,5002,4825,4740,4175,4975,5275,5100,6990,6535,5900,5785,5960,5285,6890,7130,3475,3713,4514,4691,3999,4386,4390,4613,4619,5203,5025,5314,5551,5381,5345,5020,4918,5619,5982,5742,4659,4304,4246,3973,4322,4039,3834,3683,3822,4028,4134,4352,4890,5142,4655,5214,4891,4923,4724
-2019F,IL,PCTCP,4726,4726,4448,4559,5331,5195,5002,4825,4740,4175,4975,5275,5100,6990,6535,5900,5785,5960,5285,6890,7130,3475,3713,4514,4691,3999,4386,4390,4613,4619,5203,5025,5314,5551,5381,5730,5261,4938,5964,6075,5742,4659,4304,4246,4170,4512,4093,3834,3683,3822,4028,4134,4352,4890,5142,4655,5214,4891,4923,4724
-2019F,IL,PCTXP,4726,4726,4448,4559,5331,5195,5002,4825,4740,4175,4975,5275,5100,6990,6535,5900,5785,5960,5285,6890,7130,3475,3713,4514,4691,3999,4386,4390,4613,4619,5203,5025,5314,5551,5381,5345,5020,4918,5619,5982,5742,4659,4304,4246,3973,4322,4039,3834,3683,3822,4028,4134,4352,4890,5142,4655,5214,4891,4923,4724
-2019F,IL,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55,49,42,46,37,37,41,54,145,155
-2019F,IL,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,795,725,545,1082,747,636,639,1029,909,1116
-2019F,IL,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4986,4811,5023,5075,5590,4507,4227,4233,4528,5723
-2019F,IL,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6610,5821,4798,6615,5444,5010,4764,4718,5802,7239
-2019F,IL,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12446,11405,10408,12818,11818,10190,9672,10034,11384,14233
-2019F,IL,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12446,11405,10408,12818,11818,10190,9672,10034,11384,14233
-2019F,IL,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,296,296,296,296,296,296,296,296,296,296
-2019F,IL,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,296,296,296,296,296,296,296,296,296,296
-2019F,IL,RFACP,1168,1050,667,716,464,423,941,769,632,579,408,356,227,271,323,215,261,140,126,299,279,7,26,79,138,187,86,102,350,57,51,13,31,37,50,35,30,47,37,30,92,134,74,120,16,23,47,37,34,24,0,0,21,22,1,2,1,0,21,0
-2019F,IL,RFCCP,8336,8146,7737,7725,6458,7453,6719,7688,7586,7921,7627,5001,5288,5224,5456,4960,4085,3949,3978,4144,2633,1248,1032,1048,699,343,890,911,579,226,204,39,43,55,66,45,190,129,115,78,14,58,13,7,49,60,1,0,3,0,22,19,0,0,0,0,0,0,0,0
-2019F,IL,RFEIP,194,178,165,142,162,152,265,208,369,728,3221,6871,7791,7911,6984,7239,6880,9533,13055,13028,12762,9587,7168,5802,4489,2569,4165,3235,2007,1535,1622,2550,1906,1653,1986,1013,1184,577,744,269,795,2675,218,1969,1112,141,30,12,9,1,7,0,0,0,0,0,0,0,0,0
-2019F,IL,RFICP,16835,16934,16264,17238,14313,15064,13953,15543,15642,17164,16694,11681,16701,16627,16679,15728,13635,13749,12467,11704,12598,9950,7240,6771,4519,3410,3175,2716,2973,2209,1717,846,369,529,599,363,592,677,150,157,243,309,87,132,335,303,180,85,143,13,4,10,12,52,21,15,98,202,120,114
-2019F,IL,RFTCP,26533,26308,24832,25821,21397,23091,21878,24208,24229,26392,27949,23909,30007,30034,29441,28142,24862,27370,29627,29176,28271,20791,15466,13700,9845,6508,8316,6964,5908,4027,3594,3448,2349,2273,2701,1457,1996,1430,1046,535,1144,3176,392,2228,1512,527,257,133,190,38,33,30,34,73,22,16,99,202,141,114
-2019F,IL,RFTXP,26339,26130,24668,25679,21234,22939,21613,24000,23860,25664,24728,17039,22216,22122,22457,20903,17982,17837,16572,16147,15510,11204,8298,7898,5356,3939,4150,3729,3901,2492,1972,899,443,621,715,444,812,854,302,266,349,501,174,259,400,386,227,122,181,37,25,30,34,73,22,16,99,202,141,114
-2019F,IL,SGICP,8189,7950,8336,8172,8354,8849,8915,8770,9139,9574,11239,10442,13244,14359,14040,14056,13542,13566,14111,13839,12338,11732,11629,11109,9502,11249,13385,13347,14533,14570,15390,15134,15759,15495,15935,14904,14965,15176,15314,15114,15054,11732,12975,13416,13577,13729,13763,13526,12959,13206,13290,13315,13785,13535,13320,12915,13268,13246,13666,13359
-2019F,IL,SNICP,0,0,0,0,3938,4263,4363,3634,3894,4267,4526,3711,3973,4019,3987,3428,3885,4050,4871,4932,4742,2789,2597,3051,4079,3136,2470,2753,2169,2041,2036,1877,2230,2231,1729,1511,1668,1617,2400,3253,2179,1453,1895,1490,945,1157,1307,1456,1583,861,487,422,274,2112,2241,2096,1976,2064,1893,1967
-2019F,IL,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,3,3,3,4,4,9,8,16,19,24,38,65,108
-2019F,IL,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,31,52,50,49,49,52,63,59
-2019F,IL,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
-2019F,IL,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,4,4,5,8,13,21,34,84
-2019F,IL,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,4,4,4,4,20,21,43,64,71,76,86,111,161,251
-2019F,IL,TPOPP,10086,10130,10280,10402,10580,10693,10836,10947,10995,11039,11128,11202,11252,11251,11262,11292,11343,11386,11413,11397,11435,11443,11423,11409,11412,11400,11387,11391,11390,11410,11453,11569,11694,11810,11913,12008,12102,12186,12272,12359,12434,12488,12526,12556,12590,12610,12644,12696,12747,12797,12841,12868,12883,12896,12885,12860,12822,12780,12725,12667
-2019F,IL,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3008,-3445,-1925,-2713,-3258,-3465,-3542,-2822,-3870,-3970,-4920,-3981,-4419,-3184,-3475,-1210,-1111,-3446,-3119,-4295,-621,-1241,-453,-683,26,642,595,-488,-727,260,518,576,152,-729,-158,77,690,282,1278
-2019F,IL,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,WXICP,293,290,262,251,237,253,333,329,370,390,391,591,609,782,766,684,708,592,610,598,584,883,690,751,743,761,741,793,823,811,807,497,527,567,574,575,777,699,677,598,528,456,403,389,386,393,294,247,216,138,192,170,172,194,174,146,151,107,131,110
-2019F,IL,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,5,5,5,5
-2019F,IL,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,78,141,255,664,2337,2820,4454,6213,7727,9625,10079,10742,10659,12263,11894,14455
-2019F,IL,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IL,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,78,141,255,664,2337,2820,4454,6213,7727,9625,10083,10747,10663,12268,11899,14460
-2019F,IL,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,5,5,5,5
-2019F,IN,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,4,1,22,3,0,-6,1,1,0,1,1,35,29,39,50,21,34,20,32,39,38,54,43,3,9,0,-4,-1,0,0,-2,-1,-2,-1,-1,-8,-6
-2019F,IN,ARICP,3277,3553,3578,4355,4344,4283,4292,4585,5330,4157,6101,7908,7016,8613,8258,6067,5365,6159,8428,7679,5165,5803,5400,5786,6001,5336,6063,7600,6941,6396,8552,7058,6210,9501,10219,7085,8528,9233,7187,7460,6048,5512,6038,6558,7031,6488,5352,4741,3524,3240,2675,3062,3311,2767,2784,3274,3375,3898,3712,3950
-2019F,IN,ARTCP,3277,3553,3578,4355,4344,4283,4292,4585,5330,4157,6101,7908,7016,8613,8258,6067,5365,6159,8428,7679,5165,5803,5400,5786,6001,5336,6063,7600,6941,6396,8552,7058,6210,9501,10219,7085,8528,9233,7187,7460,6048,5512,6038,6558,7031,6488,5352,4741,3524,3240,2675,3062,3311,2767,2784,3274,3375,3898,3712,3950
-2019F,IN,ARTXP,3277,3553,3578,4355,4344,4283,4292,4585,5330,4157,6101,7908,7016,8613,8258,6067,5365,6159,8428,7679,5165,5803,5400,5786,6001,5336,6063,7600,6941,6396,8552,7058,6210,9501,10219,7085,8528,9233,7187,7460,6048,5512,6038,6558,7031,6488,5352,4741,3524,3240,2675,3062,3311,2767,2784,3274,3375,3898,3712,3950
-2019F,IN,AVACP,453,427,767,783,793,1110,903,614,592,451,367,352,287,276,302,217,254,262,322,257,260,188,129,151,250,393,434,378,432,288,302,302,252,201,149,144,171,136,113,119,113,67,122,106,103,162,116,115,92,92,102,96,89,74,67,67,64,69,65,72
-2019F,IN,AVTCP,453,427,767,783,793,1110,903,614,592,451,367,352,287,276,302,217,254,262,322,257,260,188,129,151,250,393,434,378,432,288,302,302,252,201,149,144,171,136,113,119,113,67,122,106,103,162,116,115,92,92,102,96,89,74,67,67,64,69,65,72
-2019F,IN,AVTXP,453,427,767,783,793,1110,903,614,592,451,367,352,287,276,302,217,254,262,322,257,260,188,129,151,250,393,434,378,432,288,302,302,252,201,149,144,171,136,113,119,113,67,122,106,103,162,116,115,92,92,102,96,89,74,67,67,64,69,65,72
-2019F,IN,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,14,11,22,76,217,294,253,268,216,737,712,1226,1178,1015,1440,1114,993,817
-2019F,IN,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,14,11,22,76,217,294,253,268,216,737,712,1226,1178,1015,1440,1114,993,817
-2019F,IN,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,CLACP,287,76,63,61,65,59,58,45,40,31,31,22,20,14,10,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,CLCCP,869,809,799,686,504,466,500,431,392,282,309,345,463,303,364,630,444,291,138,123,175,268,485,592,532,408,420,417,492,409,441,355,337,278,303,249,314,352,330,302,245,223,291,311,386,236,52,158,341,322,339,302,197,133,139,62,67,57,63,61
-2019F,IN,CLEIP,13483,14083,14774,15516,16536,18113,19502,19074,21135,22637,22648,22963,24222,26937,25470,27301,28937,29879,28869,31593,33664,32219,30566,33525,38398,38310,37309,36987,40060,42378,47654,47720,46937,48836,50554,52089,52855,54845,55267,56317,59431,57397,57692,58493,59459,60011,60582,60756,61171,54449,56348,52704,46696,46671,48582,39106,36085,35552,39144,30999
-2019F,IN,CLICP,16702,16692,15681,16499,17678,18093,19512,18788,18283,18697,19394,16896,20067,19824,18854,18006,16753,18035,18157,19251,16599,17491,13092,14110,14516,14457,12788,13857,15139,14492,13496,12638,11416,11178,9085,10255,10810,10811,10843,10703,12567,13434,13290,13306,13777,12567,12298,11789,10791,8998,10565,8996,7678,7520,6622,6069,6062,5706,5585,5658
-2019F,IN,CLKCP,11026,10881,9938,10859,11760,11892,12439,12080,11697,11701,12817,11501,13723,14171,14128,13794,12392,13179,11588,12640,11989,12278,8291,9127,9462,9338,7808,8841,10355,9754,8867,8234,7153,6591,4841,5883,5823,5715,6444,6563,8270,8100,8093,8008,7989,7278,6731,6127,5570,4301,5505,5697,5704,5364,4783,4515,3854,3702,3813,3867
-2019F,IN,CLOCP,5677,5812,5744,5640,5918,6201,7073,6708,6587,6996,6577,5395,6344,5653,4726,4213,4361,4855,6569,6611,4610,5213,4801,4984,5054,5119,4980,5016,4784,4738,4629,4404,4263,4587,4244,4373,4987,5096,4399,4140,4297,5334,5196,5298,5788,5289,5567,5662,5221,4697,5060,3299,1974,2156,1840,1554,2209,2004,1773,1792
-2019F,IN,CLRCP,1251,1165,1150,947,696,618,663,572,499,359,393,332,349,178,171,270,181,113,41,31,47,59,99,113,125,115,126,124,139,109,110,78,74,61,53,37,43,44,41,41,30,28,40,46,43,21,5,18,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,CLTCP,32592,32825,32467,33708,35480,37349,40235,38911,40350,42006,42776,40558,45121,47256,44869,46210,46316,48318,47205,50998,50485,50038,44243,48340,53571,53291,50643,51385,55830,57388,61701,60790,58765,60353,59996,62631,64021,66051,66480,67364,72273,71082,71312,72156,73665,72834,72937,72720,72303,63769,67253,62001,54571,54324,55344,45237,42214,41315,44792,36719
-2019F,IN,CLTXP,19109,18742,17693,18192,18944,19236,20733,19836,19215,19369,20127,17595,20899,20319,19399,18909,17379,18439,18336,19405,16821,17818,13677,14815,15173,14981,13334,14398,15770,15010,14047,13070,11827,11517,9441,10542,11166,11206,11214,11046,12842,13685,13620,13663,14207,12823,12355,11965,11132,9320,10904,9297,7876,7654,6761,6131,6129,5763,5648,5720
-2019F,IN,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,DFACP,4097,4139,4451,4582,4702,5124,5525,5740,5685,7083,8123,8483,11065,11624,11442,11200,12046,13252,12492,17575,17629,17134,17320,17538,18870,20564,20827,21460,19892,23695,24000,23418,22301,23492,25489,25658,27277,29130,27923,30715,31803,23947,33616,36706,31892,34281,35709,35204,32100,28566,31608,32720,31833,35570,37043,35886,34238,30259,30384,30745
-2019F,IN,DFCCP,2968,2973,2991,2933,2955,2832,2728,2782,2874,2845,2791,2971,3210,3232,3051,3007,3384,3410,3485,2690,1985,1139,1441,3093,3798,2738,1936,1536,1409,1346,1244,1173,1404,1625,1399,1104,965,1095,1422,1289,1344,1576,1379,1733,1691,1274,1341,996,1188,959,709,554,666,662,831,786,771,705,772,865
-2019F,IN,DFEIP,130,101,80,75,91,80,74,96,146,170,257,261,311,171,265,477,418,623,836,510,730,743,525,356,306,414,323,352,379,370,423,351,264,393,412,342,353,322,447,554,530,385,322,356,280,323,267,284,308,250,256,289,208,246,309,264,191,199,215,234
-2019F,IN,DFICP,9976,9818,9740,9877,9667,9766,9698,9477,10371,11092,10180,10433,10582,10605,9540,9324,10081,10021,10150,7589,5053,5827,5343,4308,5291,4675,5655,6262,4491,5613,5293,5319,5446,4774,4697,4766,4671,5028,5881,5668,5465,6234,6001,6541,6281,6965,5878,6192,5807,4724,3998,5001,5251,4613,5335,5430,5395,5941,5854,6557
-2019F,IN,DFRCP,8536,8551,8602,8436,8500,8146,7845,8001,8264,8183,8027,8544,9231,9295,8773,8647,9732,9807,10022,7738,5398,4100,4222,2417,2969,2656,3034,3040,2942,2696,1997,1933,1882,2117,1664,1476,1447,1264,1054,1047,976,779,843,1175,1016,898,613,477,591,304,259,277,238,213,207,214,158,164,200,222
-2019F,IN,DFTCP,25707,25582,25863,25903,25915,25948,25869,26095,27339,29374,29379,30693,34399,34928,33071,32655,35662,37113,36984,36102,30795,28944,28851,27711,31235,31046,31775,32651,29112,33719,32957,32194,31297,32402,33660,33345,34713,36839,36727,39274,40117,32921,42161,46511,41160,43742,43808,43154,39994,34803,36831,38841,38197,41304,43724,42580,40752,37268,37424,38622
-2019F,IN,DFTXP,25577,25481,25784,25828,25824,25869,25796,25999,27194,29204,29122,30432,34087,34757,32806,32178,35244,36490,36148,35592,30065,28201,28326,27355,30929,30632,31452,32298,28733,33349,32534,31843,31034,32009,33249,33003,34360,36517,36281,38719,39587,32536,41838,46154,40880,43419,43540,42870,39686,34553,36574,38552,37988,41058,43415,42317,40561,37068,37210,38388
-2019F,IN,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,102,105,38,5,5,16,23,1,5,1,0,0,0
-2019F,IN,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,30,79,23,7,6,1,33,84,46,123,14,13,73,0
-2019F,IN,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-18534,-15698,-14393,-11323,-13184,-11218,-10038,-14811,-14642,-12995,-18199,-14403,-12705,-13024,-12026,-11622,-12944,-5178,-6339,-2608,-3712,-990,6300,10859,6414,15542,13535,11023,3428,12707
-2019F,IN,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,11,30,-23,-83,-31,1,-4,17,61,44,118,14,13,73,0
-2019F,IN,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,1202,1287,1280,1420,1636,1553,1730,1478,1759,1679,1760,1731,2190,1116,1497,1431,2508,2806,2590,2940,3150,3172,3581,3786,4561,6138,6752,6740,6685,6917,7252,7185,6914,6997,7085,6836,6827
-2019F,IN,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,8,8,12,12,11,12,14,10,9,8,7,6,3,4,3,6,3,9,9,10,9,11,11,17,33,68,55,62,62,60,57,152,154,139,139,144
-2019F,IN,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,22,20,20,22,20,22,15,21,18,20,22,27,13,18,13,23,23,38,47,49,64,66,74,157,203,217,121,125,136,140,93,96,106,105,104,103
-2019F,IN,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,1220,1317,1308,1452,1670,1584,1764,1507,1790,1706,1788,1760,2222,1132,1519,1447,2537,2832,2637,2996,3210,3245,3659,3870,4734,6374,7036,6916,6872,7115,7452,7335,7161,7257,7328,7080,7074
-2019F,IN,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,ESACP,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,13,14,14,15,15,16,15,15,16,16,16,16,17,17,18,19,20,20,20,21,20,21,21,21,21,20,21,21
-2019F,IN,ESCCP,2900,3096,3397,3626,3902,4243,4646,4968,5481,6015,6520,6992,7633,8187,8188,9071,9556,10036,9555,10163,10423,10832,11290,11401,11916,12257,12933,13455,15715,15863,16116,17014,16688,17524,17982,18654,18822,19030,19861,20685,21070,26219,22363,22441,22957,23959,23830,24768,24570,23689,24365,24111,24022,24252,24130,24022,24229,23657,24305,23518
-2019F,IN,ESICP,8226,8695,9676,10381,11208,12360,13876,14870,16347,18022,17952,18782,20555,23112,23572,26675,30102,31751,31988,33153,30730,30601,28347,30447,27411,31784,30950,32999,33474,34747,35743,35787,37439,39415,40763,41777,43203,43550,44848,47230,48040,42080,47481,47284,48928,48944,49530,49988,48411,43055,46552,47774,48168,47808,49088,48030,46429,43737,45293,45317
-2019F,IN,ESRCP,6371,6748,7160,7537,8042,8651,9482,10218,11268,12463,13488,14372,15335,16351,16543,16375,16673,18048,18262,18316,19262,19118,19307,19931,20193,19803,20508,21171,22486,22281,22111,24220,22837,24978,25048,26560,26860,26550,27334,28806,28649,29420,31568,30726,31192,33629,32286,34646,33980,32548,35058,33912,32964,33407,33704,32442,33026,31552,34575,33249
-2019F,IN,ESRPP,1363,1427,1512,1571,1656,1758,1897,2022,2212,2423,2593,2736,2892,3063,3085,3052,3094,3326,3338,3329,3508,3488,3531,3657,3700,3628,3760,3868,4095,4034,3978,4312,4024,4352,4323,4539,4548,4458,4557,4765,4703,4801,5128,4959,5004,5356,5098,5431,5289,5039,5401,5203,5041,5084,5110,4907,4975,4736,5162,4940
-2019F,IN,ESTCP,17498,18539,20233,21543,23153,25254,28003,30056,33096,36500,37960,40145,43522,47650,48302,52121,56331,59834,59805,61632,60415,60551,58943,61778,59520,63844,64391,67624,71675,72891,73982,77034,76977,81931,83808,87006,88901,89147,92059,96735,97775,97734,101429,100468,103094,106549,105664,109420,106981,99312,105994,105818,105173,105487,106943,104515,103705,98966,104194,102104
-2019F,IN,ESTPP,3744,3919,4272,4489,4768,5131,5602,5948,6498,7097,7297,7642,8208,8926,9008,9714,10453,11028,10933,11203,11003,11049,10780,11335,10904,11695,11806,12356,13052,13196,13311,13716,13565,14276,14466,14869,15053,14969,15346,16003,16050,15949,16476,16213,16540,16970,16686,17152,16651,15375,16331,16237,16084,16055,16213,15808,15623,14855,15555,15169
-2019F,IN,ESTXP,17498,18539,20233,21543,23153,25254,28003,30056,33096,36500,37960,40145,43522,47650,48302,52121,56331,59834,59805,61632,60415,60551,58943,61778,59520,63844,64391,67624,71675,72891,73982,77034,76977,81931,83808,87006,88901,89147,92059,96735,97775,97734,101429,100468,103094,106549,105664,109420,106981,99312,105994,105818,105173,105487,106943,104515,103705,98966,104194,102104
-2019F,IN,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,FSICP,0,0,0,378,371,419,484,436,492,492,595,689,590,478,542,591,634,636,701,442,505,207,229,288,356,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,HLACP,47,53,62,68,56,52,78,92,113,116,97,125,125,135,127,125,147,158,184,134,88,179,151,163,218,148,146,131,149,152,153,159,162,128,234,104,120,66,50,35,60,73,136,175,177,171,145,139,247,188,54,57,47,54,97,68,80,37,31,25
-2019F,IN,HLCCP,510,502,556,618,471,601,696,769,806,955,950,962,1093,1057,1012,1004,1036,1032,973,585,505,496,433,515,413,352,392,448,510,615,526,526,515,568,557,567,762,753,555,672,760,558,774,768,771,579,455,486,963,890,605,778,549,748,641,647,536,563,837,1004
-2019F,IN,HLICP,1716,1553,1641,1896,1705,1904,2203,2395,2771,1893,1455,1453,1768,2284,3218,4369,6284,8235,6360,4768,3930,3195,3297,2686,1888,2046,2935,2465,2620,3157,5300,5243,2857,3216,2549,2250,2485,1427,962,1442,2433,1798,2451,2487,2677,2240,2394,2526,1213,2041,1662,1603,1732,2105,1927,1419,1286,1244,1156,1393
-2019F,IN,HLRCP,3477,3419,3789,4207,3206,4096,4743,5237,5490,6503,6475,6556,7445,7202,6892,6838,7059,7033,6631,3987,3438,3381,2947,3506,2814,2401,2670,3050,3474,4189,3585,3580,3511,3866,3794,3866,5189,5132,3779,4581,5176,3801,5272,5582,4546,3909,3431,4323,5248,5003,4505,4330,3098,3665,3713,3032,2899,2802,3520,3744
-2019F,IN,HLTCP,5751,5527,6047,6789,5438,6654,7719,8493,9181,9467,8978,9097,10430,10679,11249,12335,14526,16458,14148,9475,7961,7251,6828,6870,5334,4947,6143,6094,6753,8113,9563,9508,7045,7778,7134,6788,8555,7379,5346,6730,8429,6230,8632,9013,8171,6899,6425,7474,7670,8122,6827,6768,5426,6572,6378,5167,4802,4646,5545,6166
-2019F,IN,HLTXP,5751,5527,6047,6789,5438,6654,7719,8493,9181,9467,8978,9097,10430,10679,11249,12335,14526,16458,14148,9475,7961,7251,6828,6870,5334,4947,6143,6094,6753,8113,9563,9508,7045,7778,7134,6788,8555,7379,5346,6730,8429,6230,8632,9013,8171,6899,6425,7474,7670,8122,6827,6768,5426,6572,6378,5167,4802,4646,5545,6166
-2019F,IN,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,HYEGP,100,106,75,52,45,94,95,469,524,591,495,431,385,480,445,444,479,374,361,438,474,509,428,418,436,426,506,507,441,450,441,399,562,448,407,467,448,562,479,407,588,571,411,424,444,438,490,450,437,503,454,409,434,387,371,381,426,306,223,256
-2019F,IN,HYICP,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,HYTCP,100,107,75,52,45,94,95,469,524,591,495,431,385,480,445,444,479,374,361,438,474,509,428,418,436,426,506,507,441,450,441,399,562,448,407,467,448,562,479,407,588,571,411,424,444,438,490,450,437,503,454,409,434,387,371,381,426,306,223,256
-2019F,IN,HYTXP,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,JFACP,1316,1426,1648,1804,1888,1848,1911,2330,2717,2634,2558,2699,2818,2851,2585,2619,2623,2653,2498,2554,2151,2848,4361,4395,15451,15445,18611,19141,16546,17557,17889,17228,16001,16366,17299,17344,12576,10996,9656,11198,14006,11763,10778,9358,8558,6950,7865,7450,6263,7452,3971,3974,3979,4016,4422,4703,5010,4533,4714,4663
-2019F,IN,JFTCP,1316,1426,1648,1804,1888,1848,1911,2330,2717,2634,2558,2699,2818,2851,2585,2619,2623,2676,2498,2588,2151,2848,4361,4395,15451,15445,18611,19141,16546,17557,17889,17228,16001,16366,17299,17344,12576,10996,9656,11198,14006,11763,10778,9358,8558,6950,7865,7450,6263,7452,3971,3974,3979,4016,4422,4703,5010,4533,4714,4663
-2019F,IN,JFTXP,1316,1426,1648,1804,1888,1848,1911,2330,2717,2634,2558,2699,2818,2851,2585,2619,2623,2653,2498,2554,2151,2848,4361,4395,15451,15445,18611,19141,16546,17557,17889,17228,16001,16366,17299,17344,12576,10996,9656,11198,14006,11763,10778,9358,8558,6950,7865,7450,6263,7452,3971,3974,3979,4016,4422,4703,5010,4533,4714,4663
-2019F,IN,KSCCP,328,292,305,271,261,243,228,122,182,201,179,175,187,128,88,70,109,102,113,52,31,9,18,374,198,133,137,50,78,40,35,43,59,48,67,70,69,87,51,41,48,44,31,33,44,47,40,28,13,17,26,9,3,3,18,12,14,8,6,10
-2019F,IN,KSICP,202,455,920,896,806,703,480,647,225,159,115,115,69,57,62,55,92,76,85,212,136,163,230,231,188,131,201,148,115,78,54,47,54,45,87,45,84,70,81,81,50,49,172,37,58,56,32,27,13,25,22,20,5,2,11,10,7,6,4,6
-2019F,IN,KSRCP,3370,3005,3134,2785,2684,2498,2349,1259,1875,2069,1837,1800,1928,1321,901,717,1123,1054,1166,535,492,537,343,406,434,466,393,403,519,532,278,316,186,253,275,215,288,303,300,1328,359,358,284,206,256,262,174,129,71,129,105,64,18,23,41,29,42,20,18,26
-2019F,IN,KSTCP,3899,3752,4358,3952,3751,3444,3058,2029,2282,2429,2130,2090,2184,1506,1051,841,1324,1233,1364,799,659,709,591,1011,819,731,731,601,712,650,368,406,298,347,429,330,441,459,433,1450,457,450,487,276,358,365,246,184,96,171,153,93,27,29,70,51,64,34,28,42
-2019F,IN,KSTXP,3899,3752,4358,3952,3751,3444,3058,2029,2282,2429,2130,2090,2184,1506,1051,841,1324,1233,1364,799,659,709,591,1011,819,731,731,601,712,650,368,406,298,347,429,330,441,459,433,1450,457,450,487,276,358,365,246,184,96,171,153,93,27,29,70,51,64,34,28,42
-2019F,IN,LUACP,692,674,665,665,698,615,639,568,624,599,610,608,651,725,694,763,847,692,743,777,692,664,605,634,676,630,616,696,671,689,709,634,646,658,688,676,656,693,726,733,722,662,654,604,612,609,593,613,569,512,664,634,582,628,654,705,652,570,531,507
-2019F,IN,LUICP,489,476,604,604,634,843,876,780,857,956,974,1019,1091,1339,1282,842,935,1096,1177,1231,1096,1051,959,1004,1070,998,975,1103,1063,1091,1123,1004,1024,1043,1090,1071,1039,1098,1149,1161,1144,1048,1036,958,970,965,940,971,901,810,797,695,629,707,716,749,736,651,627,599
-2019F,IN,LUTCP,1181,1149,1269,1269,1333,1458,1515,1349,1482,1554,1583,1627,1742,2064,1976,1604,1782,1787,1919,2008,1788,1715,1564,1637,1746,1627,1591,1799,1735,1779,1831,1638,1670,1701,1778,1747,1695,1791,1875,1895,1866,1710,1690,1562,1582,1574,1534,1584,1470,1322,1461,1329,1211,1336,1370,1454,1388,1221,1158,1106
-2019F,IN,LUTXP,1181,1149,1269,1269,1333,1458,1515,1349,1482,1554,1583,1627,1742,2064,1976,1604,1782,1787,1919,2008,1788,1715,1564,1637,1746,1627,1591,1799,1735,1779,1831,1638,1670,1701,1778,1747,1695,1791,1875,1895,1866,1710,1690,1562,1582,1574,1534,1584,1470,1322,1461,1329,1211,1336,1370,1454,1388,1221,1158,1106
-2019F,IN,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1401,-1196,-863,-395,-1120,-1542,-689,-321,310,294,-148,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,MGACP,40615,40658,42018,42910,43399,45194,47635,48887,52083,53722,56417,58348,61615,64394,62613,63256,66051,66353,69366,64184,59217,60125,55652,56576,56751,56684,58675,62014,62885,60515,60744,60240,61003,64502,65742,69076,68611,68809,73315,71714,73199,73859,72906,75417,75373,75375,75424,73801,71411,71119,73006,69805,69329,70410,70759,72233,72936,72913,71245,69763
-2019F,IN,MGCCP,168,158,170,160,160,171,160,136,146,200,251,219,228,219,147,120,124,254,144,139,223,221,213,358,341,352,487,465,453,429,561,353,333,289,260,175,159,171,167,183,87,254,231,247,207,239,214,276,382,713,598,646,617,580,566,1584,1605,1429,1453,1467
-2019F,IN,MGICP,2813,2617,2742,2746,2609,2686,2423,1919,2235,2771,2238,1681,1622,1470,1540,1263,1149,835,1078,1048,752,810,611,508,965,901,831,838,803,757,625,709,639,739,836,849,808,847,650,655,591,1086,1160,1181,1530,1394,1465,2533,2364,2289,1307,1304,1364,1361,917,1000,1104,1076,1087,1054
-2019F,IN,MGTCP,43595,43433,44929,45815,46168,48051,50218,50942,54464,56693,58905,60248,63465,66082,64300,64639,67324,67441,70588,65370,60192,61155,56476,57442,58057,57936,59993,63316,64140,61701,61930,61302,61975,65531,66838,70100,69578,69828,74133,72552,73878,75199,74297,76844,77109,77008,77103,76610,74157,74121,74911,71755,71309,72351,72242,74817,75646,75418,73784,72284
-2019F,IN,MGTXP,43595,43433,44929,45815,46168,48051,50218,50942,54464,56693,58905,60248,63465,66082,64300,64639,67324,67441,70588,65370,60192,61155,56476,57442,58057,57936,59993,63316,64140,61701,61930,61302,61975,65531,66838,70100,69578,69828,74133,72552,73878,75199,74297,76844,77109,77008,77103,76610,74157,74121,74911,71755,71309,72351,72242,74817,75646,75418,73784,72284
-2019F,IN,MSICP,459,513,563,298,298,291,245,229,256,238,213,213,219,271,347,468,266,301,262,242,230,646,566,507,436,439,273,274,332,305,275,470,308,292,326,299,352,386,470,442,471,179,192,181,163,162,144,141,150,160,168,174,171,123,131,136,137,215,214,195
-2019F,IN,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,NGACP,5002,5356,6895,7488,8181,8033,9857,11165,9752,11574,11154,12366,13225,12696,12520,9605,5046,4763,4870,9851,8901,8628,8718,5514,6062,4823,5859,5921,9259,8457,8469,4666,4783,6831,6948,7695,12560,10978,7545,7546,5916,7325,5584,7081,7329,6746,6444,7167,7183,6674,8729,10276,7223,7450,7364,7164,9104,9141,7954,11003
-2019F,IN,NGCCP,20042,23942,27751,32456,37521,42259,47909,58273,60661,72414,77550,77984,85302,76835,75887,70501,67481,63224,70083,74231,70048,71178,71900,65409,71819,69641,64821,64903,71709,73625,67223,68383,72720,78047,75819,82726,87456,81753,73117,73643,90378,78479,82427,87225,84883,76217,71081,75562,84858,78764,75883,75995,66663,82596,90915,77552,74131,75312,86188,88245
-2019F,IN,NGEIP,8790,9272,13309,16579,14637,13272,16483,14935,6535,20558,29507,31440,17964,10246,13958,10994,3157,1067,3143,2774,1904,5309,2705,2877,1451,1117,1086,1315,3455,4075,6632,10043,7772,5667,9009,8349,4355,4661,13678,12515,14513,17777,35104,26672,22946,35376,27213,37871,34312,36576,61242,85298,115328,81013,82361,127964,174685,132684,196219,222085
-2019F,IN,NGICP,102490,116754,129254,142335,165335,179939,203193,210740,231110,269736,268458,282459,291190,287484,271377,223383,196677,177577,194391,244182,244736,252231,224453,207715,221384,211126,183280,201402,218781,219962,228139,227774,245528,263288,270017,275381,288898,290110,287305,311722,298556,250792,259110,248704,262956,264117,263915,272652,272369,245186,289597,327006,345184,357196,376138,372999,371319,379468,419456,426717
-2019F,IN,NGRCP,76003,84553,95043,98957,108011,114357,122454,139519,145955,156699,158699,162747,169267,155039,158130,162858,152860,151637,168468,173147,163665,159003,160066,145255,151568,146251,140135,139048,153609,155934,140492,146446,152692,163944,157467,161059,179939,169140,140122,151529,161221,147338,156809,157356,148587,148655,127649,142543,152701,139743,138415,132094,115522,144496,156639,133045,125038,123847,144207,142806
-2019F,IN,NGTCP,212327,239877,272252,297815,333685,357860,399896,434632,454013,530981,545368,566996,576948,542300,531872,477341,425221,398268,440955,504185,489254,496349,467842,426770,452284,432958,395181,412589,456813,462053,450955,457311,483495,517777,519261,535211,573208,556642,521767,556956,570585,501711,539034,527037,526701,531111,496303,535795,551423,506943,573866,630669,649920,672751,713417,718724,754277,720452,854024,890856
-2019F,IN,NGTPP,45.4,50.7,57.5,62.1,68.7,72.7,80,86,89.1,103.2,104.8,107.9,108.8,101.6,99.2,89,78.9,73.4,80.6,91.7,89.1,90.6,85.6,78.3,82.9,79.3,72.5,75.4,83.2,83.6,81.1,81.4,85.2,90.2,89.6,91.5,97.1,93.5,87,92.1,93.7,81.9,87.6,85.1,84.5,84.6,78.4,84,85.8,78.5,88.4,96.8,99.4,102.4,108.2,108.7,113.6,108.1,127.5,132.4
-2019F,IN,NGTXP,203537,230605,258943,281236,319048,344588,383413,419697,447478,510423,515861,535556,558984,532054,517914,466347,422064,397201,437812,501411,487350,491040,465137,423893,450833,431841,394095,411274,453358,457978,444322,447268,475723,512110,510251,526862,568853,551981,508089,544441,556072,483934,503930,500366,503755,495736,469089,497924,517111,470367,512624,545371,534592,591738,631056,590760,579592,587768,657805,668771
-2019F,IN,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,OPICP,7157,6801,7057,6948,7528,7634,7923,7643,8866,9321,9289,8145,8271,8166,8129,8185,8065,8458,8696,8297,7942,4265,4281,5423,5294,4367,4102,4909,6040,6194,6171,5826,7348,5973,6565,5956,7236,7187,6152,6286,5630,6882,6566,7082,6822,7213,7474,7240,6437,6262,6758,5847,3308,6901,6371,6419,6579,7017,7108,7277
-2019F,IN,OPTCP,7157,6801,7057,6948,7528,7634,7923,7643,8866,9321,9289,8145,8271,8166,8129,8185,8065,8458,8696,8297,7942,4265,4281,5423,5294,4367,4102,4909,6040,6194,6171,5826,7348,5973,6565,5956,7236,7187,6152,6286,5630,6882,6566,7082,6822,7213,7474,7240,6437,6262,6758,5847,3308,6901,6371,6419,6579,7017,7108,7277
-2019F,IN,OPTXP,7157,6801,7057,6948,7528,7634,7923,7643,8866,9321,9289,8145,8271,8166,8129,8185,8065,8458,8696,8297,7942,4265,4281,5423,5294,4367,4102,4909,6040,6194,6171,5826,7348,5973,6565,5956,7236,7187,6152,6286,5630,6882,6566,7082,6822,7213,7474,7240,6437,6262,6758,5847,3308,6901,6371,6419,6579,7017,7108,7277
-2019F,IN,P1ICP,13522,13860,14633,15363,16179,16550,17189,17246,18677,18367,19795,20656,20179,22298,21664,19372,17989,19712,21822,20008,17112,15129,14074,15224,15820,14111,14580,17764,18442,17719,19990,17921,19601,20793,22477,18540,21495,21486,20142,21903,18067,20468,20279,20856,23381,22912,22911,21183,19432,19440,16234,14422,12483,14442,13973,15819,13909,13901,15118,15765
-2019F,IN,P1TCP,18365,18258,19503,19867,20616,21016,21309,19810,21951,21687,23042,23766,23433,25377,24265,21137,20323,21822,24167,21629,18587,16526,15168,16788,17377,15734,16398,19570,20466,19707,22270,19562,21045,21954,23655,19728,22978,23613,22559,25199,20484,21945,21990,22262,24900,24183,23834,22068,20177,20208,17131,16657,14198,16886,16605,18564,15475,14569,15739,16380
-2019F,IN,P1TXP,18365,18258,19503,19867,20616,21016,21309,19810,21951,21687,22787,23591,23233,24747,23650,21137,20323,21822,24167,21629,18587,16526,15168,16788,17377,15734,16160,19291,20142,19267,21314,19216,20744,21954,23655,19645,22679,22704,21332,24124,19310,21598,21369,21806,24397,23993,23834,22068,20177,20190,17131,15225,13175,15171,14753,16631,14681,14569,15739,16380
-2019F,IN,PAACP,47570,47935,50375,51633,52411,54526,57211,58896,62226,65007,68501,70855,76738,80132,78053,78510,82281,83675,85796,85611,80236,81326,78244,79547,92381,93895,99357,103931,100729,103105,103991,102071,100570,105682,109824,113238,109703,110225,112085,114760,120205,110541,118456,122442,116877,117740,120030,117609,111053,108029,109532,107498,106003,110853,113137,113763,113172,108833,107101,105985
-2019F,IN,PACCP,5368,5021,4970,5086,5123,5368,5138,4877,5191,5116,5015,5849,6219,6291,6067,5845,7163,7432,7277,5673,5175,1944,2193,5413,5467,3964,3195,2777,2691,2779,2428,2299,2329,2567,2322,1948,1968,2115,2317,2187,2240,2432,2415,2844,2826,2251,2049,1789,2547,2588,1939,1987,1835,1994,2056,3030,2926,2705,3076,3347
-2019F,IN,PAEIP,232,181,143,135,162,142,132,172,261,304,716,861,1182,1591,3358,1821,1585,2301,4080,1450,730,743,525,356,306,414,562,632,703,810,1379,698,565,393,412,424,652,1230,1674,1630,1704,733,944,814,784,513,267,284,308,267,256,1720,1231,1961,2161,2196,985,199,215,234
-2019F,IN,PAICP,39256,38360,37702,38693,39323,41774,41748,40700,43902,42268,42060,44445,46262,49737,49638,46015,51109,55119,53824,48286,38831,32256,27890,24566,25191,25082,28017,30532,29091,29914,34778,32118,32387,32036,33295,27972,30481,29864,28373,29982,27020,29979,30062,31377,34402,34065,33571,32749,29182,28624,23279,22369,20910,22567,22200,23735,21779,22288,23310,24827
-2019F,IN,PARCP,15383,14975,15524,15428,14390,14740,14937,14498,15629,16755,16339,16900,18603,17818,16567,16202,17914,17895,17818,12260,9328,8018,7512,6329,6217,5522,6097,6493,6935,7417,5860,5829,5578,6237,5733,5557,6924,6699,5134,6957,6511,4938,6398,6964,5818,5070,4218,4929,5909,5436,4869,4671,3354,3901,3961,3275,3099,2986,3738,3993
-2019F,IN,PATCP,107809,106472,108714,110976,111409,116551,119165,119142,127209,129450,132631,138911,149004,155569,153682,148392,160052,166421,168795,153280,134300,124287,116364,116211,129562,128876,137227,144365,140148,144025,148436,143014,141430,146916,151586,149138,149727,150132,149582,155515,157680,148622,158275,164440,160707,159639,160135,157360,148999,144944,139875,138246,133333,141276,143515,145999,141961,137011,137440,138385
-2019F,IN,PATPP,23.1,22.5,23,23.1,22.9,23.7,23.8,23.6,25,25.2,25.5,26.4,28.1,29.1,28.7,27.7,29.7,30.7,30.9,27.9,24.5,22.7,21.3,21.3,23.7,23.6,25.2,26.4,25.5,26.1,26.7,25.5,24.9,25.6,26.2,25.5,25.4,25.2,24.9,25.7,25.9,24.3,25.7,26.5,25.8,25.4,25.3,24.7,23.2,22.4,21.6,21.2,20.4,21.5,21.8,22.1,21.4,20.6,20.5,20.6
-2019F,IN,PATXP,107577,106291,108572,110841,111247,116408,119033,118970,126948,129146,131915,138050,147822,153979,150325,146571,158467,164120,164715,151830,133570,123544,115839,115855,129256,128462,136666,143734,139445,143215,147057,142316,140865,146523,151175,148714,149076,148902,147908,153885,155977,147889,157332,163627,159923,159126,159868,157076,148691,144677,139619,136525,132102,139315,141354,143803,140977,136812,137225,138151
-2019F,IN,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,PCEIP,0,0,0,0,0,0,0,0,0,0,255,175,200,630,615,0,0,0,0,0,0,0,0,0,0,0,239,279,324,440,956,346,301,0,0,82,298,908,1227,1075,1174,347,620,456,503,190,0,0,0,18,0,1432,1022,1715,1852,1933,794,0,0,0
-2019F,IN,PCICP,2398,2576,2473,2560,2867,3087,3618,3590,3399,3775,3318,3468,3732,4123,3933,4223,3532,3922,3437,2589,2773,3847,3203,2781,3267,3279,3238,4005,4282,3961,4090,3985,4966,4231,4516,4383,4608,3899,5572,6914,5196,6977,6468,6222,8500,8190,9112,8203,8556,9102,5983,4798,5229,4064,4091,5367,3211,2330,3668,3932
-2019F,IN,PCTCP,2398,2576,2473,2560,2867,3087,3618,3590,3399,3775,3572,3643,3932,4753,4548,4223,3532,3922,3437,2589,2773,3847,3203,2781,3267,3279,3476,4285,4606,4401,5046,4331,5267,4231,4516,4465,4906,4807,6799,7989,6370,7324,7088,6678,9003,8380,9112,8203,8556,9120,5983,6230,6251,5779,5943,7300,4005,2330,3668,3932
-2019F,IN,PCTXP,2398,2576,2473,2560,2867,3087,3618,3590,3399,3775,3318,3468,3732,4123,3933,4223,3532,3922,3437,2589,2773,3847,3203,2781,3267,3279,3238,4005,4282,3961,4090,3985,4966,4231,4516,4383,4608,3899,5572,6914,5196,6977,6468,6222,8500,8190,9112,8203,8556,9102,5983,4798,5229,4064,4091,5367,3211,2330,3668,3932
-2019F,IN,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54,57,47,54,97,68,80,37,31,25
-2019F,IN,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,605,778,549,748,641,647,536,563,837,1004
-2019F,IN,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1662,1603,1732,2105,1927,1419,1286,1244,1156,1393
-2019F,IN,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4505,4330,3098,3665,3713,3032,2899,2802,3520,3744
-2019F,IN,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6827,6768,5426,6572,6378,5167,4802,4646,5545,6166
-2019F,IN,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6827,6768,5426,6572,6378,5167,4802,4646,5545,6166
-2019F,IN,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,IN,RFACP,350,559,764,821,875,583,521,666,410,402,330,240,177,128,290,331,312,305,191,131,200,189,26,91,164,31,49,113,154,210,195,89,206,336,223,235,293,395,303,246,302,171,246,77,161,192,177,287,370,100,127,212,146,101,96,101,192,451,131,211
-2019F,IN,RFCCP,1394,1096,949,1105,1276,1520,1326,1067,1184,915,844,1522,1501,1655,1770,1645,2509,2633,2562,2207,2431,78,89,1074,717,388,243,278,241,350,62,204,18,37,40,32,14,9,121,2,2,1,1,63,114,112,0,4,2,9,0,0,0,0,0,0,0,0,8,1
-2019F,IN,RFEIP,103,80,63,60,72,63,58,76,115,134,204,425,670,789,2478,1344,1167,1655,3244,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,RFICP,11229,10510,8947,8812,9163,10866,10234,9664,9848,8144,8391,10222,12110,13080,13676,11688,15606,16317,14414,14873,11984,7295,4565,1840,1228,3348,4016,3203,2735,2668,3570,2927,3843,2514,2737,1567,1022,1075,738,314,464,392,171,312,532,554,923,314,366,129,77,39,80,46,47,67,84,127,94,59
-2019F,IN,RFTCP,13076,12246,10723,10798,11385,13033,12139,11472,11557,9596,9769,12409,14458,15652,18213,15007,19594,20910,20410,18116,14615,7563,4680,3005,2108,3768,4308,3594,3130,3228,3827,3220,4066,2887,3000,1833,1328,1478,1162,562,767,564,419,453,809,858,1101,605,738,237,204,250,225,147,144,169,277,578,233,270
-2019F,IN,RFTXP,12973,12166,10660,10738,11313,12970,12080,11396,11442,9461,9565,11984,13788,14863,15736,13663,18427,19255,17166,17210,14615,7563,4680,3005,2108,3768,4308,3594,3130,3228,3827,3220,4066,2887,3000,1833,1328,1478,1162,562,767,564,418,452,808,858,1101,605,738,237,204,250,225,147,144,169,277,578,233,270
-2019F,IN,SGICP,6666,6257,6466,6246,6323,6345,6511,6398,7492,7909,7763,6689,6872,6799,6628,6597,6562,6913,7016,6891,6511,5800,6003,6033,5949,5838,6670,6604,7010,7097,7056,7148,7750,6828,6910,6531,6822,6706,6458,6357,6404,6515,6397,6615,6561,6579,6595,6397,6107,6210,6249,5275,2847,6367,6240,6050,6108,5997,6289,6034
-2019F,IN,SNICP,0,0,0,0,511,553,613,510,547,599,636,478,512,518,514,442,501,522,628,636,611,405,377,443,592,455,371,413,325,306,306,477,567,567,440,384,274,265,394,534,358,253,330,259,165,202,205,228,248,135,76,66,43,216,229,214,202,397,364,378
-2019F,IN,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,6,7,7,17,66,73
-2019F,IN,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,102,156,226,278,291,321
-2019F,IN,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,3
-2019F,IN,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,5,9,16,29,54
-2019F,IN,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,36,111,168,243,313,389,450
-2019F,IN,TPOPP,4674,4730,4736,4799,4856,4922,4999,5053,5093,5143,5202,5253,5302,5338,5362,5366,5389,5426,5470,5501,5491,5480,5468,5450,5458,5459,5454,5473,5492,5524,5558,5616,5675,5739,5794,5851,5906,5955,5999,6045,6092,6128,6156,6197,6233,6279,6333,6380,6425,6459,6491,6517,6539,6571,6596,6611,6638,6662,6698,6731
-2019F,IN,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1487,-1778,-1045,-1699,-1691,-1726,-1753,-1361,-1885,-1820,-2324,-1958,-1947,-1381,-1523,-552,-491,-1453,-1312,-1827,-345,-612,-224,-330,13,308,281,-230,-342,122,205,119,71,-341,-74,35,312,130,577
-2019F,IN,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,WXICP,31,31,28,27,25,27,70,69,78,82,83,76,78,100,98,87,103,86,89,87,85,65,51,56,55,56,55,59,61,60,60,204,216,232,236,236,301,271,262,232,205,249,220,212,210,215,220,184,161,103,144,127,129,126,113,94,98,97,118,99
-2019F,IN,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0
-2019F,IN,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,1403,2932,3284,3209,3480,3495,4514,4899,5089,5437,6216
-2019F,IN,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,IN,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,1403,2934,3285,3210,3481,3496,4515,4899,5089,5437,6216
-2019F,IN,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0
-2019F,KS,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,21,3,0,16,2,0,-5,0,1,0,1,1,24,20,26,33,14,23,14,22,27,26,37,30,2,6,0,-3,-1,0,0,-1,-1,-1,-1,-1,-6,-5
-2019F,KS,ARICP,2198,2718,3034,2859,2979,3061,2860,2349,1984,2046,2188,2554,2385,2628,2743,2162,2343,2597,3378,3164,3019,1869,1890,1450,1928,1700,2657,2614,4378,3109,3875,3721,3715,3635,4741,3911,3581,2115,2699,2358,2470,4157,3767,3077,3572,2299,2311,1967,1374,1501,2524,1397,1544,1425,1328,1422,1211,678,781,847
-2019F,KS,ARTCP,2198,2718,3034,2859,2979,3061,2860,2349,1984,2046,2188,2554,2385,2628,2743,2162,2343,2597,3378,3164,3019,1869,1890,1450,1928,1700,2657,2614,4378,3109,3875,3721,3715,3635,4741,3911,3581,2115,2699,2358,2470,4157,3767,3077,3572,2299,2311,1967,1374,1501,2524,1397,1544,1425,1328,1422,1211,678,781,847
-2019F,KS,ARTXP,2198,2718,3034,2859,2979,3061,2860,2349,1984,2046,2188,2554,2385,2628,2743,2162,2343,2597,3378,3164,3019,1869,1890,1450,1928,1700,2657,2614,4378,3109,3875,3721,3715,3635,4741,3911,3581,2115,2699,2358,2470,4157,3767,3077,3572,2299,2311,1967,1374,1501,2524,1397,1544,1425,1328,1422,1211,678,781,847
-2019F,KS,AVACP,170,173,310,367,426,493,455,373,391,316,326,299,262,212,236,177,231,253,211,244,221,214,190,176,154,137,162,121,148,156,136,124,142,151,142,146,177,247,199,240,215,196,127,102,115,214,218,165,184,134,175,153,72,63,58,64,59,56,60,61
-2019F,KS,AVTCP,170,173,310,367,426,493,455,373,391,316,326,299,262,212,236,177,231,253,211,244,221,214,190,176,154,137,162,121,148,156,136,124,142,151,142,146,177,247,199,240,215,196,127,102,115,214,218,165,184,134,175,153,72,63,58,64,59,56,60,61
-2019F,KS,AVTXP,170,173,310,367,426,493,455,373,391,316,326,299,262,212,236,177,231,253,211,244,221,214,190,176,154,137,162,121,148,156,136,124,142,151,142,146,177,247,199,240,215,196,127,102,115,214,218,165,184,134,175,153,72,63,58,64,59,56,60,61
-2019F,KS,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,5,11,36,104,141,121,128,104,354,349,644,654,536,732,629,597,470
-2019F,KS,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,5,11,36,104,141,121,128,104,354,349,644,654,536,732,629,597,470
-2019F,KS,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,CLACP,3,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,CLCCP,25,17,18,13,9,7,6,4,4,9,4,5,7,4,3,0,0,0,12,24,4,3,10,3,2,1,1,1,0,5,0,0,0,19,28,33,69,2,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,CLEIP,435,341,380,467,412,478,398,398,458,322,344,367,425,1045,1805,2983,3507,4513,7349,7630,10034,11327,11512,12814,15252,14351,14097,14942,14742,14774,15018,14732,14068,17226,16989,16345,18852,17534,17627,18888,20699,20150,22660,22580,22139,22046,20874,22780,21616,20783,20965,20129,17759,18915,18199,15851,14587,12542,13176,11535
-2019F,KS,CLICP,175,192,200,214,192,148,169,109,68,74,103,83,94,133,143,134,90,169,104,218,331,354,372,286,310,363,261,252,208,183,157,148,158,137,137,138,154,137,109,108,134,165,178,158,203,205,237,241,162,105,111,104,88,85,121,115,104,112,117,80
-2019F,KS,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,CLOCP,175,192,200,214,192,148,169,109,68,74,103,83,94,133,143,134,90,169,104,218,331,354,372,286,310,363,261,252,208,183,157,148,158,137,137,138,154,137,109,108,134,165,178,158,203,205,237,241,162,105,111,104,88,85,121,115,104,112,117,80
-2019F,KS,CLRCP,37,25,26,18,13,10,7,5,5,11,6,5,5,2,1,0,0,0,4,6,1,1,2,0,1,0,0,0,0,1,0,0,0,4,5,5,9,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,CLTCP,675,577,625,713,626,644,580,516,536,416,458,459,531,1185,1952,3117,3597,4682,7469,7878,10370,11684,11895,13103,15565,14715,14359,15194,14951,14963,15175,14881,14227,17386,17158,16521,19084,17673,17736,19003,20845,20316,22838,22738,22341,22251,21110,23020,21779,20888,21076,20233,17847,19000,18320,15967,14690,12654,13293,11615
-2019F,KS,CLTXP,240,236,245,245,214,166,182,118,78,95,114,92,105,140,147,134,90,169,120,248,336,357,384,289,313,364,262,252,209,189,157,149,158,160,170,175,232,139,109,115,145,166,178,158,203,205,237,241,162,105,111,104,88,85,121,115,104,112,117,80
-2019F,KS,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,DFACP,3056,3428,3344,3926,3863,3473,3795,3509,4063,4219,4691,5191,5247,5925,6087,5898,5710,6434,7593,10649,10397,9293,9296,9358,9160,9856,8854,11883,11457,10906,11665,10518,9755,10095,9173,12678,10998,10435,10333,10054,9513,9603,11097,11333,11059,12827,13056,14127,14228,14455,13717,13691,13808,16861,18965,17304,15277,15370,16612,16927
-2019F,KS,DFCCP,115,167,164,134,108,109,147,152,157,130,115,110,167,189,191,209,349,346,397,820,360,296,146,919,1129,725,360,299,406,388,329,362,498,647,454,562,554,473,441,474,571,807,636,655,576,244,290,267,301,309,245,279,374,328,331,405,448,517,378,323
-2019F,KS,DFEIP,110,82,111,122,72,71,66,64,135,111,175,178,222,295,603,1539,1100,797,761,575,382,268,264,262,213,195,174,131,161,191,130,153,103,126,129,150,176,163,294,293,269,193,121,147,105,135,122,94,91,86,98,86,78,109,116,110,66,121,118,175
-2019F,KS,DFICP,1405,1416,1528,1326,1340,1553,2047,2029,2201,1888,2515,2855,3297,3806,3810,3532,4749,4720,5316,7132,3476,3538,3934,3428,4210,4058,4816,4731,4696,4572,4545,4568,4510,5121,4906,4818,4825,5268,4850,4824,4478,4902,4470,4947,5402,4936,5498,4901,5480,4616,5084,4556,4470,4409,4850,4658,4926,5030,5388,4780
-2019F,KS,DFRCP,53,77,76,62,50,50,68,70,72,60,53,51,77,88,88,96,161,160,183,379,150,19,173,43,52,68,26,24,31,37,28,23,29,27,25,14,17,35,11,14,17,44,36,18,13,4,3,2,4,4,3,7,8,3,1,4,1,3,2,3
-2019F,KS,DFTCP,4739,5170,5223,5570,5434,5257,6123,5824,6628,6408,7550,8385,9010,10303,10778,11273,12071,12456,14250,19555,14764,13414,13814,14009,14764,14902,14229,17068,16751,16095,16697,15624,14895,16016,14687,18223,16570,16375,15930,15660,14849,15550,16359,17100,17155,18147,18969,19391,20104,19471,19146,18620,18737,21710,24264,22481,20719,21042,22498,22208
-2019F,KS,DFTXP,4629,5088,5112,5448,5361,5186,6057,5759,6493,6297,7375,8206,8787,10008,10175,9734,10970,11659,13489,18980,14382,13146,13549,13747,14551,14707,14055,16936,16590,15904,16567,15472,14792,15890,14557,18073,16394,16212,15636,15367,14580,15357,16238,16953,17050,18012,18847,19297,20013,19385,19049,18533,18659,21601,24147,22371,20652,20920,22380,22033
-2019F,KS,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-3771,-1099,-1617,-4285,-4406,-4250,-4795,-1750,-3456,-4038,-4544,-5077,-6323,-5667,-5102,-2368,-1294,-6765,-3597,-5655,-4651,-1821,-1193,-5806,-6469,-3035,-4111,-8132,-7169,-7317
-2019F,KS,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,-7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,17,151,581,506,486,327,284,276,169,165,163,141,132,106,65,65,80,137,60,56,678,962,96,714,719,1398,2555,2461,2463,2481,2345,2400,2649,2800,2935,2832,2757,2952
-2019F,KS,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,3,3,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,3,0,2,3,3,5,6,6,4,7,3,6,61,58,57,56,58
-2019F,KS,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,5,28,20,16,11,8,8,5,5,4,5,4,4,2,2,3,3,1,2,25,33,4,32,30,46,67,65,50,52,43,43,35,84,95,96,95,91
-2019F,KS,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,18,157,612,529,505,341,294,286,175,170,167,145,137,110,68,68,84,140,62,58,705,999,100,747,753,1448,2628,2532,2518,2538,2396,2446,2690,2945,3088,2985,2909,3101
-2019F,KS,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,ESCCP,1727,1817,2153,2346,2490,2597,2819,2953,3285,3624,3967,4207,4518,4743,4728,5614,5834,6116,6499,6467,6806,7151,7210,7432,7928,8174,8361,8547,9000,9127,9547,9935,9746,10120,10482,10645,11388,12043,12546,12258,13171,13215,13773,13751,13831,14453,14786,15474,15496,15007,15436,15609,15456,15245,15383,15380,15887,15739,16169,15916
-2019F,KS,ESICP,2932,3099,3166,3524,3816,3902,4128,4230,4414,4529,4548,4661,4886,5254,5328,6214,6488,6862,7418,7778,7845,7484,6872,6780,7038,7167,7128,7266,7708,7797,8087,8284,8450,8702,9001,9356,9231,9365,9762,10215,10222,10569,10195,10382,10879,11165,11462,10885,10967,10087,10651,10807,11041,11009,11494,11227,11414,11535,11681,11613
-2019F,KS,ESRCP,2360,2464,2722,3023,3178,3251,3555,3627,4214,4784,5348,5554,5966,6469,6629,5695,5758,5964,6571,6290,7189,7600,7746,8368,8269,8195,8346,8617,9121,8898,9515,9933,8873,9986,10131,10356,10672,10862,11832,11347,12528,12062,12745,12602,12417,13406,13503,13806,13502,13149,14334,14344,13797,13593,13685,13242,13509,13013,14187,13631
-2019F,KS,ESRPP,1081,1113,1220,1364,1439,1474,1616,1651,1902,2140,2378,2472,2644,2855,2921,2497,2502,2570,2813,2676,3035,3187,3226,3464,3411,3376,3431,3524,3705,3598,3834,3975,3504,3906,3926,3981,4082,4122,4447,4237,4651,4464,4697,4628,4541,4883,4887,4960,4808,4642,5015,4998,4781,4696,4716,4549,4638,4471,4871,4680
-2019F,KS,ESTCP,7019,7380,8042,8894,9484,9750,10502,10810,11913,12937,13864,14422,15370,16465,16685,17523,18080,18943,20488,20535,21840,22235,21828,22579,23235,23536,23834,24430,25829,25822,27149,28152,27069,28808,29614,30357,31291,32270,34140,33820,35921,35847,36714,36735,37127,39024,39751,40166,39965,38243,40421,40760,40293,39847,40562,39849,40810,40288,42037,41160
-2019F,KS,ESTPP,3215,3332,3604,4012,4293,4420,4774,4920,5376,5786,6164,6419,6812,7268,7352,7684,7858,8163,8772,8735,9219,9323,9090,9348,9585,9696,9798,9990,10491,10442,10941,11267,10689,11268,11476,11671,11968,12245,12832,12627,13335,13266,13530,13491,13578,14215,14387,14429,14232,13501,14142,14204,13962,13768,13978,13690,14010,13840,14432,14131
-2019F,KS,ESTXP,7019,7380,8042,8894,9484,9750,10502,10810,11913,12937,13864,14422,15370,16465,16685,17523,18080,18943,20488,20535,21840,22235,21828,22579,23235,23536,23834,24430,25829,25822,27149,28152,27069,28808,29614,30357,31291,32270,34140,33820,35921,35847,36714,36735,37127,39024,39751,40166,39965,38243,40421,40760,40293,39847,40562,39849,40810,40288,42037,41160
-2019F,KS,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,FSICP,0,0,0,274,255,300,352,327,333,338,373,467,413,356,439,481,480,482,522,334,387,200,162,199,272,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,HLACP,215,225,281,327,261,295,392,457,487,434,348,396,386,378,391,364,416,398,453,165,110,239,239,284,103,95,101,111,140,185,142,108,99,100,151,56,23,97,26,23,30,56,50,51,43,77,40,41,70,69,24,15,13,14,12,11,11,7,76,21
-2019F,KS,HLCCP,446,473,513,526,465,517,478,532,586,628,624,599,626,616,572,591,608,601,550,319,270,211,208,248,131,190,156,166,186,188,153,169,140,141,136,190,255,308,328,432,336,242,291,277,291,294,138,267,462,401,484,315,217,292,444,393,308,309,225,346
-2019F,KS,HLICP,1321,1239,1365,1592,1470,1530,1581,1769,2026,2498,1985,1923,2219,2496,2845,3125,4013,4229,3590,6801,5844,5280,9817,9486,25402,22687,15093,14490,17201,16996,14032,11649,15448,6885,6364,3140,8100,11657,11109,17786,14315,8865,7962,14062,12142,153,66,15167,375,477,393,640,533,596,432,542,381,455,458,554
-2019F,KS,HLRCP,3609,3831,4151,4259,3758,4179,3870,4305,4739,5078,5052,4850,5063,4981,4632,4778,4916,4859,4453,2577,2181,1708,1684,2003,1057,1538,1265,1346,1502,1521,1238,1366,1129,1143,1104,1538,2064,2494,2657,3499,2720,1959,2356,2553,2332,2244,1630,2117,2744,2594,2327,2147,1740,2023,2255,2127,1668,1592,2192,2441
-2019F,KS,HLTCP,5590,5768,6310,6705,5954,6521,6320,7064,7838,8638,8009,7769,8293,8472,8439,8857,9952,10087,9046,9862,8404,7438,11948,12021,26692,24510,16615,16113,19029,18889,15565,13293,16816,8269,7754,4924,10442,14557,14121,21741,17401,11122,10659,16944,14808,2768,1875,17592,3651,3541,3229,3117,2503,2925,3143,3074,2368,2363,2952,3362
-2019F,KS,HLTXP,5590,5768,6310,6705,5954,6521,6320,7064,7838,8638,8009,7769,8293,8472,8439,8857,9952,10087,9046,9862,8404,7438,11948,12021,26692,24510,16615,16113,19029,18889,15565,13293,16816,8269,7754,4924,10442,14557,14121,21741,17401,11122,10659,16944,14808,2768,1875,17592,3651,3541,3229,3117,2503,2925,3143,3074,2368,2363,2952,3362
-2019F,KS,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,HYEGP,20,16,15,17,13,13,13,9,10,6,7,7,5,3,7,5,5,3,5,4,8,8,7,6,7,9,8,9,12,10,13,11,10,5,10,11,11,14,11,12,15,26,13,12,13,11,10,11,11,13,13,15,10,15,16,19,31,29,26,20
-2019F,KS,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,HYTCP,20,16,15,17,13,13,13,9,10,6,7,7,5,3,7,5,5,3,5,4,8,8,7,6,7,9,8,9,12,10,13,11,10,5,10,11,11,14,11,12,15,26,13,12,13,11,10,11,11,13,13,15,10,15,16,19,31,29,26,20
-2019F,KS,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,JFACP,952,970,1042,1072,1242,1053,1147,1606,1745,1685,1561,1525,1452,1399,1404,1310,1239,1426,1506,1922,2466,2442,1834,1492,3338,4424,7038,4285,4176,3833,3701,3296,4164,3617,1981,2414,2009,2131,2159,3476,3234,2259,2135,3228,3104,1758,1752,1543,1735,2447,1419,1398,1415,629,1181,740,1056,817,1010,861
-2019F,KS,JFTCP,952,970,1042,1072,1242,1053,1147,1606,1745,1685,1561,1525,1452,1399,1404,1310,1239,1426,1506,1922,2466,2442,1834,1492,3338,4424,7038,4285,4176,3833,3701,3296,4164,3617,1981,2414,2009,2131,2159,3476,3234,2259,2135,3228,3104,1758,1752,1543,1735,2447,1419,1398,1415,629,1181,740,1056,817,1010,861
-2019F,KS,JFTXP,952,970,1042,1072,1242,1053,1147,1606,1745,1685,1561,1525,1452,1399,1404,1310,1239,1426,1506,1922,2466,2442,1834,1492,3338,4424,7038,4285,4176,3833,3701,3296,4164,3617,1981,2414,2009,2131,2159,3476,3234,2259,2135,3228,3104,1758,1752,1543,1735,2447,1419,1398,1415,629,1181,740,1056,817,1010,861
-2019F,KS,KSCCP,87,97,64,60,51,367,160,39,51,47,33,18,22,22,18,17,46,62,34,94,10,5,7,10,8,10,9,15,10,16,6,4,4,7,4,6,5,28,9,4,5,7,5,5,8,14,9,4,2,2,2,1,1,1,1,0,0,0,0,1
-2019F,KS,KSICP,306,101,144,117,154,160,223,350,351,370,157,101,52,38,32,23,32,53,57,375,477,225,201,142,73,20,47,38,12,22,10,11,15,10,6,10,13,19,23,10,11,20,16,4,3,96,2,3,10,16,11,2,1,0,1,2,1,0,1,1
-2019F,KS,KSRCP,303,341,223,210,180,1285,560,138,177,166,116,64,76,77,64,60,161,218,119,329,5,10,18,29,33,27,18,19,20,18,11,10,13,20,8,13,19,12,18,346,20,14,10,11,10,10,5,2,1,3,2,1,0,0,1,0,9,0,1,1
-2019F,KS,KSTCP,696,539,431,388,386,1813,944,528,578,584,306,183,150,137,114,100,238,333,210,798,492,240,226,182,114,57,75,72,42,56,27,24,33,36,17,28,37,58,50,360,36,41,31,20,22,119,15,10,14,20,15,4,2,2,3,2,10,1,2,2
-2019F,KS,KSTXP,696,539,431,388,386,1813,944,528,578,584,306,183,150,137,114,100,238,333,210,798,492,240,226,182,114,57,75,72,42,56,27,24,33,36,17,28,37,58,50,360,36,41,31,20,22,119,15,10,14,20,15,4,2,2,3,2,10,1,2,2
-2019F,KS,LUACP,507,493,484,484,508,467,485,468,514,439,448,508,544,612,586,520,578,603,647,677,603,579,528,552,589,549,537,607,585,600,618,553,563,574,600,589,572,604,633,639,630,577,570,527,534,531,517,534,496,446,280,262,246,276,296,305,274,244,239,239
-2019F,KS,LUICP,230,224,206,206,217,303,315,243,267,203,207,230,246,321,307,253,282,408,438,458,408,391,357,373,398,371,363,410,396,406,418,374,381,388,405,398,387,408,428,432,426,390,385,356,361,359,350,361,335,302,189,183,165,158,172,176,166,157,152,141
-2019F,KS,LUTCP,737,717,690,690,724,770,799,711,781,643,655,738,790,933,894,773,859,1011,1085,1136,1011,970,884,926,987,920,900,1017,981,1006,1035,926,944,962,1005,988,959,1013,1060,1071,1055,967,955,883,895,890,867,896,831,747,469,445,411,433,468,481,440,400,391,379
-2019F,KS,LUTXP,737,717,690,690,724,770,799,711,781,643,655,738,790,933,894,773,859,1011,1085,1136,1011,970,884,926,987,920,900,1017,981,1006,1035,926,944,962,1005,988,959,1013,1060,1071,1055,967,955,883,895,890,867,896,831,747,469,445,411,433,468,481,440,400,391,379
-2019F,KS,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1354,-845,-595,-301,-820,-1242,-525,-261,253,240,-108,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,MGACP,18976,19692,20728,21171,21110,21786,22433,23165,24690,25548,25857,26118,28191,28265,28238,29331,31471,30746,31452,29956,28107,27666,27248,27578,27030,26968,27350,27956,29807,28862,27700,27162,27037,27533,28054,28333,29807,29551,30751,32764,31094,29249,27511,31519,30445,26893,30198,30885,30343,30879,31069,29996,30067,30299,30887,29213,30979,29559,29084,30660
-2019F,KS,MGCCP,179,180,183,188,184,204,198,198,200,201,215,221,236,255,255,268,269,279,282,243,279,256,266,183,164,177,174,190,167,153,162,124,109,55,76,74,99,90,94,61,85,78,43,108,82,74,131,74,62,75,76,54,96,35,70,637,617,599,594,599
-2019F,KS,MGICP,4557,4139,3960,3789,3478,3535,3240,3138,3012,2781,2777,2797,2649,2753,2507,2406,2110,2248,1762,1686,1198,1351,1073,842,1305,1064,929,978,846,837,765,755,675,892,943,995,1021,1055,1156,725,716,969,1017,1094,1289,1195,1275,1020,800,814,626,627,556,539,407,878,999,1005,1007,948
-2019F,KS,MGTCP,23712,24012,24872,25148,24773,25525,25872,26501,27901,28530,28849,29136,31075,31273,31000,32004,33850,33273,33496,31885,29584,29272,28588,28603,28499,28209,28453,29123,30819,29852,28626,28041,27821,28480,29073,29402,30927,30695,32001,33550,31894,30297,28571,32721,31815,28162,31603,31979,31204,31768,31771,30677,30718,30874,31364,30729,32595,31162,30685,32207
-2019F,KS,MGTXP,23712,24012,24872,25148,24773,25525,25872,26501,27901,28530,28849,29136,31075,31273,31000,32004,33850,33273,33496,31885,29584,29272,28588,28603,28499,28209,28453,29123,30819,29852,28626,28041,27821,28480,29073,29402,30927,30695,32001,33550,31894,30297,28571,32721,31815,28162,31603,31979,31204,31768,31771,30677,30718,30874,31364,30729,32595,31162,30685,32207
-2019F,KS,MSICP,0,0,0,0,0,0,0,0,0,0,0,42,43,53,68,91,80,91,79,73,69,193,170,152,130,131,67,67,82,75,68,73,48,45,50,46,125,137,167,157,167,129,138,130,117,116,44,43,46,49,51,53,52,99,106,109,111,130,129,118
-2019F,KS,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,NGACP,42763,42476,34941,46819,30787,49710,56353,57222,59166,63661,73370,74699,80091,72932,74592,69242,63031,56318,63157,53617,52323,47632,42269,32041,36238,38110,32449,30833,42457,43298,40600,32908,29198,33361,31741,34633,38265,39114,32906,31758,29336,25614,36134,33351,28617,28765,25061,24786,23600,26488,24314,23232,19849,22598,24240,21141,18529,19692,29546,24183
-2019F,KS,NGCCP,41175,21767,27337,26600,37412,38472,32268,37141,46232,54062,52632,56246,61286,52674,53461,51705,57310,51815,64532,60931,58880,52036,55470,52535,57516,56522,55730,53609,61120,58554,56045,58571,53973,56023,52253,53122,57229,41482,41788,38952,40297,37560,38802,37781,36779,29616,27505,30546,33531,32512,31799,32117,25452,33198,36154,37047,34757,34612,40249,41320
-2019F,KS,NGEIP,82195,89866,95220,105733,113779,112955,125544,136544,138727,160897,167885,174841,180410,176104,165479,127818,122946,129054,118094,116828,101022,79117,61063,47226,32234,21181,15029,16074,18890,19152,27197,36122,13981,21636,27279,27945,23110,25822,36894,35890,33509,23267,21389,14488,10474,14105,22477,25560,26640,32040,27907,30501,32520,23268,18443,14624,20399,20589,28281,28232
-2019F,KS,NGICP,121405,113262,118118,108045,125641,155087,182207,135144,163053,174287,184490,202559,205602,206282,200118,151590,170580,175131,174152,250447,190819,174644,160314,133864,158343,161304,138890,157895,154036,144253,157829,168131,174543,195688,230957,175470,158390,162398,144869,128185,138627,115877,137803,125356,115860,117713,132132,142555,128797,124864,124047,128383,134005,136077,134699,139742,139570,140582,144818,142528
-2019F,KS,NGRCP,73490,84339,85414,82039,86049,86793,87625,84912,89372,94320,97317,98644,100720,96468,93363,98372,101330,94592,99411,102413,85294,74701,81804,80538,79340,78350,70582,69653,76420,76033,71327,74825,71522,84896,74156,75846,85376,69415,70217,68146,70601,70182,70863,70369,65049,64923,57078,63091,70336,71068,67117,65491,50489,68036,71115,58384,54060,54445,67134,68123
-2019F,KS,NGTCP,361028,351710,361030,369236,393668,443017,483997,450963,496550,547227,575694,606989,628109,604460,587013,498727,515197,506910,519346,584236,488338,428130,400920,346204,363671,355467,312680,328064,352923,341289,352998,370557,343217,391604,416385,367016,362370,338231,326674,302932,312369,272500,304992,281346,256779,255123,264253,286538,282904,286972,275184,279724,262315,283177,284651,270938,267315,269920,310028,304386
-2019F,KS,NGTPP,165.4,158.8,161.8,166.5,178.2,200.8,220,205.3,224.1,244.7,256,270.2,278.4,266.8,258.7,218.7,223.9,218.4,222.4,248.5,206.1,179.5,167,143.3,150,146.4,128.5,134.2,143.3,138,142.3,148.3,135.5,153.2,161.4,141.1,138.6,128.3,122.8,113.1,116,100.8,112.4,103.3,93.9,92.9,95.6,102.9,100.7,101.3,96.3,97.5,90.9,97.8,98.1,93.1,91.8,92.7,106.4,104.5
-2019F,KS,NGTXP,278833,261844,265810,263503,279889,330062,358453,314419,357823,386330,407809,432148,447699,428356,421534,370909,392251,377856,401252,467408,387316,349013,339857,298978,331437,334286,297651,311990,334033,322138,325801,334435,329236,369968,389106,339071,339260,312409,289780,267042,278860,249232,283603,266858,246305,241018,241776,260978,256264,254932,247277,249223,229795,259909,266208,256314,246916,249331,281747,276154
-2019F,KS,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3856,6959,6471,6650,9709,7874,5859,8491,7900,8529,10062,8205,8430,10411,9157,9061,10347,9042,8890,10133,8821,9350,10369,8497,8769,9556,7319,8285,7168,8558,8630,8246,10648,9168,9248
-2019F,KS,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3856,6959,6471,6650,9709,7874,5859,8491,7900,8529,10062,8205,8430,10411,9157,9061,10347,9042,8890,10133,8821,9350,10369,8497,8769,9556,7319,8285,7168,8558,8630,8246,10648,9168,9248
-2019F,KS,OPICP,4679,4557,4733,4878,4755,5018,5453,5445,5756,6151,5638,5220,5449,5676,6082,6119,5845,6104,6174,5959,5778,3804,2980,3749,4000,3198,3641,4159,5202,5344,5341,3568,4065,3322,3925,3701,4376,4351,3596,3729,3382,4560,4272,4654,4512,4810,4967,4897,4691,4625,5119,5219,5340,5186,4783,4835,5253,5810,5744,5982
-2019F,KS,OPTCP,4679,4557,4733,4878,4755,5018,5453,5445,5756,6151,5638,5220,5449,5676,6082,6119,5845,6104,6174,5959,5778,3804,2980,3749,4000,3198,3641,4159,5202,5344,5341,3568,4065,3322,3925,3701,4376,4351,3596,3729,3382,4560,4272,4654,4512,4810,4967,4897,4691,4625,5119,5219,5340,5186,4783,4835,5253,5810,5744,5982
-2019F,KS,OPTXP,4679,4557,4733,4878,4755,5018,5453,5445,5756,6151,5638,5220,5449,5676,6082,6119,5845,6104,6174,5959,5778,3804,2980,3749,4000,3198,3641,4159,5202,5344,5341,3568,4065,3322,3925,3701,4376,4351,3596,3729,3382,4560,4272,4654,4512,4810,4967,4897,4691,4625,5119,5219,5340,5186,4783,4835,5253,5810,5744,5982
-2019F,KS,P1ICP,8535,8722,9209,9083,9289,9711,9967,9587,9637,9971,9170,9149,9541,11008,10830,10702,10706,11516,12047,12010,11857,8278,6974,7389,8036,6855,8456,8925,11722,10617,11399,9355,9931,8814,10481,9415,9538,8050,7931,7835,7577,10358,9677,9324,9601,8852,8885,8424,7561,7632,9114,8097,8415,7921,7458,7677,7917,7921,7930,8156
-2019F,KS,P1TCP,9602,9826,10289,10204,10454,12322,11626,10606,10770,10939,10093,10038,10445,11931,11733,11479,11721,12652,13062,13355,12696,9086,7717,8157,8820,7578,9182,9687,12484,11408,12171,10045,10654,9565,11235,10169,10310,8941,8789,9064,8446,11152,10389,9969,10269,9620,9633,9506,8502,8484,9771,8581,8734,8261,7814,8047,8260,8222,8230,8457
-2019F,KS,P1TXP,9602,9826,10289,10204,10454,12322,11626,10606,10770,10939,10093,10038,10445,11931,11733,11475,11721,12652,13058,13355,12696,9086,7717,8157,8820,7578,9182,9687,12484,11408,12171,10045,10654,9565,11235,10169,10310,8941,8789,9064,8446,11152,10389,9969,10269,9620,9633,9130,8244,8216,9573,8515,8734,8261,7814,8047,8260,8222,8230,8457
-2019F,KS,PAACP,24065,25127,26326,27577,27631,27704,28792,29654,31915,32647,33238,34051,36143,36858,36991,37615,39664,39899,41887,43639,41906,40433,39334,39521,40415,42031,44041,44962,46312,44542,43962,41761,41761,42069,40100,44217,43586,43066,44104,47203,44715,41942,41498,46768,45308,42300,45782,47295,47056,48429,46683,45516,45621,48143,51399,47638,47657,46053,47082,48770
-2019F,KS,PACCP,874,930,946,929,824,1215,1000,939,1014,1028,1022,971,1079,1113,1058,1121,1304,1345,1332,1526,918,768,630,1365,1435,1102,708,670,768,756,677,665,772,880,672,844,915,899,951,971,1001,1140,984,1045,957,627,567,611,826,787,807,649,687,656,846,1436,1373,1425,1198,1268
-2019F,KS,PAEIP,351,263,354,389,231,226,212,205,430,356,560,483,825,1099,1979,5676,5218,4545,4692,2643,875,628,559,530,253,215,188,156,283,246,152,156,104,166,142,151,331,252,298,632,803,1169,923,1675,1615,1857,122,470,349,353,296,152,78,109,116,110,66,121,118,175
-2019F,KS,PAICP,17742,16688,17265,16926,16351,17084,17658,17661,18205,18388,17149,17195,19268,21704,21333,21943,23629,25150,25465,30205,23379,19121,22528,22746,40021,34729,29757,29451,35153,33325,30922,26445,30719,22011,22867,18386,23616,26197,25230,31394,27486,25411,23299,30051,29101,15469,16343,29977,15436,13984,15578,14194,14223,13641,13328,13998,14798,15011,15141,14934
-2019F,KS,PARCP,3966,4248,4449,4531,3988,5515,4498,4513,4989,5304,5221,4965,5216,5146,4783,4934,5238,5237,4755,3285,2335,1737,1876,2075,1142,1633,1309,1388,1554,1576,1277,1400,1171,1190,1136,1565,2101,2541,2686,3859,2757,2017,2401,2583,2355,2257,1638,2121,2749,2601,2332,2156,1748,2026,2257,2131,1679,1596,2194,2444
-2019F,KS,PATCP,46998,47256,49341,50352,49026,51744,52159,52972,56552,57723,57189,57665,62531,65919,66144,71288,75052,76175,78131,81298,69413,62688,64927,66237,83266,79710,76003,76628,84070,80445,76989,70426,74528,66316,64917,65162,70548,72955,73270,84060,76762,71680,69105,82121,79336,62510,64452,80474,66416,66155,65698,62666,62357,64575,67946,65313,65572,64206,65733,67592
-2019F,KS,PATPP,21.5,21.3,22.1,22.7,22.2,23.5,23.7,24.1,25.5,25.8,25.4,25.7,27.7,29.1,29.1,31.3,32.6,32.8,33.5,34.6,29.3,26.3,27,27.4,34.3,32.8,31.2,31.3,34.1,32.5,31,28.2,29.4,25.9,25.2,25.1,27,27.7,27.5,31.4,28.5,26.5,25.5,30.2,29,22.8,23.3,28.9,23.7,23.4,23,21.8,21.6,22.3,23.4,22.4,22.5,22.1,22.6,23.2
-2019F,KS,PATXP,46647,46993,48987,49963,48794,51518,51947,52767,56122,57367,56629,57181,61705,64820,64165,65612,69834,71630,73440,78655,68539,62060,64368,65707,83013,79494,75815,76471,83787,80199,76838,70270,74423,66150,64775,65011,70218,72703,72972,83428,75959,70511,68182,80447,77721,60653,64330,80004,66067,65801,65401,62514,62279,64466,67830,65203,65506,64085,65614,67417
-2019F,KS,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,258,268,199,66,0,0,0,0,0,0,0,0
-2019F,KS,PCICP,1122,1122,1092,1022,1185,1168,1115,1200,1280,1200,980,1045,1410,2345,1665,2145,2205,2355,2000,2055,2175,1989,1546,1675,1636,1566,1747,1705,1735,1738,1756,1681,1755,1460,1405,1395,1181,1157,1185,1306,1287,1230,1238,1233,1153,1289,1255,1196,1151,1188,1271,1296,1365,1152,1175,1243,1286,1276,1252,1185
-2019F,KS,PCTCP,1122,1122,1092,1022,1185,1168,1115,1200,1280,1200,980,1045,1410,2345,1665,2149,2205,2355,2004,2055,2175,1989,1546,1675,1636,1566,1747,1705,1735,1738,1756,1681,1755,1460,1405,1395,1181,1157,1185,1306,1287,1230,1238,1233,1153,1289,1255,1572,1409,1456,1470,1362,1365,1152,1175,1243,1286,1276,1252,1185
-2019F,KS,PCTXP,1122,1122,1092,1022,1185,1168,1115,1200,1280,1200,980,1045,1410,2345,1665,2145,2205,2355,2000,2055,2175,1989,1546,1675,1636,1566,1747,1705,1735,1738,1756,1681,1755,1460,1405,1395,1181,1157,1185,1306,1287,1230,1238,1233,1153,1289,1255,1196,1151,1188,1271,1296,1365,1152,1175,1243,1286,1276,1252,1185
-2019F,KS,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,15,13,14,12,11,11,7,76,21
-2019F,KS,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,484,315,217,292,444,393,308,309,225,346
-2019F,KS,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,393,640,533,596,432,542,381,455,458,554
-2019F,KS,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2327,2147,1740,2023,2255,2127,1668,1592,2192,2441
-2019F,KS,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3229,3117,2503,2925,3143,3074,2368,2363,2952,3362
-2019F,KS,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3229,3117,2503,2925,3143,3074,2368,2363,2952,3362
-2019F,KS,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KS,RFACP,190,146,136,229,220,137,85,76,25,6,8,13,62,66,50,17,20,40,24,26,2,1,0,82,43,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,0,1,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,RFCCP,47,12,22,21,16,19,16,18,21,22,34,22,29,31,22,36,32,57,70,50,0,0,3,5,3,0,9,0,1,10,27,7,22,30,2,12,2,0,79,0,3,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,RFEIP,241,181,244,267,159,156,146,141,295,244,385,305,603,804,1376,4134,4118,3748,3927,2068,492,360,295,268,39,20,15,25,121,54,22,4,2,40,12,1,155,89,4,339,533,976,802,1528,1510,1722,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,RFICP,1924,1172,1203,1136,774,755,824,1137,1328,1251,701,471,1562,1640,1342,2178,2050,2437,2750,2574,1004,675,730,1601,1068,66,464,327,689,303,181,117,155,299,173,18,133,168,184,223,401,317,172,624,667,333,619,464,1220,444,361,274,250,176,180,243,574,600,358,497
-2019F,KS,RFTCP,2403,1511,1605,1653,1169,1066,1070,1372,1670,1523,1127,811,2256,2541,2791,6365,6220,6282,6771,4718,1498,1037,1028,1956,1154,86,487,353,811,367,229,128,178,369,187,31,289,257,269,570,937,1301,991,2160,2184,2055,619,464,1220,445,361,274,250,176,180,243,574,600,358,497
-2019F,KS,RFTXP,2161,1330,1362,1386,1010,910,925,1231,1375,1279,743,506,1653,1736,1415,2231,2102,2534,2844,2651,1006,676,732,1688,1115,66,473,328,690,313,208,124,177,328,175,30,134,168,265,231,404,325,188,632,674,333,619,464,1220,445,361,274,250,176,180,243,574,600,358,497
-2019F,KS,SGICP,4591,4470,4654,4529,4342,4548,4731,4797,5073,5434,4869,4534,4807,5057,5368,5364,4973,5231,5228,5205,4987,5605,4243,4157,4539,4274,5371,5035,5709,5806,5773,5200,4845,4430,4689,4617,4490,4414,4269,4322,4354,4517,4376,4525,4488,4546,4580,4519,4688,4767,4913,4922,5035,4899,4801,4655,4992,5287,5398,5253
-2019F,KS,SNICP,0,0,0,0,87,94,280,233,250,274,290,100,107,108,107,92,197,206,248,251,241,288,268,315,421,324,598,666,525,494,493,45,53,53,41,36,37,36,53,72,48,78,102,80,51,62,84,93,101,55,31,27,18,114,121,114,107,108,99,103
-2019F,KS,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,5,10,15
-2019F,KS,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,5,8,11
-2019F,KS,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,6,11,17,23
-2019F,KS,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,6,11,22,35,50
-2019F,KS,TPOPP,2183,2215,2231,2217,2209,2206,2200,2197,2216,2236,2249,2247,2256,2266,2269,2281,2301,2321,2336,2351,2369,2385,2401,2416,2424,2427,2433,2445,2462,2473,2481,2499,2532,2557,2581,2601,2615,2635,2661,2678,2694,2702,2714,2723,2734,2745,2763,2784,2808,2833,2858,2870,2886,2894,2902,2911,2913,2911,2913,2913
-2019F,KS,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1437,-1257,-720,-1296,-1238,-1390,-1336,-1109,-1542,-1489,-1690,-1224,-1264,-937,-1077,-363,-323,-961,-892,-1242,-239,-419,-153,-226,9,214,199,-176,-262,96,191,210,55,-263,-57,29,275,112,503
-2019F,KS,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,WXICP,88,87,79,75,71,76,90,89,100,105,106,78,80,103,101,90,114,95,98,96,94,280,219,238,236,241,235,251,261,257,256,50,53,56,57,57,61,55,53,47,42,54,48,46,46,47,43,36,31,20,28,25,25,20,18,15,16,11,13,11
-2019F,KS,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,16,17
-2019F,KS,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,467,366,359,426,992,1153,1759,2863,3405,3720,5195,9433,10845,10999,14111,18583,18892,21107
-2019F,KS,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KS,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,467,366,359,426,992,1153,1759,2863,3405,3720,5195,9433,10845,10999,14111,18598,18908,21124
-2019F,KS,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,16,17
-2019F,KY,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,15,2,0,11,2,0,-3,0,1,0,0,0,18,15,20,26,11,18,11,17,21,20,28,23,2,5,0,-2,-1,0,0,-1,0,-1,-1,-1,-5,-4
-2019F,KY,ARICP,1482,1557,1759,2099,1532,2112,2169,2376,2778,3112,3090,3115,3018,3626,2576,2622,2671,2799,2958,2956,2021,1933,2896,2101,2170,1872,2285,2701,2616,2764,3032,2801,2537,2550,2843,2778,2714,3417,3199,4191,3974,3334,3490,3817,3326,3878,3424,3476,2549,2794,2836,2768,3460,2515,3340,2369,2596,1398,1915,1956
-2019F,KY,ARTCP,1482,1557,1759,2099,1532,2112,2169,2376,2778,3112,3090,3115,3018,3626,2576,2622,2671,2799,2958,2956,2021,1933,2896,2101,2170,1872,2285,2701,2616,2764,3032,2801,2537,2550,2843,2778,2714,3417,3199,4191,3974,3334,3490,3817,3326,3878,3424,3476,2549,2794,2836,2768,3460,2515,3340,2369,2596,1398,1915,1956
-2019F,KY,ARTXP,1482,1557,1759,2099,1532,2112,2169,2376,2778,3112,3090,3115,3018,3626,2576,2622,2671,2799,2958,2956,2021,1933,2896,2101,2170,1872,2285,2701,2616,2764,3032,2801,2537,2550,2843,2778,2714,3417,3199,4191,3974,3334,3490,3817,3326,3878,3424,3476,2549,2794,2836,2768,3460,2515,3340,2369,2596,1398,1915,1956
-2019F,KY,AVACP,652,708,1698,1144,1220,1052,920,602,328,328,330,179,161,144,148,129,128,110,106,136,112,92,89,95,73,66,85,62,62,53,51,51,55,40,46,44,47,28,62,33,32,90,69,60,70,70,65,64,48,41,34,32,30,26,30,30,31,35,36,43
-2019F,KY,AVTCP,652,708,1698,1144,1220,1052,920,602,328,328,330,179,161,144,148,129,128,110,106,136,112,92,89,95,73,66,85,62,62,53,51,51,55,40,46,44,47,28,62,33,32,90,69,60,70,70,65,64,48,41,34,32,30,26,30,30,31,35,36,43
-2019F,KY,AVTXP,652,708,1698,1144,1220,1052,920,602,328,328,330,179,161,144,148,129,128,110,106,136,112,92,89,95,73,66,85,62,62,53,51,51,55,40,46,44,47,28,62,33,32,90,69,60,70,70,65,64,48,41,34,32,30,26,30,30,31,35,36,43
-2019F,KY,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,9,18,61,175,237,203,215,174,593,534,839,761,646,957,781,746,572
-2019F,KY,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,9,18,61,175,237,203,215,174,593,534,839,761,646,957,781,746,572
-2019F,KY,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KY,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KY,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KY,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KY,CLACP,64,17,15,18,18,16,15,12,10,7,7,5,4,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,CLCCP,298,348,282,328,253,206,248,210,229,240,233,192,182,219,253,204,213,366,414,597,227,411,341,308,296,194,225,222,282,188,121,153,174,218,243,113,103,315,206,353,170,194,222,177,247,266,119,122,55,48,44,45,31,15,19,15,14,14,5,6
-2019F,KY,CLEIP,7466,7512,7615,9787,11433,12210,12567,13348,14027,15525,18698,20483,22311,22333,23203,22366,25095,24726,24473,23187,24383,25910,24455,24236,25014,27085,28535,28569,31818,29109,30867,31432,31715,35264,34564,35707,37071,38281,38197,39595,40180,41305,38605,38521,39342,40352,41938,41064,42191,39271,41891,42543,38978,39475,39214,34381,32071,27671,28567,25168
-2019F,KY,CLICP,3754,3663,3693,4706,4788,4879,4969,4802,4562,4441,4325,3968,3836,3295,3659,2898,2502,2362,2643,2804,3058,2400,2413,2858,3554,3732,3358,3228,3083,3542,3431,2898,2777,3565,3241,3679,3674,3254,2724,2382,2214,2384,2063,2103,2257,2240,2367,2472,2212,1673,1935,1834,1118,1073,1030,996,782,834,767,689
-2019F,KY,CLKCP,1475,1549,1460,1905,1851,1914,1779,1920,1856,1848,1609,1710,1622,1210,1450,1216,807,770,935,872,906,354,465,1114,1356,1170,1110,1311,1305,1288,1178,854,1129,1173,1247,1429,1352,1343,1332,1276,1119,1027,929,893,929,1028,1045,1124,962,647,753,497,0,0,0,0,0,0,0,0
-2019F,KY,CLOCP,2279,2114,2233,2800,2937,2965,3191,2883,2706,2593,2716,2258,2214,2085,2208,1682,1695,1592,1708,1932,2152,2046,1948,1744,2198,2562,2248,1918,1778,2254,2253,2044,1648,2392,1994,2250,2322,1912,1392,1106,1095,1357,1134,1210,1328,1212,1322,1347,1249,1026,1182,1336,1118,1073,1030,996,782,834,767,689
-2019F,KY,CLRCP,428,501,406,452,349,274,328,278,291,305,296,185,137,129,119,88,87,142,124,149,60,90,70,59,69,55,67,66,80,50,30,34,38,48,43,17,14,39,26,48,21,24,30,26,27,23,12,14,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,CLTCP,12010,12042,12010,15291,16839,17585,18127,18650,19119,20517,23558,24833,26469,25978,27236,25556,27898,27597,27652,26737,27728,28811,27279,27461,28933,31066,32185,32085,35263,32889,34449,34517,34704,39095,38090,39516,40862,41889,41153,42378,42585,43907,40920,40827,41874,42881,44435,43671,44457,40992,43870,44422,40128,40563,40262,35391,32867,28519,29339,25862
-2019F,KY,CLTXP,4545,4530,4396,5503,5407,5375,5560,5302,5092,4993,4860,4350,4158,3645,4032,3190,2802,2871,3180,3550,3345,2901,2824,3225,3919,3981,3650,3516,3445,3780,3582,3085,2989,3831,3526,3809,3791,3609,2956,2783,2405,2602,2315,2306,2532,2529,2497,2607,2266,1721,1979,1879,1150,1088,1048,1011,796,848,772,695
-2019F,KY,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,DFACP,2549,2031,3163,3340,3882,2725,3554,3152,4046,4553,4891,4399,6099,6822,6227,6215,7298,7740,9937,12916,12795,11348,11131,13738,14631,13546,13302,13712,17487,21476,16449,15677,17547,20457,18396,19086,19433,20512,20278,20637,23286,23577,26760,20746,24634,25444,26569,27584,23785,21932,22913,23591,22276,22051,23211,22621,22200,22178,23679,22243
-2019F,KY,DFCCP,501,532,572,447,369,576,671,715,733,734,835,737,701,805,816,915,1387,1967,1810,1721,2632,602,491,1584,1946,1579,1078,587,1028,756,762,714,871,664,900,1114,1193,934,1059,1097,1082,1123,1068,789,804,773,749,661,552,409,331,391,401,451,521,675,1178,624,739,838
-2019F,KY,DFEIP,0,0,0,0,0,0,0,0,0,1,4,7,16,6,6,7,121,90,68,10,227,323,295,246,302,270,236,225,202,230,212,228,195,214,317,282,308,266,292,263,309,225,335,310,255,230,193,242,255,281,230,249,226,222,244,244,212,191,180,169
-2019F,KY,DFICP,1558,1630,1836,1519,1282,1987,2381,2553,2053,2199,2078,2286,2415,2719,2973,3346,4174,6302,6412,5813,6433,5347,4918,4185,5140,5838,5249,6006,5498,5578,6054,5213,5746,5275,5829,6120,6097,5682,5889,4946,4436,5340,5252,4368,4154,4609,5012,4750,6234,6091,5878,6727,5674,5457,4161,3436,3405,3052,3418,3719
-2019F,KY,DFRCP,242,257,276,216,178,278,324,345,354,354,403,356,338,389,394,442,669,949,873,830,820,572,647,679,834,856,718,837,934,868,748,701,763,782,743,723,662,658,585,523,527,456,405,500,440,370,255,245,231,321,113,270,80,106,101,111,93,91,73,87
-2019F,KY,DFTCP,4850,4450,5847,5521,5712,5567,6930,6766,7186,7841,8211,7785,9569,10740,10416,10924,13649,17049,19099,21290,22906,18192,17482,20433,22853,22088,20584,21367,25148,28907,24226,22533,25122,27392,26186,27325,27693,28052,28104,27466,29641,30721,33820,26713,30286,31426,32777,33482,31057,29034,29464,31229,28658,28288,28238,27086,27087,26137,28089,27055
-2019F,KY,DFTXP,4849,4449,5847,5521,5711,5567,6929,6766,7186,7840,8208,7778,9553,10734,10410,10917,13528,16959,19032,21280,22679,17868,17187,20187,22551,21818,20348,21142,24947,28678,24014,22305,24927,27178,25868,27042,27385,27786,27811,27203,29331,30496,33485,26403,30031,31196,32584,33240,30802,28753,29234,30980,28431,28066,27994,26842,26875,25946,27909,26886
-2019F,KY,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0
-2019F,KY,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-5362,-3606,-1880,-8217,-2801,-2253,-1935,-5457,-6212,-3748,-5205,-6909,5076,3164,2604,1764,-50,2977,3103,5108,2412,-2343,5715,1110,-6540,-2161,-515,4302,2541,8059
-2019F,KY,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0
-2019F,KY,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,44,232,719,1014,1553,1791,1554,1134,815,804,944,597,251,126,131,155,93,86,66,93,608,1355,1179,2637,2721,3365,4338,4789,4892,4865,5042,5133,5042,4878,5000,5040,4983,5049
-2019F,KY,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,10,15,18,15,11,9,6,6,1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,4,4,4,4,4,5,4,71,75,77,77,79
-2019F,KY,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,22,31,36,28,23,17,16,19,14,6,3,4,4,2,1,1,3,22,51,49,109,122,73,67,73,71,72,70,72,52,51,54,56,55,55
-2019F,KY,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,45,234,736,1046,1599,1845,1597,1167,841,826,969,611,258,130,134,159,94,88,67,97,630,1407,1229,2748,2845,3440,4409,4867,4967,4941,5116,5209,5098,5001,5129,5172,5115,5183
-2019F,KY,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,372,5816,6265,5497,6401,7251,7251
-2019F,KY,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,372,5816,6265,5497,6401,7251,7251
-2019F,KY,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,ESCCP,1590,1651,1759,1850,1998,2166,2348,2525,2829,3117,3465,3701,4224,4638,5301,6489,6887,7533,7702,7954,8432,8755,9017,9377,9288,9465,9913,10248,10821,11392,11740,12610,12198,12606,12956,13521,13736,15238,15921,16496,17252,17601,18107,17946,18443,19091,18941,20035,19669,18734,19411,18721,18756,21004,19157,19589,19981,19293,19980,19612
-2019F,KY,ESICP,23818,23574,22620,23125,22188,20893,20283,19735,21386,21007,20586,22062,26662,27594,26606,31006,35242,34347,29528,30500,28280,27364,24377,23323,28594,26564,24476,24459,26446,30173,32543,32939,37084,36320,40049,40490,41930,40600,38260,40054,37689,38676,43812,42570,42891,43314,43853,44366,46198,43602,45022,43619,44196,36972,32283,30281,28234,28459,28917,29161
-2019F,KY,ESRCP,2760,2878,3015,3166,3485,3763,4184,4473,5520,6318,6987,7547,7079,7982,8109,9586,10034,11479,12027,11974,13075,13700,13697,14461,14675,14539,15307,16080,16811,16922,16814,18644,17787,19223,19481,20537,21353,20998,21669,22548,23374,23698,25347,24704,25187,26947,25949,28004,27562,26561,29137,27198,26097,26788,27400,26168,26338,24883,27713,26573
-2019F,KY,ESRPP,908,942,979,1022,1114,1198,1329,1410,1728,1976,2163,2288,2122,2368,2373,2764,2843,3212,3332,3288,3568,3733,3718,3914,3971,3935,4151,4366,4568,4602,4552,5009,4724,5043,5061,5283,5448,5312,5437,5612,5773,5825,6198,6000,6075,6442,6150,6579,6425,6152,6700,6223,5947,6079,6203,5908,5932,5585,6208,5942
-2019F,KY,ESTCP,28168,28103,27394,28140,27671,26821,26815,26732,29735,30442,31038,33310,37965,40214,40016,47081,52163,53359,49257,50428,49787,49819,47090,47161,52556,50568,49696,50787,54078,58487,61097,64194,67068,68149,72485,74548,77019,76836,75850,79098,78316,79975,87267,85220,86521,89351,88743,92404,93428,88897,93569,89538,89048,84764,78839,76039,74554,72634,76611,75345
-2019F,KY,ESTPP,9263,9202,8897,9089,8843,8542,8521,8428,9307,9519,9606,10100,11381,11929,11713,13577,14780,14931,13645,13847,13587,13573,12784,12765,14222,13686,13476,13788,14695,15905,16539,17246,17811,17877,18832,19177,19650,19439,19032,19686,19342,19659,21337,20699,20868,21362,21033,21708,21779,20592,21518,20485,20294,19234,17849,17168,16790,16302,17161,16847
-2019F,KY,ESTXP,28168,28103,27394,28140,27671,26821,26815,26732,29735,30442,31038,33310,37965,40214,40016,47081,52163,53359,49257,50428,49787,49819,47090,47161,52556,50568,49696,50787,54078,58487,61097,64194,67068,68149,72485,74548,77019,76836,75850,79098,78316,79975,87267,85220,86521,89351,88743,92404,93428,88897,93569,89538,89048,84764,78839,76039,74554,72634,76611,75345
-2019F,KY,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,6,5,4,4,1,2
-2019F,KY,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,6,5,4,4,1,2
-2019F,KY,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,FSICP,0,0,0,72,75,99,123,110,110,119,155,200,176,143,161,177,186,177,194,180,209,108,111,137,179,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,HLACP,34,34,38,45,50,36,51,68,91,85,54,64,64,73,73,66,71,78,92,28,13,85,277,329,291,98,81,71,73,73,65,52,57,56,93,47,50,58,19,26,56,65,139,61,81,92,115,92,139,89,27,30,25,21,19,20,22,10,7,8
-2019F,KY,HLCCP,227,212,233,276,233,259,301,345,429,524,545,557,604,663,612,607,632,636,637,376,335,304,247,294,219,258,268,383,348,361,296,349,329,381,369,367,492,490,372,454,450,299,324,382,409,310,308,243,498,366,324,507,417,475,379,349,351,390,501,716
-2019F,KY,HLICP,2476,2702,3006,3299,3856,3957,4035,4215,4848,5481,5562,5762,6972,7399,7424,6511,6682,6928,7550,8009,7784,5638,5045,4698,3905,3574,3098,3904,4121,3641,3941,4125,3986,2997,2909,2902,3589,5148,4805,5962,6638,7698,8429,6038,6886,7427,7376,7393,6833,5611,11859,11953,12054,7624,8060,8577,7586,8454,9300,9335
-2019F,KY,HLRCP,1416,1327,1454,1723,1453,1617,1882,2155,2682,3276,3403,3480,3772,4142,3820,3793,3945,3973,3976,2348,2092,1897,1543,1836,1366,1609,1672,2392,2176,2254,1851,2182,2055,2380,2302,2291,3076,3061,2321,2837,2814,1867,2025,2348,2246,2148,1955,2113,2429,2536,2649,2361,1625,1811,2181,2079,1514,1165,1542,2133
-2019F,KY,HLTCP,4152,4276,4730,5343,5592,5869,6269,6783,8051,9366,9564,9864,11412,12277,11929,10977,11330,11616,12254,10761,10223,7924,7112,7156,5782,5539,5118,6750,6719,6329,6154,6709,6427,5815,5673,5607,7207,8757,7517,9278,9959,9928,10917,8830,9621,9977,9754,9841,9899,8602,14860,14851,14121,9931,10639,11024,9474,10019,11350,12192
-2019F,KY,HLTXP,4152,4276,4730,5343,5592,5869,6269,6783,8051,9366,9564,9864,11412,12277,11929,10977,11330,11616,12254,10761,10223,7924,7112,7156,5782,5539,5118,6750,6719,6329,6154,6709,6427,5815,5673,5607,7207,8757,7517,9278,9959,9928,10917,8830,9621,9977,9754,9841,9899,8602,14860,14851,14121,9931,10639,11024,9474,10019,11350,12192
-2019F,KY,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,HYEGP,2633,2545,2775,2328,2415,2464,2565,3697,2927,2678,3174,3536,3770,3823,3398,3463,3159,3313,3182,3940,2940,2598,3343,3244,3514,2941,2734,2948,2423,4404,3160,3658,3767,3155,4014,3423,3497,3380,3116,2557,2325,3856,4025,3948,3780,2961,2592,1669,1917,3318,2580,2969,2362,3275,3144,3403,3478,4506,4418,4232
-2019F,KY,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,HYTCP,2633,2545,2775,2328,2415,2464,2565,3697,2927,2678,3174,3536,3770,3823,3398,3463,3159,3313,3182,3940,2940,2598,3343,3244,3514,2941,2734,2948,2423,4404,3160,3658,3767,3155,4014,3423,3497,3380,3116,2557,2325,3856,4025,3948,3780,2961,2592,1669,1917,3318,2580,2969,2362,3275,3144,3403,3478,4506,4418,4232
-2019F,KY,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KY,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KY,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KY,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,KY,JFACP,497,574,822,911,1014,1284,1666,2349,2768,3035,3089,2674,2207,2367,2035,2150,2159,2224,2558,2569,2897,3230,3702,4009,3261,3434,3549,4827,4985,5071,5713,6368,6882,5705,6343,6305,5590,4558,5351,6962,6651,6001,6353,8046,9042,8284,7105,7979,7425,9844,10561,10997,10889,11232,11351,11833,12381,13761,15080,16253
-2019F,KY,JFTCP,497,574,822,911,1014,1284,1666,2349,2768,3035,3089,2674,2207,2367,2035,2150,2159,2224,2558,2569,2897,3230,3702,4009,3261,3434,3549,4827,4985,5071,5713,6368,6882,5705,6343,6305,5590,4558,5351,6962,6651,6001,6353,8046,9042,8284,7105,7979,7425,9844,10561,10997,10889,11232,11351,11833,12381,13761,15080,16253
-2019F,KY,JFTXP,497,574,822,911,1014,1284,1666,2349,2768,3035,3089,2674,2207,2367,2035,2150,2159,2224,2558,2569,2897,3230,3702,4009,3261,3434,3549,4827,4985,5071,5713,6368,6882,5705,6343,6305,5590,4558,5351,6962,6651,6001,6353,8046,9042,8284,7105,7979,7425,9844,10561,10997,10889,11232,11351,11833,12381,13761,15080,16253
-2019F,KY,KSCCP,176,139,141,153,154,325,381,362,475,448,408,371,273,258,252,211,164,157,144,408,622,125,83,191,139,92,149,67,143,164,94,102,58,78,73,117,111,113,130,67,70,58,32,39,32,27,20,10,7,6,7,6,2,2,6,6,9,5,7,8
-2019F,KY,KSICP,512,393,469,343,288,397,750,699,885,770,608,526,598,579,347,293,529,462,500,1062,539,565,530,447,286,582,267,136,189,196,152,72,82,138,99,115,121,136,110,131,110,74,43,35,46,52,49,23,21,22,24,9,4,3,16,7,28,12,17,16
-2019F,KY,KSRCP,897,708,716,780,782,1653,1938,1843,2418,2280,2077,1884,1387,1314,1279,1073,836,797,733,2075,1751,474,527,911,688,833,672,446,645,583,321,378,365,396,390,415,438,486,611,864,316,271,169,182,207,251,160,100,60,114,111,94,20,21,44,26,30,15,18,26
-2019F,KY,KSTCP,1585,1240,1326,1276,1224,2375,3069,2904,3779,3497,3094,2781,2257,2152,1878,1577,1529,1416,1378,3545,2912,1164,1140,1549,1113,1507,1088,649,977,943,567,551,505,612,562,647,670,735,851,1062,495,403,244,256,285,330,229,133,88,142,142,109,26,26,66,39,67,33,42,50
-2019F,KY,KSTXP,1585,1240,1326,1276,1224,2375,3069,2904,3779,3497,3094,2781,2257,2152,1878,1577,1529,1416,1378,3545,2912,1164,1140,1549,1113,1507,1088,649,977,943,567,551,505,612,562,647,670,735,851,1062,495,403,244,256,285,330,229,133,88,142,142,109,26,26,66,39,67,33,42,50
-2019F,KY,LUACP,405,394,392,392,412,409,425,345,379,362,368,394,422,538,515,530,588,518,556,582,518,497,453,474,506,471,461,521,503,516,531,475,484,493,515,506,491,519,543,549,541,495,490,453,458,456,444,459,426,383,470,449,404,417,435,469,443,409,398,369
-2019F,KY,LUICP,138,135,277,277,290,346,360,384,422,465,474,517,554,623,597,518,576,538,578,605,539,517,471,493,526,490,479,542,523,536,552,493,503,512,535,526,511,540,565,571,562,515,509,471,477,474,462,477,443,398,390,361,327,356,343,358,319,289,273,261
-2019F,KY,LUTCP,544,529,669,669,702,755,785,729,801,827,842,911,975,1161,1112,1048,1164,1056,1134,1187,1057,1014,924,968,1032,962,940,1063,1025,1052,1082,968,987,1005,1050,1032,1002,1058,1108,1120,1103,1010,999,923,935,930,906,936,869,781,860,810,732,773,777,827,762,698,671,631
-2019F,KY,LUTXP,544,529,669,669,702,755,785,729,801,827,842,911,975,1161,1112,1048,1164,1056,1134,1187,1057,1014,924,968,1032,962,940,1063,1025,1052,1082,968,987,1005,1050,1032,1002,1058,1108,1120,1103,1010,999,923,935,930,906,936,869,781,860,810,732,773,777,827,762,698,671,631
-2019F,KY,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-730,-578,-410,-198,-575,-792,-357,-164,158,150,-72,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,MGACP,20715,21110,21677,23333,23600,25082,26370,27901,29774,31237,33109,35218,37133,38897,39091,40346,42427,43520,44535,42217,39490,39852,39742,39904,39851,38704,41291,41804,42945,42196,41748,42583,43648,44674,45027,46894,42303,48904,49322,50091,48045,49506,49046,50741,53030,51716,51548,52941,51103,52442,52202,50473,49871,49835,49568,50556,51758,51555,51670,51566
-2019F,KY,MGCCP,336,281,381,308,257,268,272,273,286,300,263,236,224,241,249,275,247,261,280,257,250,258,264,319,295,377,404,419,404,393,445,319,277,40,40,42,40,40,80,39,40,42,42,42,42,42,43,43,43,43,43,43,42,44,42,735,775,785,796,804
-2019F,KY,MGICP,485,453,712,415,454,430,344,355,345,272,209,260,210,224,201,195,159,153,114,96,89,72,61,50,640,843,822,845,784,839,848,865,861,1043,1114,1168,1199,1230,821,820,827,1720,1739,1919,2196,2141,2307,1147,788,804,757,747,691,697,508,533,563,568,572,558
-2019F,KY,MGTCP,21535,21844,22771,24056,24312,25780,26986,28528,30405,31809,33581,35715,37567,39362,39541,40816,42834,43935,44928,42570,39829,40181,40066,40272,40786,39924,42518,43068,44133,43428,43040,43766,44786,45756,46180,48104,43543,50174,50222,50950,48912,51268,50827,52702,55268,53899,53898,54131,51934,53289,53002,51262,50604,50575,50119,51823,53096,52909,53037,52927
-2019F,KY,MGTXP,21535,21844,22771,24056,24312,25780,26986,28528,30405,31809,33581,35715,37567,39362,39541,40816,42834,43935,44928,42570,39829,40181,40066,40272,40786,39924,42518,43068,44133,43428,43040,43766,44786,45756,46180,48104,43543,50174,50222,50950,48912,51268,50827,52702,55268,53899,53898,54131,51934,53289,53002,51262,50604,50575,50119,51823,53096,52909,53037,52927
-2019F,KY,MSICP,502,560,615,326,326,318,397,371,414,385,344,346,355,439,563,758,1065,1205,1048,970,920,270,237,212,182,184,93,93,113,104,93,966,633,599,670,614,984,1080,1315,1236,1317,393,422,396,357,355,454,445,474,506,529,550,539,459,490,507,513,511,509,463
-2019F,KY,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,NGACP,18932,20073,20434,23620,25315,27632,28124,28980,30584,34204,35740,35205,36950,34678,29376,23540,20598,19129,23084,25807,20927,23855,19318,14758,17232,14313,20134,21398,20804,20610,24624,19983,15860,19033,22920,25032,26523,22900,15800,16694,13895,14988,12072,14376,10253,8281,6522,11894,12964,12562,13711,12451,8604,7182,9360,11497,5612,7427,14224,14261
-2019F,KY,NGCCP,18264,22959,24396,25369,20935,21343,19025,32313,36089,41934,42461,42352,42843,45797,42320,38497,57203,50170,46647,40509,39359,36379,35260,34111,36138,33758,32666,33298,35718,36148,31806,33700,35419,37817,36744,38610,40972,38627,32464,35798,38669,35255,35942,38212,36989,36894,32590,34386,37167,35438,36818,34592,30771,37422,39967,35435,33520,32796,38472,37395
-2019F,KY,NGEIP,2288,1943,1654,1291,1139,453,943,380,349,7013,8533,8910,10014,8067,5463,272,135,721,1208,934,1902,2589,1522,1196,1767,1121,437,336,452,328,283,227,269,269,350,866,1836,2194,5782,5686,4202,4433,13712,3667,4833,17181,12287,19376,9584,8399,19284,15575,31194,14536,26793,51723,66359,81208,112656,112369
-2019F,KY,NGICP,46113,47126,49846,51077,61302,58398,46249,61249,53961,67916,74841,73696,79520,76697,74715,66074,71680,54855,57538,74001,65861,66084,64846,61192,67224,63232,54564,57784,63078,66348,71557,74069,76431,79283,85854,93411,96907,98181,95543,101006,103745,97351,107089,105086,116953,115581,112271,112608,110555,98613,107895,109720,112290,116635,121725,122877,120853,118993,123296,126661
-2019F,KY,NGRCP,63009,58941,61956,64679,66252,64094,54310,69542,75824,83815,86473,84197,85881,80233,76129,79156,96351,94646,84436,77438,74235,70538,67590,63049,66895,60086,59372,59094,64027,65086,56064,59465,61911,66909,62533,66149,70232,66033,55545,59220,64662,56947,59104,61886,56443,56142,47379,51534,55025,51821,54391,50696,43065,54208,57590,49426,45502,43253,51476,48777
-2019F,KY,NGTCP,148606,151042,158286,166036,174943,171920,148651,192464,196807,234882,248048,244360,255208,245472,228003,207539,245967,219521,212913,218689,202284,199445,188536,174306,189256,172510,167173,171910,184079,188520,184334,187443,189890,203310,208402,224068,236470,227935,205134,218404,225174,208975,227920,223226,225470,234080,211048,229798,225295,206833,232099,223034,225924,229983,255435,270958,271846,283677,340124,339463
-2019F,KY,NGTPP,48.9,49.5,51.4,53.6,55.9,54.8,47.2,60.7,61.6,73.4,76.8,74.1,76.5,72.8,66.7,59.8,69.7,61.4,59,60,55.2,54.3,51.2,47.2,51.2,46.7,45.3,46.7,50,51.3,49.9,50.4,50.4,53.3,54.1,57.6,60.3,57.7,51.5,54.4,55.6,51.4,55.7,54.2,54.4,56,50,54,52.5,47.9,53.4,51,51.5,52.2,57.8,61.2,61.2,63.7,76.2,75.9
-2019F,KY,NGTXP,146318,149099,156632,164745,173804,171467,147708,192084,196458,227869,239515,235450,245194,237405,222540,207267,245832,218800,211705,217755,200382,196856,187014,173110,187489,171389,166736,171574,183627,188192,184051,187216,189621,203042,208051,223202,234634,225741,199352,212718,220972,204542,214207,219560,220637,216899,198761,210423,215711,198434,212815,207459,194730,215447,228642,219235,205487,202469,227468,227094
-2019F,KY,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,OPICP,2101,2135,2012,1657,2621,2926,3516,3230,3413,3752,3929,3996,4186,4301,4366,4360,4669,4819,4973,5766,5564,3148,2965,3643,4051,3308,3113,3661,3962,3985,3977,4216,4663,4290,4395,4079,5007,5046,4933,5167,4603,4360,4358,4481,4142,4413,4534,4522,4180,3808,3876,4250,4464,4557,4309,4753,4832,4950,4774,4999
-2019F,KY,OPTCP,2101,2135,2012,1657,2621,2926,3516,3230,3413,3752,3929,3996,4186,4301,4366,4360,4669,4819,4973,5766,5564,3148,2965,3643,4051,3308,3113,3661,3962,3985,3977,4216,4663,4290,4395,4079,5007,5046,4933,5167,4603,4360,4358,4481,4142,4413,4534,4522,4180,3808,3876,4250,4464,4557,4309,4753,4832,4950,4774,4999
-2019F,KY,OPTXP,2101,2135,2012,1657,2621,2926,3516,3230,3413,3752,3929,3996,4186,4301,4366,4360,4669,4819,4973,5766,5564,3148,2965,3643,4051,3308,3113,3661,3962,3985,3977,4216,4663,4290,4395,4079,5007,5046,4933,5167,4603,4360,4358,4481,4142,4413,4534,4522,4180,3808,3876,4250,4464,4557,4309,4753,4832,4950,4774,4999
-2019F,KY,P1ICP,4326,4313,4592,4457,4826,5873,6886,6778,7584,8234,9153,9225,9894,11437,9885,9988,10399,11026,11240,12360,10332,9065,9335,8890,9695,8989,9130,11060,11370,11252,11580,11115,12582,11370,11670,11156,12123,12154,14090,16414,14439,17651,16890,16845,19115,19336,20616,19353,17675,18225,13739,12215,14348,11754,12540,13602,14369,11633,12376,12480
-2019F,KY,P1TCP,6457,6262,7539,6926,7394,9313,10551,9929,11184,11652,12337,12052,12135,13691,12079,11931,12115,12607,12780,15561,13335,10254,10488,10561,11101,10451,10496,12155,12722,12567,12576,12120,13543,12377,12694,12238,13210,13300,16159,17927,15397,18565,24565,23332,26978,27286,27867,25309,23691,22524,18511,15836,17514,14716,15061,15976,17077,12928,12835,12926
-2019F,KY,P1TXP,6457,6262,7539,6926,7394,9313,10551,9929,11184,11652,12337,12052,12135,13691,12079,11931,12115,12607,12780,15561,13335,10254,10488,10561,11101,10451,10496,12155,12722,12567,12576,12120,13543,12377,12694,12238,13210,13300,15438,17927,15397,18565,17650,17580,19883,20140,21305,19986,18216,18770,14362,12796,14804,12219,13055,14134,14883,12097,12835,12926
-2019F,KY,PAACP,24886,24896,27832,29229,30235,30630,33033,34589,37547,39741,41986,42978,46089,48843,48090,49437,52672,54192,57784,58500,55961,55353,55404,58562,58619,56319,58770,60997,66054,69384,64555,65205,68672,71425,70420,72882,67914,74580,75576,78298,78610,79735,82858,80110,87322,86065,85845,89118,82926,84731,86213,85573,83495,83582,84614,85529,86835,87948,90869,90482
-2019F,KY,PACCP,1243,1165,1330,1188,1020,1436,1635,1705,1934,2019,2063,1906,1805,1972,1942,2016,2446,3040,2882,2774,3858,1306,1089,2432,2628,2307,1931,1457,1962,1674,1598,1484,1535,1166,1383,1640,1836,1577,1641,1658,1650,1527,1466,1252,1286,1153,1120,957,1100,824,705,946,863,972,948,1763,2313,1805,2042,2366
-2019F,KY,PAEIP,10,7,12,13,11,14,15,15,13,35,124,255,391,150,200,108,248,242,240,158,227,323,295,246,302,270,236,225,202,230,212,228,195,214,317,282,308,266,1013,263,309,225,7249,6062,7351,7376,6755,5566,5730,4035,4378,3289,2937,2718,2250,2087,2406,1022,180,169
-2019F,KY,PAICP,9134,9336,10487,10076,10905,12783,14302,14630,15506,17062,17788,17888,20301,22737,22334,22099,23727,27070,27567,27431,25494,20994,20499,18941,20127,19864,19007,22666,22303,21779,22960,21772,23592,21014,21844,21546,23251,24380,25660,28219,26422,32545,32403,29291,32409,33649,35428,32747,31530,30801,32284,31643,32806,25564,25294,26164,25930,23733,25678,26091
-2019F,KY,PARCP,2554,2292,2446,2719,2414,3548,4144,4343,5454,5910,5884,5721,5497,5845,5493,5308,5450,5719,5583,5254,4663,2943,2717,3426,2889,3298,3062,3674,3755,3706,2921,3262,3183,3558,3436,3429,4176,4204,3517,4224,3657,2594,2600,3031,2892,2769,2369,2458,2720,2971,2873,2725,1725,1937,2326,2216,1637,1271,1633,2246
-2019F,KY,PATCP,37827,37696,42108,43226,44585,48412,53129,55281,60453,64768,67846,68748,74082,79547,78059,78966,84544,90262,94056,94116,90203,80919,80004,83607,84565,82058,83006,89019,94276,96772,92246,91952,97178,97377,97400,99780,97486,105006,107408,112661,110648,116626,126575,119745,131261,131011,131518,130845,124007,123362,126453,124176,121825,114773,115432,117759,119121,115780,120404,121354
-2019F,KY,PATPP,12.4,12.3,13.7,14,14.2,15.4,16.9,17.4,18.9,20.3,21,20.8,22.2,23.6,22.8,22.8,24,25.3,26.1,25.8,24.6,22,21.7,22.6,22.9,22.2,22.5,24.2,25.6,26.3,25,24.7,25.8,25.5,25.3,25.7,24.9,26.6,27,28,27.3,28.7,30.9,29.1,31.7,31.3,31.2,30.7,28.9,28.6,29.1,28.4,27.8,26,26.1,26.6,26.8,26,27,27.1
-2019F,KY,PATXP,37817,37689,42095,43212,44574,48398,53114,55266,60440,64732,67721,68493,73691,79397,77859,78859,84296,90020,93816,93958,89976,80595,79709,83361,84263,81788,82769,88794,94074,96543,92034,91724,96983,97162,97083,99497,97178,104741,106395,112398,110339,116401,119326,113683,123910,123635,124763,125280,118276,119327,122075,120887,118888,112055,113182,115672,116716,114757,120224,121185
-2019F,KY,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,6914,5752,7096,7146,6562,5323,5475,3754,4149,3040,2710,2497,2006,1843,2194,831,0,0
-2019F,KY,PCICP,93,93,74,82,96,92,91,88,87,136,1053,1070,1539,2307,1998,2195,1955,2407,2230,1971,1670,2903,2473,2206,2662,2736,2985,4019,4080,3770,3868,3533,4796,3880,3797,3658,3770,3015,5284,6355,5191,9369,8490,8041,11125,10519,12147,10855,10481,11204,6614,4827,6093,4322,4532,6115,6595,4983,5398,5247
-2019F,KY,PCTCP,93,93,74,82,96,92,91,88,87,136,1053,1070,1539,2307,1998,2195,1955,2407,2230,1971,1670,2903,2473,2206,2662,2736,2985,4019,4080,3770,3868,3533,4796,3880,3797,3658,3770,3015,6005,6355,5191,9369,15405,13793,18221,17666,18709,16178,15956,14958,10763,7867,8803,6818,6538,7957,8789,5814,5398,5247
-2019F,KY,PCTXP,93,93,74,82,96,92,91,88,87,136,1053,1070,1539,2307,1998,2195,1955,2407,2230,1971,1670,2903,2473,2206,2662,2736,2985,4019,4080,3770,3868,3533,4796,3880,3797,3658,3770,3015,5284,6355,5191,9369,8490,8041,11125,10519,12147,10855,10481,11204,6614,4827,6093,4322,4532,6115,6595,4983,5398,5247
-2019F,KY,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,30,25,21,19,20,22,10,7,8
-2019F,KY,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,324,507,417,475,379,349,351,390,501,716
-2019F,KY,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10274,10368,10469,5667,652,722,500,465,462,496
-2019F,KY,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2649,2361,1625,1811,2181,2079,1514,1165,1542,2133
-2019F,KY,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13275,13266,12536,7973,3232,3169,2388,2030,2512,3354
-2019F,KY,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13275,13266,12536,7973,3232,3169,2388,2030,2512,3354
-2019F,KY,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1585,1585,1585,1585,1585,1585,1585,1585,1585,1585
-2019F,KY,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1585,1585,1585,1585,1585,1585,1585,1585,1585,1585
-2019F,KY,RFACP,35,44,41,64,58,42,46,173,162,141,145,50,4,3,2,2,1,1,1,51,136,250,10,12,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,6,3,0,0,0,0,6,0,0,0,0,0,0,0,0,0
-2019F,KY,RFCCP,4,1,4,5,7,8,10,10,10,13,11,5,3,4,13,7,15,19,12,12,19,18,4,45,30,1,32,1,39,0,0,0,0,2,2,0,0,0,0,1,8,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,RFEIP,9,7,12,13,10,14,15,15,13,34,121,247,375,144,195,100,127,152,172,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,RFICP,289,238,341,386,486,536,657,728,675,877,786,356,811,959,1850,2059,2314,2659,2250,1153,857,871,1140,1119,747,621,707,851,530,469,537,455,417,330,323,201,243,165,55,77,81,136,92,120,58,136,118,103,0,70,50,0,39,31,25,15,6,26,13,0
-2019F,KY,RFTCP,337,290,398,468,561,600,727,926,859,1066,1063,659,1192,1110,2060,2169,2457,2831,2436,1365,1012,1139,1154,1175,782,622,739,852,569,469,537,455,417,332,325,201,243,165,55,77,90,143,94,123,64,140,118,103,0,70,56,0,39,31,25,15,6,26,13,0
-2019F,KY,RFTXP,328,283,386,455,550,586,713,911,846,1031,942,411,818,966,1865,2068,2330,2679,2264,1217,1012,1139,1154,1175,782,622,739,852,569,469,537,455,417,332,325,201,243,165,55,77,90,143,94,123,64,140,118,103,0,70,56,0,39,31,25,15,6,26,13,0
-2019F,KY,SGICP,1513,1488,1320,1185,1285,1498,1660,1617,1669,1916,2026,1945,2053,2032,1973,1979,1925,1925,1943,2811,2697,3021,2900,2865,2985,2999,3428,3418,3578,3614,3593,3478,3572,3548,3482,3429,3550,3489,3393,3340,3365,3423,3361,3476,3447,3457,3381,3339,3199,3130,3070,3381,3639,3577,3505,3824,3851,3831,3807,3786
-2019F,KY,SNICP,0,0,0,0,865,936,1210,1007,1079,1183,1255,1271,1361,1376,1365,1174,1279,1333,1603,1623,1561,1150,1071,1259,1682,1294,1197,1335,1051,989,987,875,1040,1040,806,704,587,569,844,1144,766,594,774,609,386,473,485,540,588,320,181,157,102,448,475,444,419,381,350,363
-2019F,KY,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,11,11,12,13,15,19,22
-2019F,KY,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,20,39,45
-2019F,KY,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
-2019F,KY,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,7,10,12,17
-2019F,KY,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,12,13,14,32,45,71,85
-2019F,KY,TPOPP,3041,3054,3079,3096,3129,3140,3147,3172,3195,3198,3231,3298,3336,3371,3416,3468,3529,3574,3610,3642,3664,3670,3683,3694,3695,3695,3688,3683,3680,3677,3694,3722,3765,3812,3849,3887,3920,3953,3985,4018,4049,4068,4090,4117,4146,4183,4219,4257,4290,4317,4348,4371,4388,4407,4417,4429,4440,4456,4464,4472
-2019F,KY,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-775,-859,-496,-852,-869,-887,-907,-695,-960,-927,-1131,-902,-1012,-696,-800,-287,-256,-763,-689,-960,-181,-321,-117,-174,7,158,147,-120,-172,60,131,152,40,-192,-47,22,199,79,362
-2019F,KY,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,WXICP,87,86,78,75,70,75,126,125,140,148,148,235,242,310,304,272,215,179,185,181,177,87,68,74,74,75,73,79,81,80,80,100,106,114,116,116,153,138,133,118,104,115,102,98,97,99,55,46,40,26,36,32,32,35,31,26,27,28,34,29
-2019F,KY,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,KY,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,138,20,3,117,16,1,-32,3,7,-2,5,5,189,167,221,281,128,208,124,197,246,243,343,254,22,60,3,-28,-9,0,0,-14,-5,-13,-11,-7,-55,-42
-2019F,LA,ARICP,2201,1893,2162,2246,2190,2539,2305,2355,2128,2142,2210,2273,2318,2489,3269,2812,2266,2167,2656,2725,1946,2746,2970,2616,2019,1835,1792,2275,2398,2315,1672,1498,1689,1860,1682,1652,1720,5289,1697,1520,1390,1552,1806,1961,1178,2325,2578,2548,2425,2166,2201,2125,1922,2054,2070,1389,930,2584,2266,2033
-2019F,LA,ARTCP,2201,1893,2162,2246,2190,2539,2305,2355,2128,2142,2210,2273,2318,2489,3269,2812,2266,2167,2656,2725,1946,2746,2970,2616,2019,1835,1792,2275,2398,2315,1672,1498,1689,1860,1682,1652,1720,5289,1697,1520,1390,1552,1806,1961,1178,2325,2578,2548,2425,2166,2201,2125,1922,2054,2070,1389,930,2584,2266,2033
-2019F,LA,ARTXP,2201,1893,2162,2246,2190,2539,2305,2355,2128,2142,2210,2273,2318,2489,3269,2812,2266,2167,2656,2725,1946,2746,2970,2616,2019,1835,1792,2275,2398,2315,1672,1498,1689,1860,1682,1652,1720,5289,1697,1520,1390,1552,1806,1961,1178,2325,2578,2548,2425,2166,2201,2125,1922,2054,2070,1389,930,2584,2266,2033
-2019F,LA,AVACP,847,676,987,990,986,1055,876,737,672,548,447,454,416,368,367,295,261,277,219,243,255,379,255,224,187,171,166,132,122,115,108,93,87,219,132,87,81,98,78,87,84,286,62,102,55,60,60,25,67,62,88,96,100,89,66,65,62,65,68,65
-2019F,LA,AVTCP,847,676,987,990,986,1055,876,737,672,548,447,454,416,368,367,295,261,277,219,243,255,379,255,224,187,171,166,132,122,115,108,93,87,219,132,87,81,98,78,87,84,286,62,102,55,60,60,25,67,62,88,96,100,89,66,65,62,65,68,65
-2019F,LA,AVTXP,847,676,987,990,986,1055,876,737,672,548,447,454,416,368,367,295,261,277,219,243,255,379,255,224,187,171,166,132,122,115,108,93,87,219,132,87,81,98,78,87,84,286,62,102,55,60,60,25,67,62,88,96,100,89,66,65,62,65,68,65
-2019F,LA,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,10,21,70,202,275,236,250,202,688,646,1112,839,1076,1487,1218,1241,1146
-2019F,LA,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,10,21,70,202,275,236,250,202,688,646,1112,839,1076,1487,1218,1241,1146
-2019F,LA,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2408,3430,1312,3093,4200,4200,4200,4200,4200,4200
-2019F,LA,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2408,3430,1312,3093,4200,4200,4200,4200,4200,4200
-2019F,LA,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,211,28,20,-177,83,-289,-129,176,455,1
-2019F,LA,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,211,28,20,-177,83,-289,-129,176,455,1
-2019F,LA,CLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,CLCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,8,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,CLEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1077,3398,5840,6463,8760,10196,10029,12301,11770,11748,12406,13077,13089,13479,12930,12450,13807,13850,13916,15680,14854,14623,15462,15975,15790,16337,15453,16337,15722,16218,16713,14746,13787,12632,10777,8567,8398,8111,5287
-2019F,LA,CLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,172,118,107,286,323,314,382,457,263,362,547,702,799,559,597,586,621,422,84,67,41,37,57,80,53,130,84,66,73,71,72,14,22,79,147,146,189,239,267,241,245,205
-2019F,LA,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,CLOCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,172,118,107,286,323,314,382,457,263,362,547,702,799,559,597,586,621,422,84,67,41,37,57,80,53,130,84,66,73,71,72,14,22,79,147,146,189,239,267,241,245,205
-2019F,LA,CLRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,CLTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,172,118,111,1363,3724,6154,6855,9217,10459,10391,12848,12471,12547,12965,13674,13676,14100,13357,12534,13874,13891,13953,15737,14934,14676,15592,16059,15856,16410,15524,16409,15736,16240,16792,14893,13934,12821,11016,8834,8638,8356,5492
-2019F,LA,CLTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,172,118,111,286,326,314,392,457,263,362,547,702,799,559,597,587,621,427,84,67,41,37,57,80,53,130,84,66,73,71,72,14,22,79,147,146,189,239,267,241,245,205
-2019F,LA,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,14,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,DFACP,5690,4162,4563,4669,4938,4387,4755,4573,5872,5818,6655,8146,11037,13126,13213,13554,12511,13902,14963,14262,12457,21432,15056,19374,17459,17168,16498,17014,18809,19834,20015,17885,16462,19579,22100,24900,29783,30980,28180,24841,26583,29362,28006,27658,27420,27476,30634,26908,26164,26813,30727,33681,25970,26108,25445,30322,27930,26396,25034,26942
-2019F,LA,DFCCP,1604,1415,1386,1385,1104,815,668,449,575,754,838,748,1024,1238,1452,1458,2281,3599,3390,5835,399,517,347,2115,1674,2647,2985,1177,823,598,741,677,456,722,759,257,134,311,303,550,337,277,380,355,293,354,346,612,583,1465,957,990,886,423,515,547,644,625,591,561
-2019F,LA,DFEIP,22,18,26,20,36,20,18,17,24,21,58,67,197,77,87,88,86,84,63,40,1174,1433,391,349,141,132,77,69,147,297,159,73,75,69,98,78,198,86,82,51,341,653,106,211,191,144,49,64,69,76,56,52,55,69,81,113,30,44,41,49
-2019F,LA,DFICP,3383,3449,3658,3635,3622,3129,3638,2638,3365,4047,4241,4429,5555,6630,6889,6391,7181,12170,12594,11330,8543,14541,14994,9274,7340,6748,8840,8401,8930,8420,9143,9665,8584,10232,11867,11348,12525,12565,12260,10720,11517,12192,12728,5383,5281,6080,5072,5081,5645,8754,11333,11959,8888,7183,7317,5139,4713,4774,5546,4401
-2019F,LA,DFRCP,11,10,10,10,8,6,5,3,4,5,6,5,7,9,10,10,16,26,24,42,5,0,84,3,2,6,7,1,2,5,6,1,0,0,11,1,1,0,1,3,1,1,9,4,4,5,6,5,59,25,3,1,1,2,2,6,7,8,1,5
-2019F,LA,DFTCP,10710,9053,9642,9718,9709,8357,9084,7681,9840,10645,11799,13395,17821,21079,21652,21502,22077,29781,31035,31509,22579,37923,30871,31116,26617,26702,28408,26662,28710,29154,30065,28302,25578,30603,34835,36584,42641,43942,40826,36166,38779,42485,41229,33611,33189,34060,36107,32670,32520,37134,43076,46682,35800,33785,33360,36128,33323,31847,31214,31957
-2019F,LA,DFTXP,10688,9035,9616,9699,9672,8337,9066,7664,9815,10624,11741,13329,17624,21002,21565,21413,21990,29697,30971,31469,21405,36490,30481,30767,26476,26569,28330,26593,28564,28857,29906,28229,25503,30534,34737,36506,42443,43856,40744,36115,38438,41832,41123,33400,32998,33916,36058,32606,32451,37058,43020,46630,35745,33717,33279,36015,33293,31802,31173,31908
-2019F,LA,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-4946,-2487,-102,-2621,-713,-2568,6824,2248,-2824,-1921,-2380,-5211,-6692,-8275,-8633,-6343,-4703,13569,11979,12307,8687,7052,8035,9281,12607,10649,11457,21030,17346,19849
-2019F,LA,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,229,721,608,191,151,90,168,219,217,305,183,44,18,16,39,6,0,866,1076,1097,46,44,130,1172,3102,5708,5510,5186,5517,5511,5681,5451,5276,4942,4854
-2019F,LA,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,1,1,1,1,1,0,0,0,0,0,0,0,0,0,13,42,31,1,0,7,1,2,5,4,4,5,4,81,82,84,80,78
-2019F,LA,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,5,1,1,1,1,2,3,5,3,1,0,0,0,0,0,20,26,31,1,1,4,16,38,113,118,109,120,81,77,79,80,77,74
-2019F,LA,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,232,730,616,194,152,92,171,222,220,311,186,45,19,16,39,7,0,898,1144,1159,48,45,141,1188,3142,5825,5632,5299,5641,5596,5839,5612,5440,5099,5006
-2019F,LA,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57812,62707,71370,72270,77380,81760,81984,93440,93440,109591
-2019F,LA,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57812,62707,71370,72270,77380,81760,81984,93440,93440,109591
-2019F,LA,ESACP,25,22,20,17,13,7,7,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,16,12,3,3,5,9,11,11,11,11,12,12,12,13,13,12
-2019F,LA,ESCCP,2493,3240,3682,4129,4400,4890,5385,6210,7015,7854,8427,9210,10191,11152,11340,9225,10020,11213,12078,12325,12809,13707,14008,14077,16011,16548,16552,16181,16315,16562,16528,16541,16441,16884,17630,18016,18411,18888,20005,20354,21018,20315,21439,21944,22568,21692,21979,22887,22940,23301,24203,24281,24245,24254,24493,24996,24896,24500,24691,24284
-2019F,LA,ESICP,4326,4256,4862,4823,5277,5905,6951,8030,9502,10603,11637,12460,14046,15000,15699,14969,17325,19236,20753,22536,23233,26318,24694,23835,25816,23952,22474,22986,23559,24762,25862,26584,27466,28439,29870,30692,32544,32493,30999,31484,31950,28574,29662,27251,28290,27031,27373,27799,26932,25613,28187,30058,30449,30833,34723,35123,35895,37161,37417,37846
-2019F,LA,ESRCP,3014,3080,3885,4219,4712,5161,5890,6407,7494,8519,9334,10119,11662,12298,12121,11923,12473,14272,15448,15504,16832,17601,17989,17351,19298,20168,20263,19986,20134,20515,21434,21577,21188,22430,22629,24116,24311,24502,26709,26426,27719,25800,28157,28572,28863,28654,28113,28878,28848,29747,32679,32019,30027,30709,31401,31545,30650,29532,32066,30986
-2019F,LA,ESRPP,925,937,1161,1249,1367,1476,1659,1789,2080,2354,2556,2727,3100,3246,3173,3068,3157,3555,3797,3747,3986,4109,4133,3948,4385,4575,4598,4601,4694,4824,5077,5073,4935,5196,5205,5508,5527,5542,6015,5924,6199,5762,6261,6320,6340,6261,6534,6600,6504,6623,7191,6997,6525,6638,6759,6759,6547,6319,6874,6652
-2019F,LA,ESTCP,9859,10599,12449,13187,14401,15964,18233,20651,24015,26981,29401,31791,35903,38453,39164,36121,39821,44724,48282,50368,52877,57629,56694,55266,61127,60671,59292,59156,60011,61842,63826,64704,65098,67756,70132,72827,75269,75886,77716,78267,80690,74693,79261,77769,79737,77389,77468,79567,78726,78670,85080,86369,84731,85808,90628,91676,91453,91206,94186,93129
-2019F,LA,ESTPP,3024,3224,3722,3905,4179,4566,5136,5767,6665,7455,8051,8568,9545,10150,10252,9295,10080,11141,11867,12173,12521,13454,13025,12574,13891,13763,13454,13617,13992,14541,15119,15213,15164,15697,16132,16632,17111,17165,17502,17545,18044,16680,17624,17202,17516,16910,18005,18184,17749,17515,18721,18873,18411,18549,19507,19644,19536,19515,20192,19992
-2019F,LA,ESTXP,9859,10599,12449,13187,14401,15964,18233,20651,24015,26981,29401,31791,35903,38453,39164,36121,39821,44724,48282,50368,52877,57629,56694,55266,61127,60671,59292,59156,60011,61842,63826,64704,65098,67756,70132,72827,75269,75886,77716,78267,80690,74693,79261,77769,79737,77389,77468,79567,78726,78670,85080,86369,84731,85808,90628,91676,91453,91206,94186,93129
-2019F,LA,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,392,392,385,62,79,70,53,56,16,25
-2019F,LA,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,392,392,385,62,79,70,53,56,16,25
-2019F,LA,FNICP,0,0,0,8581,9579,9165,15530,19619,21672,22433,22320,22141,22630,22141,24112,20852,28561,28943,29183,33789,35254,32708,23473,21068,20501,17508,25348,25832,26402,28852,25824,22197,28002,26031,29577,27693,35589,39826,42476,35432,36614,24571,23879,24077,28197,25225,21778,18677,15187,13713,12998,12912,12027,13720,12389,11982,11757,12209,12515,11104
-2019F,LA,FOICP,0,0,0,6705,7504,6647,7076,7129,8143,8030,9288,11128,15099,17984,16660,14089,18408,29096,36205,43063,43697,37024,26551,26036,23914,25708,31046,28254,29669,27753,38360,42093,41443,42947,42670,40756,37124,43820,41087,45308,48554,52561,57971,70796,86026,80697,92895,112049,111204,72923,77686,66700,49312,38441,42442,39320,38190,45138,41044,40187
-2019F,LA,FSICP,0,0,0,642,652,767,894,946,1013,1057,1298,1837,1695,1484,1717,1855,2267,2243,2564,1717,2092,1012,1051,1292,1730,1919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,HLACP,197,298,307,350,398,159,228,255,291,360,350,401,400,358,316,307,383,391,481,557,159,211,250,297,352,109,94,91,81,71,73,74,64,69,115,61,45,45,21,26,8,17,73,39,54,69,51,40,77,54,15,14,13,13,11,11,11,44,31,33
-2019F,LA,HLCCP,518,579,624,613,594,714,684,636,787,1001,896,961,1001,906,838,690,641,711,590,422,379,379,283,336,299,327,350,335,318,299,256,273,350,235,226,207,262,288,420,624,743,694,368,314,295,327,251,222,258,277,250,251,217,225,247,205,263,346,288,365
-2019F,LA,HLICP,19606,20786,22825,24575,28039,28451,29907,31818,36493,42788,44017,45306,55432,58601,58807,52893,51241,50746,51924,72560,68575,88803,101461,91533,80317,86587,75863,71578,68983,66781,67631,75711,80152,82761,95237,94678,95614,73970,69469,102113,131671,88189,89995,54578,60665,56073,63220,62415,116420,138074,102688,107853,125512,132526,126381,137544,132869,143925,145391,157157
-2019F,LA,HLRCP,1325,1481,1597,1569,1521,1826,1750,1628,2013,2562,2292,2460,2561,2317,2143,1765,1641,1818,1510,1079,970,969,724,860,764,836,896,856,815,764,655,698,895,602,578,530,669,736,1074,1598,1900,1776,940,754,688,829,850,535,628,817,728,695,446,463,545,465,437,442,455,503
-2019F,LA,HLTCP,21646,23144,25353,27107,30552,31150,32569,34337,39583,46712,47555,49128,59395,62182,62104,55654,53907,53666,54505,74619,70083,90362,102718,93027,81731,87860,77204,72860,70197,67915,68616,76755,81460,83667,96155,95476,96590,75040,70984,104361,134321,90676,91377,55685,61703,57298,64371,63211,117382,139222,103681,108813,126188,133227,127184,138225,133580,144758,146166,158058
-2019F,LA,HLTXP,21646,23144,25353,27107,30552,31150,32569,34337,39583,46712,47555,49128,59395,62182,62104,55654,53907,53666,54505,74619,70083,90362,102718,93027,81731,87860,77204,72860,70197,67915,68616,76755,81460,83667,96155,95476,96590,75040,70984,104361,134321,90676,91377,55685,61703,57298,64371,63211,117382,139222,103681,108813,126188,133227,127184,138225,133580,144758,146166,158058
-2019F,LA,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,HYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,656,656,1232,972,952,964,1036,1063,802,532,732,891,892,1099,811,713,827,1064,1236,1109,1044,680,1045,1090,999,1103,906,1180,1366
-2019F,LA,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,HYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,656,656,1232,972,952,964,1036,1063,802,532,732,891,892,1099,811,713,827,1064,1236,1109,1044,680,1045,1090,999,1103,906,1180,1366
-2019F,LA,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,LA,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,LA,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38,96,28,-24,-37,-41,26,41,-28,4
-2019F,LA,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38,96,28,-24,-37,-41,26,41,-28,4
-2019F,LA,JFACP,3207,3650,4591,5141,5455,6097,6335,5464,6074,6211,5879,5917,5841,5881,7888,6082,5126,5437,5595,7356,8644,7812,8195,10935,12705,12803,17838,18874,21424,22321,25879,32179,26950,25124,32225,28853,29030,30472,28670,34016,35399,34460,37678,38124,35840,28255,23264,22416,19474,16073,3013,3055,3061,2875,2950,3051,3117,3165,3353,3551
-2019F,LA,JFTCP,3207,3650,4591,5141,5455,6097,6335,5464,6074,6211,5879,5917,5841,5881,7888,6082,5126,5437,5595,7356,8644,7812,8195,10935,12705,12803,17838,18874,21424,22321,25879,32179,26950,25124,32225,28853,29030,30472,28670,34016,35399,34460,37678,38124,35840,28255,23264,22416,19474,16073,3013,3055,3061,2875,2950,3051,3117,3165,3353,3551
-2019F,LA,JFTXP,3207,3650,4591,5141,5455,6097,6335,5464,6074,6211,5879,5917,5841,5881,7888,6082,5126,5437,5595,7356,8644,7812,8195,10935,12705,12803,17838,18874,21424,22321,25879,32179,26950,25124,32225,28853,29030,30472,28670,34016,35399,34460,37678,38124,35840,28255,23264,22416,19474,16073,3013,3055,3061,2875,2950,3051,3117,3165,3353,3551
-2019F,LA,KSCCP,156,76,56,185,227,305,627,200,321,402,445,231,249,682,546,467,341,612,679,692,549,2530,331,79,21,65,21,21,110,35,21,22,10,26,13,6,7,3,5,9,8,16,7,6,77,38,29,7,5,2,2,1,1,1,3,1,2,1,1,1
-2019F,LA,KSICP,764,317,231,319,514,484,1211,1590,1498,2141,2044,1687,1830,2651,2300,1931,1886,2336,2554,2464,5162,4307,5344,1015,97,104,189,41,136,101,47,52,27,29,31,22,30,27,56,15,65,1097,717,1506,2017,2385,2524,834,8,41,62,37,31,21,27,5,3,5,7,8
-2019F,LA,KSRCP,7,3,3,8,10,14,28,9,14,18,20,10,11,31,24,21,15,27,30,31,0,28,76,92,15,18,16,10,12,32,13,14,9,7,5,9,17,92,69,62,26,27,13,9,10,8,8,6,3,2,2,1,0,0,0,0,0,0,1,0
-2019F,LA,KSTCP,927,396,289,512,750,803,1866,1799,1833,2561,2509,1928,2090,3364,2870,2418,2242,2975,3264,3187,5711,6865,5751,1185,133,187,226,72,258,168,81,87,46,62,49,37,54,122,130,87,99,1140,738,1522,2104,2430,2562,847,15,45,66,38,33,22,31,7,4,6,9,8
-2019F,LA,KSTXP,927,396,289,512,750,803,1866,1799,1833,2561,2509,1928,2090,3364,2870,2418,2242,2975,3264,3187,5711,6865,5751,1185,133,187,226,72,258,168,81,87,46,62,49,37,54,122,130,87,99,1140,738,1522,2104,2430,2562,847,15,45,66,38,33,22,31,7,4,6,9,8
-2019F,LA,LUACP,700,682,758,757,795,661,687,498,547,529,539,522,559,521,499,527,585,720,773,809,721,691,630,660,704,656,641,725,699,717,738,660,673,685,716,704,683,722,756,764,752,689,681,630,638,634,618,638,593,533,651,660,549,592,567,621,565,555,450,458
-2019F,LA,LUICP,559,544,764,764,802,821,853,841,924,1033,1052,892,955,1264,1210,1299,1444,1277,1372,1436,1278,1226,1118,1170,1248,1163,1137,1286,1240,1272,1309,1171,1194,1216,1271,1249,1212,1280,1340,1354,1334,1222,1208,1117,1131,1125,1096,1132,1051,945,845,721,641,584,602,606,548,517,514,513
-2019F,LA,LUTCP,1259,1226,1522,1521,1598,1483,1540,1340,1472,1561,1590,1414,1514,1785,1709,1826,2029,1998,2145,2245,1999,1917,1748,1830,1952,1819,1779,2011,1939,1989,2047,1831,1867,1901,1987,1953,1895,2002,2096,2118,2086,1911,1889,1746,1769,1760,1714,1770,1644,1478,1496,1381,1191,1176,1169,1228,1113,1072,964,971
-2019F,LA,LUTXP,1259,1226,1522,1521,1598,1483,1540,1340,1472,1561,1590,1414,1514,1785,1709,1826,2029,1998,2145,2245,1999,1917,1748,1830,1952,1819,1779,2011,1939,1989,2047,1831,1867,1901,1987,1953,1895,2002,2096,2118,2086,1911,1889,1746,1769,1760,1714,1770,1644,1478,1496,1381,1191,1176,1169,1228,1113,1072,964,971
-2019F,LA,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6838,-5486,-3869,-1919,-5852,-8121,-3684,-1708,1616,1563,-763,2300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,MGACP,21729,22131,23028,23754,24811,26557,28292,29425,31472,32636,34167,35191,38301,40450,40697,42554,45645,47677,49421,48455,46927,48667,49442,49711,49837,48581,49290,47594,48236,46372,43312,42391,44527,45377,44791,46434,50057,46053,49410,49106,51716,51368,53061,54025,52776,54379,62052,53422,50810,54389,53782,53325,51773,53560,53048,54521,52605,50691,50298,51044
-2019F,LA,MGCCP,259,265,292,281,279,299,322,336,350,365,381,393,420,441,446,465,495,514,538,541,168,178,184,235,207,235,239,249,237,222,318,258,245,41,41,41,41,41,41,41,2166,951,784,2122,1483,1057,43,2800,43,43,43,43,43,44,42,780,791,803,816,823
-2019F,LA,MGICP,562,584,607,553,507,548,411,378,354,308,302,274,253,221,211,173,146,131,104,82,62,89,786,525,346,486,393,374,344,292,337,356,345,656,796,771,773,825,655,570,607,1162,1220,1306,1497,1410,1398,1643,675,660,1062,1139,1084,1161,779,741,762,769,780,775
-2019F,LA,MGTCP,22550,22980,23926,24588,25597,27404,29025,30139,32176,33310,34850,35858,38974,41112,41354,43192,46286,48322,50064,49078,47157,48933,50411,50471,50391,49302,49922,48217,48817,46885,43967,43005,45117,46073,45627,47247,50871,46918,50105,49717,54489,53482,55065,57453,55756,56846,63493,57866,51529,55092,54887,54507,52899,54766,53868,56042,54158,52263,51893,52642
-2019F,LA,MGTXP,22550,22980,23926,24588,25597,27404,29025,30139,32176,33310,34850,35858,38974,41112,41354,43192,46286,48322,50064,49078,47157,48933,50411,50471,50391,49302,49922,48217,48817,46885,43967,43005,45117,46073,45627,47247,50871,46918,50105,49717,54489,53482,55065,57453,55756,56846,63493,57866,51529,55092,54887,54507,52899,54766,53868,56042,54158,52263,51893,52642
-2019F,LA,MSICP,1258,1404,1541,816,816,796,1128,1054,1176,1095,978,2340,2398,2971,3807,5127,7448,8425,7329,6783,6431,4335,3800,3406,2925,2945,3807,3823,4636,4265,3837,3345,2193,2076,2320,2129,378,415,505,475,506,3980,4275,4013,3614,3594,2392,2347,2498,2670,2791,2897,2842,4363,4658,4816,4877,4969,4948,4503
-2019F,LA,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10229,17157,16507,14156,4038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,NGACP,31668,33536,33561,38681,43073,54102,54589,56936,56980,71905,71343,76126,79534,80198,76236,61086,80466,83081,80743,57633,74283,78768,62290,47176,49212,42290,46050,51439,56573,49847,55770,53631,54045,56212,63279,64760,67802,71585,60463,48290,50733,48354,50809,47138,45096,41845,48008,52269,53430,49949,46903,51908,49246,36783,50578,36578,84797,101227,133367,160918
-2019F,LA,NGCCP,23483,26388,19895,22407,26313,22567,24721,51062,56937,54010,70321,67515,66331,59518,58097,50662,43567,44563,65300,115743,39996,39507,33729,34906,33088,30228,27985,27845,27475,27156,24937,25452,28445,25157,24184,23833,25746,25613,24042,24559,25687,24604,25540,25161,24700,25085,22240,23863,22869,23672,27009,25925,26294,28875,31277,30270,28931,28322,34848,32980
-2019F,LA,NGEIP,119818,126082,135896,146763,158631,175573,210206,223272,253266,316671,331750,361631,383398,364568,343617,356130,365843,349986,369183,401399,424991,415912,372632,296490,300857,285039,267862,246912,250323,262484,285802,271224,260355,244684,278817,324646,253966,279258,320034,322360,304791,243017,323804,236408,245361,285022,195927,224419,236543,222486,270528,293245,322632,267629,264668,342506,330541,279290,300919,341847
-2019F,LA,NGICP,739059,785457,767343,820123,845558,796546,845852,988720,1076547,1237404,1281278,1298759,1327652,1412503,1438570,1224489,1458372,1618868,1651968,1315799,1181644,1166071,1018906,966107,1141661,968129,1038538,1113106,1051626,1158789,1168095,1120187,1153178,1195958,1166331,1212667,1212305,1231900,1117082,1055172,1105778,946831,981801,955184,992049,920530,997780,1045879,973434,945579,1058485,1097015,1132986,1106812,1115976,1109590,1202818,1241531,1318255,1363555
-2019F,LA,NGRCP,55799,57146,58089,62628,70658,61048,66946,74386,77762,82965,86148,79893,82847,93072,91844,96221,95457,94350,81978,87808,73093,81458,68495,68304,69529,60679,58129,61377,59707,57705,53392,54593,55221,56609,52981,52603,56626,52709,47574,45104,49744,49003,49147,47330,42736,41155,33435,37150,37225,36512,45516,39412,31834,38820,44518,36858,31383,29074,37838,36019
-2019F,LA,NGTCP,969827,1028609,1014784,1090602,1144233,1109836,1202314,1394376,1521492,1762955,1840840,1883924,1939762,2009859,2008364,1788588,2043705,2190848,2249172,1978382,1794007,1781716,1556052,1412983,1594347,1386365,1438564,1500679,1445704,1555981,1587996,1525087,1551245,1578619,1585591,1678509,1616445,1661066,1569196,1495484,1536732,1311809,1431099,1311220,1349942,1313637,1297389,1383580,1323501,1278197,1448441,1507505,1562992,1478919,1507018,1555802,1678470,1679444,1825226,1935320
-2019F,LA,NGTPP,297.5,312.9,303.4,322.9,332,317.5,338.7,389.4,422.3,487.1,504.1,507.7,515.7,530.5,525.7,460.3,517.3,545.7,552.8,478.1,424.8,416,357.5,321.5,362.3,314.5,326.4,345.4,337.1,365.9,376.2,358.6,361.3,365.7,364.7,383.3,367.5,375.7,353.4,335.2,343.6,293,318.2,290,296.5,287,301.5,316.2,298.4,284.6,318.7,329.4,339.6,319.7,324.4,333.4,358.5,359.3,391.3,415.5
-2019F,LA,NGTXP,850009,902527,878888,943839,985602,934263,992108,1171104,1268226,1446284,1509090,1522293,1556364,1645291,1664747,1432458,1677862,1840862,1879989,1576983,1369016,1365804,1183420,1116493,1293490,1101326,1170702,1253767,1195381,1293497,1302194,1253863,1290890,1333935,1306775,1353863,1362480,1381808,1249162,1173124,1231941,1068793,1107296,1074812,1104581,1028615,1101463,1159161,1086958,1055712,1177913,1214260,1240360,1211290,1242349,1213296,1347929,1400154,1524308,1593472
-2019F,LA,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2457,10637,12324,13785,12391,14197,13956,10356,14398,12779,15686,15765,13511,16428,13112,15796,17336,17305,16126,17080,15676,16735,17078,15371,16782,18639,16615,15659,16954,17311,15301,17152,15410,17153,13981
-2019F,LA,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2457,10637,12324,13785,12391,14197,13956,10356,14398,12779,15686,15765,13511,16428,13112,15796,17336,17305,16126,17080,15676,16735,17078,15371,16782,18639,16615,15659,16954,17311,15301,17152,15410,17153,13981
-2019F,LA,OPICP,11771,11935,12525,27394,29814,29163,36762,42745,47518,49694,50931,55409,61693,65820,67430,62733,80326,93238,101135,112312,114605,89561,69013,70450,67960,64161,78173,80219,89119,89709,97484,91823,102880,98571,104903,99742,108747,119526,114441,112858,114206,119335,122907,139950,158209,148495,164591,178790,169447,130399,140264,130673,114769,104666,104290,101820,101591,109611,105167,103920
-2019F,LA,OPTCP,11771,11935,12525,27394,29814,29163,36762,42745,47518,49694,50931,55409,61693,65820,67430,62733,80326,93238,101135,112312,114605,89561,69013,70450,67960,64161,78173,80219,89119,89709,97484,91823,102880,98571,104903,99742,108747,119526,114441,112858,114206,119335,122907,139950,158209,148495,164591,178790,169447,130399,140264,130673,114769,104666,104290,101820,101591,109611,105167,103920
-2019F,LA,OPTXP,11771,11935,12525,27394,29814,29163,36762,42745,47518,49694,50931,55409,61693,65820,67430,62733,80326,93238,101135,112312,114605,89561,69013,70450,67960,64161,78173,80219,89119,89709,97484,91823,102880,98571,104903,99742,108747,119526,114441,112858,114206,119335,122907,139950,158209,148495,164591,178790,169447,130399,140264,130673,114769,104666,104290,101820,101591,109611,105167,103920
-2019F,LA,P1ICP,20187,20840,22349,35989,40071,39744,47830,54641,59479,62659,63573,67381,73645,79095,79659,74723,93285,106673,115344,126700,131568,107287,89183,84151,81242,78010,91998,95216,104128,104737,112002,105544,117782,114982,120591,115109,125305,139722,131508,130949,132489,138583,142050,160075,178775,169747,187948,199881,187913,150079,161080,150604,134559,123949,123355,119395,119424,128695,123729,121151
-2019F,LA,P1TCP,21897,22276,24152,37930,42089,41780,50048,56085,61034,64156,65024,68597,74879,80697,81095,76033,94488,108310,117046,128476,133093,110915,90475,85206,82169,78920,92842,96104,105071,105637,113008,106333,120429,121565,125239,118943,129047,143876,135668,134812,136130,142909,146021,164217,182912,173797,191982,204178,191989,153510,167249,159695,140591,133074,132905,127539,128911,137890,132374,127930
-2019F,LA,P1TXP,21897,22276,24152,37930,42089,41780,50048,56085,61034,64156,65024,68597,74879,80697,81095,76033,94488,108310,117046,128476,133093,110915,90475,85206,82169,78920,92842,96104,105071,105637,112883,106333,118561,115919,121457,115915,126093,140636,132415,131871,133359,139600,142813,160821,179555,170486,188664,200557,188579,150677,161824,151361,135210,124632,123992,120083,120053,129315,124248,121675
-2019F,LA,PAACP,40314,39502,40178,41344,43412,46213,47749,50947,54470,56581,57736,57024,62805,70915,77346,80154,82965,89139,90337,93111,100321,102892,92287,98523,98088,96767,108435,106023,112564,113397,111863,117973,117663,117635,123707,123704,135168,127866,127368,129177,141711,126424,129961,130245,127658,121330,130064,118231,111782,112106,102277,104096,94393,94492,88518,92642,89482,93402,82729,84524
-2019F,LA,PACCP,2841,2617,2522,2613,2489,2339,2436,1868,2283,3048,3062,2821,3209,4317,4733,4910,5963,8864,8510,16260,14961,18979,17767,4011,3034,3850,3827,2049,1703,1405,1375,1350,1067,1024,1039,512,445,642,769,1224,3253,1938,1539,2869,2210,1830,670,3640,888,1787,1252,1284,1147,694,807,1532,1699,1775,1696,1749
-2019F,LA,PAEIP,58,48,69,52,98,54,48,45,65,56,156,469,1226,7726,8849,5787,13102,22394,24849,14514,8270,4552,1670,672,272,191,709,118,543,521,359,89,1960,6348,4216,3119,3461,4350,4302,3584,3820,6323,3349,5229,6519,6493,3742,4154,3942,2969,5621,8416,5439,8516,8997,7579,8888,8619,8167,6303
-2019F,LA,PAICP,44222,46153,49877,65563,73141,72225,82053,89820,100073,110561,112952,118142,135748,146448,149440,138226,157228,177280,186970,226430,221112,223984,216776,203817,181500,178637,178841,177753,185258,181641,190244,192394,207855,208939,228718,222288,234961,228095,214625,245546,277651,241118,247308,224196,247588,236084,260839,269611,312703,299198,279264,275995,271413,265248,258165,263157,258565,278775,276051,283968
-2019F,LA,PARCP,1344,1494,1609,1587,1539,1846,1783,1640,2031,2585,2318,2476,2580,2357,2178,1796,1673,1871,1565,1152,976,997,883,955,782,860,919,867,828,802,674,713,904,610,594,540,687,829,1144,1664,1927,1804,962,768,702,841,864,546,690,845,734,697,447,465,548,472,444,450,457,509
-2019F,LA,PATCP,88779,89815,94255,111160,120678,122677,134068,144320,158922,172831,176224,180931,205568,231763,242545,230872,260930,299549,312231,351467,345640,351404,329383,307978,283675,280304,292730,286809,300896,297765,304516,312517,329450,334556,358274,350162,374722,361782,348208,381195,428363,377607,383119,363307,384677,366578,396178,396182,430005,416905,389149,390489,372839,369415,357034,365382,359078,383022,369101,377053
-2019F,LA,PATPP,27.2,27.3,28.2,32.9,35,35.1,37.8,40.3,44.1,47.8,48.3,48.8,54.6,61.2,63.5,59.4,66,74.6,76.7,84.9,81.8,82,75.7,70.1,64.5,63.6,66.4,66,70.2,70,72.1,73.5,76.7,77.5,82.4,80,85.2,81.8,78.4,85.5,95.8,84.3,85.2,80.4,84.5,80.1,92.1,90.5,96.9,92.8,85.6,85.3,81,79.9,76.8,78.3,76.7,82,79.1,80.9
-2019F,LA,PATXP,88721,89767,94186,111108,120581,122623,134020,144275,158857,172774,176068,180463,204342,224038,233696,225085,247829,277155,287382,336953,337370,346852,327713,307306,283403,280113,292022,286691,300353,297244,304157,312429,327489,328208,354058,347043,371261,357432,343906,377611,424543,371284,379770,358078,378158,360085,392436,392028,426063,413936,383527,382073,367401,360899,348037,357802,350190,374402,360934,370750
-2019F,LA,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,1867,5645,3782,3028,2954,3240,3253,2940,2771,3309,3208,3395,3357,3311,3318,3621,3410,2833,5425,8333,5381,8442,8914,7455,8858,8575,8127,6255
-2019F,LA,PCICP,4892,6150,6667,5266,6751,6736,6698,7109,7411,7650,7336,7121,6849,6870,5450,5948,7364,7655,7627,7764,8577,9446,10739,8899,9918,10747,10707,11396,11236,11341,11491,11001,11993,13307,12705,12444,13596,13600,13973,15202,15493,15376,15411,15541,16240,15417,17158,16577,14983,16527,17708,17048,17195,16625,16366,15574,16352,15978,15774,14678
-2019F,LA,PCTCP,4892,6150,6667,5266,6751,6736,6698,7109,7411,7650,7336,7121,6849,6870,5450,5948,7364,7655,7627,7764,8577,9446,10739,8899,9918,10747,10707,11396,11236,11341,11616,11001,13860,18952,16487,15472,16550,16839,17226,18142,18264,18685,18620,18936,19597,18728,20476,20198,18392,19359,23133,25381,22576,25067,25280,23029,25210,24553,23901,20933
-2019F,LA,PCTXP,4892,6150,6667,5266,6751,6736,6698,7109,7411,7650,7336,7121,6849,6870,5450,5948,7364,7655,7627,7764,8577,9446,10739,8899,9918,10747,10707,11396,11236,11341,11491,11001,11993,13307,12705,12444,13596,13600,13973,15202,15493,15376,15411,15541,16240,15417,17158,16577,14983,16527,17708,17048,17195,16625,16366,15574,16352,15978,15774,14678
-2019F,LA,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,728,2379,2702,360,0,0,0,0,-4,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18416,17429,16518,19563,17628,17299,21112,24798,27204,28026,28569,28502,29941,27742,24291,29257,23263,14878,10422,9854,9507,8048,5512,6765,5533,4210,4680,1646,2541,2836,2810,5102,3566,5493,7113,10596
-2019F,LA,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18416,17429,16518,19563,17628,17299,21112,24798,27204,28026,28569,28502,29941,27742,24291,29257,23263,14878,10422,9854,9507,8048,5512,6765,5533,4210,4680,1646,2541,2836,2810,5102,3566,5493,7113,10596
-2019F,LA,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,14,13,13,11,11,11,44,31,33
-2019F,LA,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,250,251,217,225,247,205,263,346,288,365
-2019F,LA,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21107,23008,32645,37236,25262,30382,26396,23319,22917,16316
-2019F,LA,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,728,695,446,463,545,465,437,442,455,503
-2019F,LA,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22101,23969,33320,37937,26066,31063,27107,24152,23692,17217
-2019F,LA,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22101,23969,33320,37937,26066,31063,27107,24152,23692,17217
-2019F,LA,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16040,16546,17212,17230,16603,16360,16773,17201,17280,16425
-2019F,LA,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16040,16546,17212,17230,16603,16360,16773,17201,17280,16425
-2019F,LA,RFACP,7944,7905,5945,5683,6029,7297,6576,9995,9543,10477,9699,6394,6251,10211,14365,16835,18453,20733,18883,21428,31159,23700,18460,17322,16844,17277,23908,21593,23192,23966,21737,24690,28901,26582,23628,22664,25489,19497,20255,20336,27170,10243,10400,9670,10875,10456,13385,14782,14597,14181,14001,13265,12927,11255,6431,4049,5192,12485,3495,2432
-2019F,LA,RFCCP,304,282,164,148,284,206,135,246,251,525,502,488,516,1050,1451,1830,2204,3429,3312,8770,13466,15376,16622,1245,832,575,231,267,215,251,40,120,6,0,0,0,1,0,0,0,0,0,0,71,61,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,RFEIP,36,30,43,33,61,34,30,28,41,35,98,402,1029,7649,8762,5699,13015,22310,24786,14475,7096,3119,1280,323,131,59,631,49,396,225,75,16,18,634,336,13,308,1024,968,592,709,2361,34,1623,2971,3038,375,469,463,60,140,31,3,5,2,11,0,0,0,0
-2019F,LA,RFICP,485,495,438,811,902,353,266,346,382,759,819,751,863,1902,3875,4046,5375,7560,7004,15758,12363,13265,10352,18333,12254,6806,1747,2183,2872,1411,1131,1118,992,307,228,382,745,1013,733,1194,1368,992,1315,2854,1369,2773,3201,590,2051,1631,3101,4441,1371,428,333,337,798,613,606,483
-2019F,LA,RFTCP,8769,8712,6591,6675,7277,7889,7007,10615,10215,11797,11118,8036,8659,20812,28453,28410,39047,54033,53986,60431,64084,55459,46714,37223,30062,24717,26518,24093,26675,25853,22982,25944,29916,27523,24193,23059,26543,21535,21955,22123,29246,13596,11749,14218,15277,16322,16961,15841,17110,15873,17243,17737,14301,11688,6766,4398,5990,13098,4101,2915
-2019F,LA,RFTXP,8733,8682,6548,6642,7216,7855,6977,10587,10175,11761,11020,7634,7630,13163,19691,22711,26032,31723,29200,45956,56989,52340,45434,36901,29931,24658,25886,24044,26279,25628,22907,25928,29898,26889,23856,23046,26235,20510,20988,21530,28537,11235,11715,12595,12306,13284,16586,15371,16648,15813,17102,17706,14298,11683,6764,4386,5990,13098,4101,2915
-2019F,LA,SGICP,10484,10503,10958,10625,11109,11621,12023,13903,15414,16970,16931,17842,19743,21099,20993,20688,23473,24373,25676,26784,26961,28306,27532,27042,28882,30505,35130,35328,37364,37009,37534,36757,38497,38252,37485,37629,38377,37799,38781,39324,39520,39961,40166,42066,42014,38502,45254,43601,41996,43433,45832,46303,48509,47320,47062,45984,46229,44781,45594,43797
-2019F,LA,SNICP,0,0,0,0,131,142,112,94,100,110,117,80,85,86,86,74,80,83,100,102,98,80,74,87,117,90,0,0,0,0,0,70,83,83,65,56,86,83,123,167,112,122,159,125,79,97,78,87,95,51,29,25,16,271,287,269,253,170,156,162
-2019F,LA,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,6,7,8,15,16
-2019F,LA,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2
-2019F,LA,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,22,58,99,147,184,192,214,224
-2019F,LA,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,24,61,104,153,191,202,230,242
-2019F,LA,TPOPP,3260,3287,3345,3377,3446,3496,3550,3581,3603,3619,3652,3710,3762,3788,3820,3886,3951,4014,4069,4138,4223,4283,4353,4395,4400,4408,4407,4344,4289,4253,4222,4253,4293,4316,4347,4379,4399,4421,4440,4461,4472,4478,4497,4521,4552,4577,4303,4376,4436,4492,4545,4576,4602,4626,4646,4667,4681,4674,4664,4658
-2019F,LA,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7258,-8157,-4686,-8246,-8835,-9094,-9376,-7255,-9831,-9683,-11949,-9724,-10910,-7490,-8775,-3104,-2768,-8726,-8115,-11276,-2117,-3842,-1421,-2115,74,2111,1917,-1580,-2392,897,1800,2027,530,-2575,-564,267,2332,942,4190
-2019F,LA,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,WXICP,28,28,25,24,23,25,0,0,0,0,0,41,43,55,54,48,89,74,76,75,73,47,36,40,39,40,39,42,43,43,43,76,81,87,88,88,77,69,67,59,52,61,54,52,51,52,61,51,45,29,40,35,36,35,32,26,27,19,23,19
-2019F,LA,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,LA,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,ARICP,2270,2270,2295,2253,2353,2867,2669,2811,2523,2867,2843,2825,2550,3149,2658,1832,2049,1920,1842,1448,1231,1390,1522,1131,1098,1051,1114,1479,1763,1426,1339,1976,1567,1454,886,1249,1270,916,838,967,1793,1818,1885,1405,1448,1316,1572,929,220,2258,2303,2320,2169,2096,2313,2197,2293,2330,2149,2071
-2019F,MA,ARTCP,2270,2270,2295,2253,2353,2867,2669,2811,2523,2867,2843,2825,2550,3149,2658,1832,2049,1920,1842,1448,1231,1390,1522,1131,1098,1051,1114,1479,1763,1426,1339,1976,1567,1454,886,1249,1270,916,838,967,1793,1818,1885,1405,1448,1316,1572,929,220,2258,2303,2320,2169,2096,2313,2197,2293,2330,2149,2071
-2019F,MA,ARTXP,2270,2270,2295,2253,2353,2867,2669,2811,2523,2867,2843,2825,2550,3149,2658,1832,2049,1920,1842,1448,1231,1390,1522,1131,1098,1051,1114,1479,1763,1426,1339,1976,1567,1454,886,1249,1270,916,838,967,1793,1818,1885,1405,1448,1316,1572,929,220,2258,2303,2320,2169,2096,2313,2197,2293,2330,2149,2071
-2019F,MA,AVACP,968,843,1489,1670,1860,1702,1239,625,313,283,276,264,305,280,288,228,220,271,362,269,274,209,166,164,138,134,145,123,127,118,97,45,45,85,73,84,90,87,87,96,116,80,77,81,95,117,49,87,50,97,56,53,50,43,74,71,69,67,77,77
-2019F,MA,AVTCP,968,843,1489,1670,1860,1702,1239,625,313,283,276,264,305,280,288,228,220,271,362,269,274,209,166,164,138,134,145,123,127,118,97,45,45,85,73,84,90,87,87,96,116,80,77,81,95,117,49,87,50,97,56,53,50,43,74,71,69,67,77,77
-2019F,MA,AVTXP,968,843,1489,1670,1860,1702,1239,625,313,283,276,264,305,280,288,228,220,271,362,269,274,209,166,164,138,134,145,123,127,118,97,45,45,85,73,84,90,87,87,96,116,80,77,81,95,117,49,87,50,97,56,53,50,43,74,71,69,67,77,77
-2019F,MA,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,3,10,29,39,33,35,29,98,73,402,354,420,630,681,377,295
-2019F,MA,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,3,10,29,39,33,35,29,98,73,402,354,420,630,681,377,295
-2019F,MA,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,CLACP,22,5,4,3,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,CLCCP,338,267,256,196,186,159,143,131,128,99,82,86,74,89,90,71,68,66,49,43,79,107,126,113,176,107,59,42,49,43,50,22,48,36,19,23,29,26,23,33,14,14,77,44,32,40,15,21,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,CLEIP,2446,2836,2981,3198,3673,4066,3740,3175,2828,1893,575,265,68,13,908,804,0,0,0,50,676,845,3182,3413,4080,3863,3596,4267,4260,4503,4234,4383,4082,3693,3882,4080,4427,4826,4312,4439,4485,4359,4603,4390,4357,5025,4750,5120,4581,3892,3497,1763,954,1718,1244,1005,907,559,0,0
-2019F,MA,CLICP,1266,1157,1036,801,609,496,322,521,363,324,149,101,118,67,79,110,74,76,67,82,98,60,88,112,106,176,112,165,140,113,73,85,155,115,65,42,38,37,35,33,55,54,44,57,54,68,77,85,84,50,66,62,61,59,57,45,4,4,4,3
-2019F,MA,CLKCP,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,CLOCP,1159,1157,1036,801,609,496,322,521,363,324,149,101,118,67,79,110,74,76,67,82,98,60,88,112,106,176,112,165,140,113,73,85,155,115,65,42,38,37,35,33,55,54,44,57,54,68,77,85,84,50,66,62,61,59,57,45,4,4,4,3
-2019F,MA,CLRCP,487,384,368,271,256,210,190,173,163,126,104,83,56,52,42,30,28,26,15,11,21,23,26,22,41,30,18,13,14,11,13,5,10,8,3,4,4,3,3,4,2,2,11,7,4,3,1,2,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,CLTCP,4559,4648,4645,4470,4727,4932,4396,4002,3483,2443,910,535,317,221,1119,1016,170,167,131,185,874,1035,3422,3660,4403,4176,3785,4487,4463,4670,4370,4494,4295,3852,3970,4149,4498,4891,4373,4509,4556,4429,4735,4498,4446,5136,4843,5229,4664,3941,3563,1824,1015,1778,1301,1050,911,563,4,3
-2019F,MA,CLTXP,2113,1812,1664,1272,1053,866,656,826,655,549,335,269,249,208,211,212,170,167,131,136,198,190,240,247,323,313,189,220,203,167,136,112,213,159,87,69,71,66,61,70,71,70,132,108,89,111,93,109,84,50,66,62,61,59,57,45,4,4,4,3
-2019F,MA,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,DFACP,2371,2311,2150,2706,2730,2632,2652,2606,3451,3472,3198,3393,4124,4529,4403,4485,4437,4057,4474,5142,4900,4970,5803,6707,7136,7600,7869,8461,8036,7778,7457,7434,7468,7843,8181,8780,8628,8945,8884,9301,10050,10480,10431,10333,11721,12255,11986,11885,10882,10898,11026,11562,10702,13934,10713,11472,11486,10588,11339,11135
-2019F,MA,DFCCP,11965,12309,12623,11955,11562,12933,11554,12477,12842,13230,13438,13990,14441,14519,13632,13204,14300,13912,13292,9163,7510,5759,5509,5444,6403,6369,7443,6935,7284,8615,7409,8809,7773,6756,6172,6478,5637,5678,5404,3830,5205,4218,3835,5738,4312,4712,3265,3253,2434,3167,5438,3593,2266,2336,2639,2692,1472,1687,1597,1708
-2019F,MA,DFEIP,277,282,282,269,287,337,455,577,656,859,1176,1182,1241,880,710,461,346,331,344,432,606,281,407,511,1016,822,1026,1124,1534,1724,614,511,453,469,724,678,603,461,559,593,376,325,441,952,607,381,155,144,192,254,138,143,107,257,454,346,68,174,288,65
-2019F,MA,DFICP,2322,2290,2428,2336,2361,2841,2648,2905,2992,3057,2897,2938,3072,3073,2746,2654,2797,2820,2569,2436,1886,2322,2101,1332,1567,1165,1744,4414,2806,2821,2585,1383,2157,1496,1247,1278,1219,1130,1011,1217,944,1283,978,1961,1947,1895,1591,1360,1573,877,1241,1265,674,622,742,961,815,933,822,780
-2019F,MA,DFRCP,34305,35292,36192,34276,33151,37082,33128,35775,36820,37934,38530,40113,41406,41628,39084,37860,41000,39889,38110,26272,22712,18702,18086,17563,20657,20064,20615,21218,21221,22823,20540,19261,21874,21893,21986,20064,18362,18332,16979,17825,20445,22293,22066,20816,19337,18425,15645,15882,15793,14276,14593,14210,11922,12856,14584,14465,11231,12279,13315,13161
-2019F,MA,DFTCP,51240,52484,53674,51541,50091,55825,50436,54341,56762,58552,59239,61616,64284,64628,60575,58665,62879,61008,58788,43445,37613,32035,31906,31557,36779,36020,38697,42152,40881,43762,38606,37398,39725,38457,38311,37278,34449,34545,32837,32766,37019,38599,37750,39799,37923,37668,32642,32524,30872,29473,32437,30773,25672,30005,29132,29937,25072,25660,27361,26850
-2019F,MA,DFTXP,50963,52202,53393,51272,49804,55487,49981,53764,56106,57694,58063,60434,63043,63748,59865,58204,62533,60678,58444,43013,37006,31754,31499,31046,35762,35198,37671,41028,39347,42037,37991,36888,39272,37988,37586,36600,33845,34084,32278,32173,36643,38274,37309,38847,37316,37287,32487,32380,30681,29219,32298,30630,25564,29748,28678,29590,25004,25486,27073,26784
-2019F,MA,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,364,0,0,61,32,332,116,201,328,339,326,11,80,2,3,8,1,0,0,0
-2019F,MA,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4311,3628,4845,2872,2060,1921,2281,1660,1840,1533,1790,1591,1863,1766,1934,2143,1137,497,274,512,2577,697,936,4177,4911,3714,4436,1073,1247,1422,1338,1012,144,980,12
-2019F,MA,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9175,6874,8890,12098,12222,12909,13579,6838,6850,13045,17567,18484,17818,13214,14798,14024,15965,14608,14773,15429,15563,17463,23801,26061,26576,25951,25112,24420,28978,33422
-2019F,MA,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4311,3628,4845,2872,2060,1921,2281,1660,1840,1533,1790,1591,1863,1759,1934,1779,1137,497,213,480,2244,580,734,3849,4573,3388,4426,993,1245,1419,1330,1011,144,980,12
-2019F,MA,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,197,1735,4690,6029,5028,5582,6968,6708,6525,6624,6588,6686,6722,6636,6628,6627
-2019F,MA,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,7,6,7,5,15,4,5,5,145,145,147,145,149
-2019F,MA,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,24,65,68,54,59,96,98,93,98,79,78,79,80,81,84
-2019F,MA,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,200,1760,4760,6104,5089,5647,7068,6821,6623,6727,6672,6909,6945,6863,6855,6860
-2019F,MA,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,ESACP,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,113,113,167,135,118,151,180,193,191,199,241,200,183,203,212,221,227,236,241,252,234,234,239,246,241,292,406,402,386,403,332,356,355,357,350,361,361,353,342,348,349,343
-2019F,MA,ESCCP,3011,3259,3464,3687,3964,4302,4690,5949,6529,7075,7782,8563,9372,10380,10147,11397,12100,12353,12682,12963,13047,13389,13691,14370,14883,15566,16561,17666,18732,19330,19520,19421,19563,19670,20105,20255,20711,21203,21773,21815,23439,24510,24685,25648,26020,26415,26237,27148,26582,17775,18243,17767,17723,17713,26076,26200,25934,25968,25952,25337
-2019F,MA,ESICP,5075,5314,5582,5723,6026,6546,7057,6578,7039,7339,7418,7515,7939,8417,7830,7330,7785,7951,8235,8443,8486,8956,8655,9046,9476,9454,9682,10043,10243,10381,10157,9794,9663,9605,9710,10026,10085,10148,10212,9966,10533,9757,10087,9984,9947,9871,9602,9450,9332,16754,17116,16974,16927,16463,7961,7892,7507,6859,6699,6342
-2019F,MA,ESRCP,4190,4466,4718,5030,5361,5766,6222,6929,7578,8406,9335,10200,10965,11715,11443,10648,11227,11089,11242,11422,11571,11684,11986,12436,12702,12907,13608,14475,15511,15772,15581,15379,15560,15785,16049,15993,16256,16278,16388,17392,17562,17984,18695,19591,19769,20539,19624,20138,19638,19475,21409,20473,20313,20728,20071,20175,19693,19338,20285,19315
-2019F,MA,ESRPP,812,856,896,941,984,1048,1124,1239,1349,1488,1636,1778,1904,2026,1982,1849,1955,1932,1960,1990,2014,2025,2077,2144,2175,2195,2305,2439,2594,2622,2587,2555,2581,2605,2633,2604,2630,2615,2613,2753,2761,2811,2913,3050,3083,3208,3061,3131,3036,2988,3260,3095,3048,3087,2967,2968,2884,2817,2946,2801
-2019F,MA,ESTCP,12381,13143,13870,14544,15456,16719,18073,19561,21251,22925,24639,26383,28381,30617,29525,29479,31218,31498,32272,32941,33271,34164,34450,36002,37242,38119,40042,42383,44727,45683,45442,44797,44998,45281,46091,46510,47294,47882,48607,49407,51773,52496,53708,55514,56142,57228,55850,57139,55884,54359,57123,55570,55313,55265,54469,54621,53476,52513,53285,51337
-2019F,MA,ESTPP,2399,2518,2635,2722,2837,3039,3265,3497,3783,4057,4318,4598,4927,5296,5114,5120,5435,5489,5626,5740,5790,5922,5969,6208,6376,6482,6784,7141,7479,7594,7545,7443,7464,7471,7562,7573,7653,7691,7750,7821,8139,8206,8369,8644,8755,8937,8713,8884,8639,8340,8699,8402,8300,8230,8052,8035,7833,7651,7738,7446
-2019F,MA,ESTXP,12381,13143,13870,14544,15456,16719,18073,19561,21251,22925,24639,26383,28381,30617,29525,29479,31218,31498,32272,32941,33271,34164,34450,36002,37242,38119,40042,42383,44727,45683,45442,44797,44998,45281,46091,46510,47294,47882,48607,49407,51773,52496,53708,55514,56142,57228,55850,57139,55884,54359,57123,55570,55313,55265,54469,54621,53476,52513,53285,51337
-2019F,MA,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,FSICP,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,HLACP,4,4,5,8,9,22,13,15,20,17,29,35,38,39,37,33,35,40,53,39,26,58,49,58,103,70,62,51,62,62,59,69,63,62,88,50,45,47,45,156,56,41,39,39,32,40,34,29,55,25,17,17,17,14,15,18,21,33,7,6
-2019F,MA,HLCCP,253,224,271,279,279,311,273,273,294,329,314,317,353,324,319,338,358,396,380,217,227,240,240,285,289,344,383,457,449,534,457,414,410,452,467,488,579,543,497,512,634,575,465,735,471,766,726,647,750,647,582,645,590,729,802,736,560,563,892,792
-2019F,MA,HLICP,260,307,316,352,398,401,444,403,595,560,693,707,893,958,911,1099,1270,1560,1404,1436,1305,1676,1270,1114,607,448,879,984,740,639,973,404,372,460,333,387,495,163,185,348,651,859,649,191,67,371,1186,892,153,107,104,183,225,250,261,219,203,199,167,177
-2019F,MA,HLRCP,631,560,676,696,696,777,681,683,733,821,784,792,880,810,795,845,893,988,949,542,567,599,599,712,722,858,955,1142,1122,1333,1141,1032,1024,1129,1167,1218,1445,1356,1242,1279,1582,1435,1162,1644,1391,1698,1735,1794,1920,1795,1685,1989,1556,1864,2117,1979,1966,2118,2250,2694
-2019F,MA,HLTCP,1148,1095,1267,1335,1382,1511,1410,1374,1642,1727,1820,1852,2164,2131,2061,2315,2556,2984,2785,2234,2125,2572,2157,2169,1721,1719,2279,2634,2373,2567,2631,1919,1869,2102,2056,2143,2563,2109,1969,2295,2923,2910,2315,2608,1962,2875,3681,3362,2878,2574,2387,2835,2388,2858,3195,2952,2751,2913,3317,3670
-2019F,MA,HLTXP,1148,1095,1267,1335,1382,1511,1410,1374,1642,1727,1820,1852,2164,2131,2061,2315,2556,2984,2785,2234,2125,2572,2157,2169,1721,1719,2279,2634,2373,2567,2631,1919,1869,2102,2056,2143,2563,2109,1969,2295,2923,2910,2315,2608,1962,2875,3681,3362,2878,2574,2387,2835,2388,2858,3195,2952,2751,2913,3317,3670
-2019F,MA,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,3,0,5,6,6,6,5,6,5,6,5,6,3,4,4,6
-2019F,MA,HYEGP,865,687,673,596,566,564,704,694,686,789,682,636,789,488,359,350,424,375,163,373,96,368,189,215,234,200,329,247,150,396,1238,1104,995,872,931,858,1169,1014,1018,963,1053,694,865,1064,993,1041,1504,778,1142,1186,986,1137,903,982,891,817,708,1028,1130,970
-2019F,MA,HYICP,117,126,118,112,104,100,100,105,97,92,72,70,70,72,68,67,66,48,51,65,63,63,63,63,63,63,63,63,63,8,11,11,16,11,7,11,20,17,11,12,12,8,6,5,2,0,3,14,8,9,5,6,4,4,6,5,1,6,0,0
-2019F,MA,HYTCP,982,814,791,708,670,664,803,799,783,881,753,706,859,560,428,417,490,422,214,438,158,430,252,278,297,262,392,310,212,404,1249,1115,1011,882,938,869,1189,1032,1030,975,1065,703,875,1075,998,1042,1513,797,1156,1201,996,1149,912,992,902,827,713,1037,1134,976
-2019F,MA,HYTXP,117,126,118,112,104,100,100,105,97,92,72,70,70,72,68,67,66,48,51,65,63,63,63,63,63,63,63,63,63,8,11,11,16,11,7,11,20,17,11,12,12,8,10,11,5,0,9,19,14,15,10,12,9,9,11,10,4,10,4,6
-2019F,MA,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,JFACP,1209,1552,2066,2407,2415,3166,3730,5421,6565,7479,7864,8642,8788,8943,8152,7967,8005,8756,8454,8712,8563,7982,7358,7280,6899,6984,6913,7850,9320,10005,9806,9398,7880,7728,7433,6636,6873,7301,7736,8081,8204,7003,5609,6396,8235,9025,8387,8235,11060,6205,9117,9101,9053,9238,9869,10387,12108,12989,13356,14367
-2019F,MA,JFTCP,1209,1552,2066,2407,2415,3166,3730,5421,6565,7479,7864,8642,8904,9027,8220,8009,8032,8773,8470,8734,8573,7992,7360,7280,6899,6984,6913,7850,9320,10005,9806,9398,7880,7728,7433,6636,6873,7301,7736,8081,8204,7003,5609,6396,8235,9025,8387,8235,11060,6205,9117,9101,9053,9238,9869,10387,12108,12989,13356,14367
-2019F,MA,JFTXP,1209,1552,2066,2407,2415,3166,3730,5421,6565,7479,7864,8642,8788,8943,8152,7967,8005,8756,8454,8712,8563,7982,7358,7280,6899,6984,6913,7850,9320,10005,9806,9398,7880,7728,7433,6636,6873,7301,7736,8081,8204,7003,5609,6396,8235,9025,8387,8235,11060,6205,9117,9101,9053,9238,9869,10387,12108,12989,13356,14367
-2019F,MA,KSCCP,404,392,381,340,272,223,158,136,118,118,119,119,126,87,53,49,54,56,38,36,30,9,28,36,58,108,290,50,71,64,127,200,73,113,100,110,47,47,70,225,107,156,59,72,91,78,39,25,20,17,47,6,1,2,13,13,14,10,9,14
-2019F,MA,KSICP,456,413,354,363,508,590,454,382,385,469,549,685,440,220,282,227,322,318,310,324,345,240,230,39,65,52,36,43,48,57,18,18,92,15,17,35,14,21,23,22,11,32,9,9,11,75,5,2,1,10,3,1,0,0,1,2,1,1,3,0
-2019F,MA,KSRCP,4858,4719,4587,4087,3270,2682,1905,1635,1415,1420,1434,1427,1512,1041,637,591,644,672,456,433,323,181,510,164,684,577,501,530,300,270,163,151,259,250,218,130,148,190,197,179,191,197,127,244,279,299,238,161,63,99,100,62,29,30,52,44,52,36,35,43
-2019F,MA,KSTCP,5718,5524,5322,4790,4050,3496,2517,2153,1918,2008,2103,2231,2078,1347,971,867,1019,1045,804,793,698,430,768,239,807,737,826,623,418,392,308,369,424,378,336,275,209,257,290,426,308,386,195,324,381,452,282,188,84,127,150,68,31,32,67,59,66,47,47,57
-2019F,MA,KSTXP,5718,5524,5322,4790,4050,3496,2517,2153,1918,2008,2103,2231,2078,1347,971,867,1019,1045,804,793,698,430,768,239,807,737,826,623,418,392,308,369,424,378,336,275,209,257,290,426,308,386,195,324,381,452,282,188,84,127,150,68,31,32,67,59,66,47,47,57
-2019F,MA,LUACP,443,431,423,423,444,408,424,392,431,433,441,452,484,477,456,433,481,463,497,520,463,444,405,424,453,422,412,466,450,461,475,425,433,441,461,453,439,464,486,491,484,443,438,405,410,408,397,410,381,343,392,381,346,394,362,404,382,340,328,309
-2019F,MA,LUICP,356,347,403,403,423,507,527,396,435,497,506,447,479,498,477,353,392,377,405,424,377,362,330,346,368,343,336,380,366,375,386,346,352,359,375,369,358,378,396,400,394,361,357,330,334,332,324,334,310,279,337,304,274,286,299,326,308,294,288,266
-2019F,MA,LUTCP,799,778,826,826,867,915,951,788,866,930,947,899,963,974,933,786,873,840,902,944,841,806,735,770,821,765,748,846,816,837,861,770,785,800,836,821,797,842,882,891,877,804,794,734,744,740,721,745,691,622,728,686,620,680,661,730,690,633,616,575
-2019F,MA,LUTXP,799,778,826,826,867,915,951,788,866,930,947,899,963,974,933,786,873,840,902,944,841,806,735,770,821,765,748,846,816,837,861,770,785,800,836,821,797,842,882,891,877,804,794,734,744,740,721,745,691,622,728,686,620,680,661,730,690,633,616,575
-2019F,MA,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,MGACP,34725,35891,36865,37769,38163,39454,40978,42084,44812,46271,49314,50628,53427,55343,54058,54440,56128,56731,57261,55233,51161,51798,51647,52325,53603,54292,55812,57108,58744,57627,55642,53974,54938,55837,56466,58337,59356,60472,61902,63073,64443,64362,66073,65931,67203,67081,67399,69776,67214,65680,65653,64919,64521,64309,63419,64168,64895,63757,64221,63066
-2019F,MA,MGCCP,135,140,147,92,91,92,96,96,99,100,102,103,104,105,106,109,112,112,189,190,191,206,213,193,168,188,189,194,183,188,69,182,164,53,57,65,65,48,66,63,279,84,117,104,70,58,73,80,79,81,48,146,43,47,46,1388,1400,1416,1407,1416
-2019F,MA,MGICP,133,91,36,65,67,206,167,136,88,174,111,96,103,148,116,81,70,119,89,109,91,75,97,42,109,367,379,391,417,475,414,332,334,175,347,373,372,392,316,297,306,913,916,937,969,909,929,791,727,692,904,950,921,956,762,752,759,771,787,796
-2019F,MA,MGTCP,34993,36123,37048,37926,38321,39752,41241,42316,45000,46545,49527,50827,53634,55596,54280,54630,56310,56962,57539,55533,51443,52079,51956,52559,53880,54847,56380,57692,59344,58290,56125,54488,55436,56065,56871,58775,59794,60912,62284,63433,65029,65358,67106,66973,68242,68048,68400,70647,68020,66453,66604,66015,65485,65312,64226,66309,67054,65943,66415,65278
-2019F,MA,MGTXP,34993,36123,37048,37926,38321,39752,41241,42316,45000,46545,49527,50827,53634,55596,54280,54630,56310,56962,57539,55533,51443,52079,51956,52559,53880,54847,56380,57692,59344,58290,56125,54488,55436,56065,56871,58775,59794,60912,62284,63433,65029,65358,67106,66973,68242,68048,68400,70647,68020,66453,66604,66015,65485,65312,64226,66309,67054,65943,66415,65278
-2019F,MA,MSICP,107,120,131,70,70,68,53,50,55,52,46,46,47,59,75,102,219,248,216,200,189,230,202,181,155,156,150,150,182,168,151,155,102,96,107,99,222,244,297,279,297,86,92,87,78,77,68,67,71,76,79,82,81,164,175,181,183,191,191,173
-2019F,MA,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,NGACP,274,335,184,242,194,233,345,1981,1649,965,1081,655,657,580,674,506,628,487,503,651,675,675,1601,1033,1194,1381,1623,1119,1978,2254,1235,1512,1788,2265,1850,1919,2194,2494,1986,2756,2501,3312,4348,2142,1928,2582,2214,2437,1915,1862,4562,5417,4473,3458,8529,11149,8860,8374,8266,9977
-2019F,MA,NGCCP,10238,11804,14305,14632,14795,16301,18521,24737,25396,29821,35356,36994,36778,39288,37384,37812,37763,40598,45657,46701,53462,50131,61286,39640,41271,41382,43661,46522,48915,51508,50618,53188,64352,65429,84534,82270,96187,105813,90092,65136,63793,61677,64763,62590,56879,56665,52283,61504,72303,71546,72053,81068,73040,99781,105801,105171,104850,109470,118779,121518
-2019F,MA,NGEIP,10785,8524,8593,11146,13140,13097,9974,9246,8494,6234,5668,9695,7782,5969,7306,1437,2488,3049,1557,6886,5083,6892,15288,24396,32132,45161,14875,40183,19874,50423,60894,60774,75486,77781,100149,128212,102639,117259,101682,93126,88089,96294,128852,169252,157400,152429,168970,183231,154984,150161,185842,185903,179598,154217,134858,156795,156433,162964,133711,112746
-2019F,MA,NGICP,11574,11478,11852,14192,16899,19744,21036,18782,21867,21517,22556,25673,28892,25722,24409,23986,20261,22995,26030,21382,28943,30198,19299,34958,37344,33157,23896,34149,31577,35588,44326,54750,70872,71087,65451,63526,61822,64821,63033,78074,74864,81184,85951,44128,43546,47774,43316,46334,44700,39400,44239,47590,43928,46677,45581,44554,45721,47004,47524,48770
-2019F,MA,NGRCP,45015,49627,54081,58235,61671,64852,66322,73471,74919,78451,82646,83434,86171,83988,85495,90226,95107,93214,86756,80839,94424,96679,97633,91788,96817,97803,102295,104847,108631,111661,106809,102955,119670,121228,119642,105795,114365,112308,102062,105709,114077,106636,109279,125879,112780,118617,103882,115199,132817,132883,125602,129217,115310,116867,126902,126662,112082,121181,130296,135116
-2019F,MA,NGTCP,77886,81768,89015,98447,106699,114227,116198,128217,132325,136988,147307,156451,160280,155547,155268,153967,156247,160343,160503,156459,182587,184575,195107,191815,208758,218884,186350,226820,210975,251434,263882,273179,332168,337790,371626,381722,377206,402696,358855,344801,343324,349103,393194,403991,372532,378068,370664,408704,406719,395852,432298,449195,416349,421000,421671,444331,427946,448993,438576,428127
-2019F,MA,NGTPP,15.1,15.7,16.9,18.4,19.6,20.8,21,22.9,23.6,24.2,25.8,27.3,27.8,26.9,26.9,26.7,27.2,27.9,28,27.3,31.8,32,33.8,33.1,35.7,37.2,31.6,38.2,35.3,41.8,43.8,45.4,55.1,55.7,61,62.2,61,64.7,57.2,54.6,54,54.6,61.3,62.9,58.1,59,57.8,63.5,62.9,60.7,65.8,67.9,62.5,62.7,62.3,65.4,62.7,65.4,63.7,62.1
-2019F,MA,NGTXP,67101,73244,80422,87301,93559,101130,106224,118971,123831,130754,141639,146756,152498,149578,147962,152530,153759,157294,158946,149573,177504,177683,179819,167419,176626,173723,171475,186637,191101,201011,202988,212405,256682,260009,271478,253509,274567,285437,257173,251674,255235,252809,264342,234740,215132,225639,201695,225474,251735,245691,246456,263292,236751,266783,286813,287536,271513,286029,304865,315381
-2019F,MA,NUEGP,34,854,689,941,1189,966,1082,1273,1218,1143,1209,1435,1499,5120,2885,3781,3664,3675,5570,6077,3232,4331,4173,6063,1035,6133,2420,1136,1117,3015,5070,4417,4742,4339,3859,4486,5324,4310,5698,4518,5512,5144,5769,4978,5939,5475,5830,5120,5869,5396,5918,5085,5860,4331,5769,4995,5414,5047,4442,2177
-2019F,MA,NUETP,34,854,689,941,1189,966,1082,1273,1218,1143,1209,1435,1499,5120,2885,3781,3664,3675,5570,6077,3232,4331,4173,6063,1035,6133,2420,1136,1117,3015,5070,4417,4742,4339,3859,4486,5324,4310,5698,4518,5512,5144,5769,4978,5939,5475,5830,5120,5869,5396,5918,5085,5860,4331,5769,4995,5414,5047,4442,2177
-2019F,MA,OPICP,890,879,497,301,999,925,812,696,753,812,846,764,811,864,872,791,965,978,1060,1048,1008,1153,1035,1148,1396,1148,830,902,814,769,750,731,769,775,671,611,668,662,826,914,755,470,535,456,355,393,388,396,412,268,225,210,184,499,522,500,488,472,458,443
-2019F,MA,OPTCP,890,879,497,301,999,925,812,696,753,812,846,764,811,864,872,791,965,978,1060,1048,1008,1153,1035,1148,1396,1148,830,902,814,769,750,731,769,775,671,611,668,662,826,914,755,470,535,456,355,393,388,396,412,268,225,210,184,499,522,500,488,472,458,443
-2019F,MA,OPTXP,890,879,497,301,999,925,812,696,753,812,846,764,811,864,872,791,965,978,1060,1048,1008,1153,1035,1148,1396,1148,830,902,814,769,750,731,769,775,671,611,668,662,826,914,755,470,535,456,355,393,388,396,412,268,225,210,184,499,522,500,488,472,458,443
-2019F,MA,P1ICP,4351,4287,3548,3320,4284,4889,4462,4285,4097,4645,4745,4722,4280,4730,4288,3203,3728,3593,3617,3244,2962,3145,3117,2663,2927,2595,2316,2804,2991,2628,2493,3072,2781,2603,1950,2265,2310,1977,2082,2303,2953,2681,2786,2200,2148,2116,2288,1661,943,2816,2868,2834,2627,2882,3135,3025,3090,3096,2898,2780
-2019F,MA,P1TCP,11024,10673,10428,9840,10130,9904,8188,7073,6372,6900,7015,6983,6707,6614,5722,4504,5126,5054,4971,4503,4052,3988,4226,3452,4260,3836,3664,3974,3938,3541,3354,3892,3590,3492,2802,3042,3034,2764,2922,3294,3850,3558,3486,3000,3023,3018,3012,2345,1457,3372,3462,3336,3054,3351,3637,3557,3607,3549,3347,3223
-2019F,MA,P1TXP,11024,10673,10428,9840,10130,9904,8188,7073,6372,6900,7015,6983,6707,6614,5722,4504,5126,5054,4971,4503,4052,3988,4226,3452,4260,3836,3664,3974,3938,3541,3354,3892,3590,3492,2802,3042,3034,2764,2922,3294,3850,3558,3486,3000,3023,3018,3012,2345,1457,3372,3462,3336,3054,3351,3637,3557,3607,3549,3347,3223
-2019F,MA,PAACP,40927,43159,45042,46860,47438,49856,50457,53527,57818,59924,64336,66889,70190,72377,68839,68634,70694,71600,71932,71447,66287,66523,66887,67110,68477,70375,71820,74518,77414,77225,74901,71784,71256,72340,73065,74540,77434,78696,79169,81220,83891,82697,82981,83192,87699,89572,88626,90704,89944,83646,86544,86243,84854,88130,84547,86606,89160,88103,89439,89172
-2019F,MA,PACCP,22792,23070,23905,22017,23281,28062,27922,29131,29154,28446,28845,28416,28867,29022,25236,22823,24597,23110,21423,13384,12812,9363,10217,8398,10249,10165,11730,10487,11413,13227,12535,14141,12089,9933,9749,10211,8758,8555,7454,5815,7613,5555,5117,8460,7714,8277,5272,4840,4236,4616,6666,4730,3120,3337,3634,4879,3477,3700,3918,3950
-2019F,MA,PAEIP,10267,10458,10436,9963,10639,12494,16846,21381,24297,31797,43477,43683,47973,45922,37950,40415,46568,46919,48769,45822,46342,40779,31309,27574,27789,24467,33076,28739,32198,31365,24120,24640,21514,18352,15705,9820,9877,17504,22991,17735,14003,13709,10595,11927,11265,10685,3999,5072,3563,1462,468,333,253,672,1559,1269,576,472,763,175
-2019F,MA,PAICP,24942,24870,24919,22476,26488,33412,35180,36028,35336,33830,34188,32468,32706,33388,27416,22928,24891,23117,20763,14079,8906,11938,12108,10502,12514,12974,18883,15737,10609,9953,9070,6589,7798,8223,6568,5760,6086,5384,5374,5066,5954,7888,7061,6257,5851,6058,7109,5672,3784,4788,5236,5461,4561,4736,4917,4984,4883,5017,4695,4545
-2019F,MA,PARCP,39794,40571,41455,39059,37118,40541,35713,38093,38969,40175,40748,42332,43798,43478,40516,39295,42537,41549,39515,27247,23602,19482,19195,18439,22063,21499,22070,22890,22642,24425,21843,20444,23157,23271,23371,21412,19954,19878,18417,19282,22217,23925,23355,22703,21007,20422,17619,17837,17775,16170,16378,16261,13507,14750,16753,16488,13249,14434,15601,15898
-2019F,MA,PATCP,138722,142128,145757,140376,144964,164366,166118,178160,185574,194173,211594,213789,223535,224187,199957,194096,209287,206294,202401,171979,157949,148085,139716,132023,141092,139480,157579,152372,154277,156196,142469,137598,135815,132120,128459,121743,122109,130017,133405,129118,133678,133775,129109,132538,133537,135014,122625,124125,119303,110682,115292,113028,106295,111624,111411,114227,111346,111726,114415,113739
-2019F,MA,PATPP,26.9,27.2,27.7,26.3,26.6,29.9,30,31.8,33,34.4,37.1,37.3,38.8,38.8,34.6,33.7,36.4,36,35.3,30,27.5,25.7,24.2,22.8,24.2,23.7,26.7,25.7,25.8,26,23.7,22.9,22.5,21.8,21.1,19.8,19.8,20.9,21.3,20.4,21,20.9,20.1,20.6,20.8,21.1,19.1,19.3,18.4,17,17.6,17.1,15.9,16.6,16.5,16.8,16.3,16.3,16.6,16.5
-2019F,MA,PATXP,128455,131670,135320,130413,134325,151872,149273,156779,161277,162376,168117,170105,175562,178266,162007,153682,162720,159375,153632,126157,111607,107306,108407,104449,113303,115013,124503,123633,122079,124830,118349,112959,114301,113767,112754,111923,112232,112513,110414,111383,119675,120066,118514,120611,122271,124329,118626,119053,115739,109220,114824,112695,106042,110952,109852,112958,110770,111253,113652,113564
-2019F,MA,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,PCICP,379,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,PCTCP,379,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,PCTXP,379,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,17,17,14,15,18,21,33,7,6
-2019F,MA,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,582,645,590,729,802,736,560,563,892,792
-2019F,MA,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,104,183,225,250,261,219,203,199,167,177
-2019F,MA,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1685,1989,1556,1864,2117,1979,1966,2118,2250,2694
-2019F,MA,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2387,2835,2388,2858,3195,2952,2751,2913,3317,3670
-2019F,MA,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2387,2835,2388,2858,3195,2952,2751,2913,3317,3670
-2019F,MA,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MA,RFACP,1207,2126,2043,1878,1818,2472,1421,2384,2226,1968,3215,3475,3024,2766,1446,1049,1389,1282,832,1531,900,1062,1459,152,146,874,606,459,675,1174,1366,440,430,345,364,199,2002,1380,30,21,539,287,314,7,2,646,374,281,303,398,284,210,164,197,94,86,200,330,110,211
-2019F,MA,RFCCP,10036,10005,10483,9352,11077,14503,15841,16149,15801,14669,14872,13887,13844,13988,11127,9122,9774,8633,7524,3777,4854,3149,4227,2440,3331,3157,3426,2851,3426,3826,4473,4536,3670,2558,2953,3069,2430,2239,1417,1184,1388,523,642,1811,2771,2663,1170,835,953,704,552,340,220,222,134,51,31,24,13,20
-2019F,MA,RFEIP,9990,10175,10155,9694,10352,12157,16391,20804,23641,30939,42301,42502,46616,44958,37172,39912,46194,46571,48409,45368,45726,40488,30900,27063,26772,23645,32050,27616,30664,29641,23505,24129,21061,17883,14981,9143,9273,17043,22432,17142,13627,13384,10154,10975,10658,10304,3844,4928,3372,1208,329,191,145,416,1105,923,508,299,475,110
-2019F,MA,RFICP,17875,17895,18592,16403,19377,25076,27459,28299,27565,25393,25742,24005,24358,24479,19355,15891,17027,15026,13083,6854,2663,4719,5524,5351,7305,8399,13565,7144,3655,3389,2604,1398,2155,3491,2690,1458,1690,1723,1780,900,1099,2153,1732,969,720,767,1115,968,387,295,119,229,114,26,18,26,15,19,21,11
-2019F,MA,RFTCP,39108,40202,41273,37328,42624,54207,61113,67635,69233,72969,86130,83869,87842,86191,69100,65975,74384,71513,69849,57530,54143,49418,42111,35005,37554,36075,49646,38070,38420,38030,31948,30503,27315,24276,20988,13869,15396,22386,25658,19248,16653,16347,12843,13762,14152,14379,6504,7011,5015,2605,1285,969,644,861,1351,1085,755,672,619,352
-2019F,MA,RFTXP,29118,30026,31118,27633,32272,42050,44722,46831,45592,42030,43829,41367,41226,41233,31928,26063,28190,24942,21440,12162,8417,8930,11211,7942,10781,12430,17596,10454,7756,8389,8442,6374,6255,6394,6007,4726,6123,5342,3226,2106,3025,2963,2689,2787,3494,4075,2660,2084,1643,1397,955,779,499,445,246,162,246,373,144,242
-2019F,MA,SGICP,672,650,267,129,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,SNICP,0,0,0,0,704,762,668,556,596,653,693,601,644,651,646,555,515,537,646,654,629,749,697,819,1095,842,534,595,469,441,440,437,520,520,403,352,247,239,355,481,322,245,319,251,159,195,224,249,271,148,83,72,47,280,297,278,262,248,227,236
-2019F,MA,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,3,5,7,13,33,60,167,279,469,613,782,905,1280,1273
-2019F,MA,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,29,106,301,448,603,781,973,1154
-2019F,MA,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,3,11,19,33,41,64,70,84,95
-2019F,MA,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3,6,8,14,30,59,128,211,414,547,724,759
-2019F,MA,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,3,4,5,6,11,20,43,82,236,462,931,1314,1863,2304,3062,3280
-2019F,MA,TPOPP,5160,5219,5263,5344,5448,5502,5535,5594,5618,5650,5706,5738,5760,5781,5774,5758,5744,5738,5736,5738,5746,5769,5771,5799,5841,5881,5903,5935,5980,6015,6023,6018,6029,6061,6095,6141,6180,6226,6272,6317,6361,6398,6417,6423,6412,6403,6410,6432,6469,6518,6566,6614,6664,6715,6765,6797,6827,6864,6886,6895
-2019F,MA,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MA,WXICP,110,109,99,95,89,95,91,90,102,107,107,116,120,154,150,134,230,192,198,194,190,174,136,148,147,150,146,156,162,160,159,139,147,158,161,161,199,179,174,153,135,139,123,119,118,120,96,80,70,45,63,55,56,56,50,42,43,33,40,34
-2019F,MA,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,9,15,25,26,20,21,22,24
-2019F,MA,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,20,52,80,190,197,186,194,210,196,185
-2019F,MA,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,1,2,3,2
-2019F,MA,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,22,61,90,205,225,215,216,233,221,211
-2019F,MA,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,9,15,28,29,22,23,25,26
-2019F,MD,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,ARICP,1813,2369,2421,2676,2802,3289,2944,2975,2705,2565,2798,2955,3090,3844,3796,3246,3385,3479,3895,3520,2638,3014,3123,4312,5016,4520,5211,4823,4350,4500,5008,3703,3509,4684,4363,4236,3610,5619,4679,4375,4701,4315,4561,3455,3165,2979,2950,4229,3830,2553,2277,2139,2183,1887,2313,2499,2380,2542,1954,1879
-2019F,MD,ARTCP,1813,2369,2421,2676,2802,3289,2944,2975,2705,2565,2798,2955,3090,3844,3796,3246,3385,3479,3895,3520,2638,3014,3123,4312,5016,4520,5211,4823,4350,4500,5008,3703,3509,4684,4363,4236,3610,5619,4679,4375,4701,4315,4561,3455,3165,2979,2950,4229,3830,2553,2277,2139,2183,1887,2313,2499,2380,2542,1954,1879
-2019F,MD,ARTXP,1813,2369,2421,2676,2802,3289,2944,2975,2705,2565,2798,2955,3090,3844,3796,3246,3385,3479,3895,3520,2638,3014,3123,4312,5016,4520,5211,4823,4350,4500,5008,3703,3509,4684,4363,4236,3610,5619,4679,4375,4701,4315,4561,3455,3165,2979,2950,4229,3830,2553,2277,2139,2183,1887,2313,2499,2380,2542,1954,1879
-2019F,MD,AVACP,279,268,451,559,505,474,485,464,473,362,309,291,266,259,270,205,200,204,178,145,173,128,74,72,67,76,101,87,94,83,74,75,96,102,71,48,35,43,56,39,40,105,100,88,82,123,108,107,80,78,45,42,40,35,49,35,37,39,45,46
-2019F,MD,AVTCP,279,268,451,559,505,474,485,464,473,362,309,291,266,259,270,205,200,204,178,145,173,128,74,72,67,76,101,87,94,83,74,75,96,102,71,48,35,43,56,39,40,105,100,88,82,123,108,107,80,78,45,42,40,35,49,35,37,39,45,46
-2019F,MD,AVTXP,279,268,451,559,505,474,485,464,473,362,309,291,266,259,270,205,200,204,178,145,173,128,74,72,67,76,101,87,94,83,74,75,96,102,71,48,35,43,56,39,40,105,100,88,82,123,108,107,80,78,45,42,40,35,49,35,37,39,45,46
-2019F,MD,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,6,18,24,21,22,18,61,51,229,235,270,429,437,250,195
-2019F,MD,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,6,18,24,21,22,18,61,51,229,235,270,429,437,250,195
-2019F,MD,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,CLACP,87,23,22,21,23,20,18,15,13,11,10,7,4,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,CLCCP,117,108,119,152,149,100,62,50,48,45,36,34,26,32,38,24,19,33,26,155,29,33,85,84,65,94,97,136,96,43,38,34,11,12,31,258,36,49,47,41,74,67,3,5,51,29,38,33,34,27,18,23,19,9,7,1,0,0,0,0
-2019F,MD,CLEIP,3088,3277,3696,4275,4774,6018,6701,7162,7530,6829,5950,5373,4450,3901,4210,3873,5083,4423,4844,5285,5908,5197,5766,6221,7501,7046,7961,8228,9020,9074,8945,8632,8993,9521,9717,10141,10540,10417,10968,10980,11327,11158,11245,11780,11576,11710,11638,11884,11065,9805,9846,8917,6930,6789,7411,6036,5993,3780,4481,2676
-2019F,MD,CLICP,5067,5102,5492,5714,6168,6101,6006,6054,6194,6667,6174,5319,4320,6018,4527,3854,4496,3041,3445,4021,3367,3139,2729,2762,3013,2846,2664,2906,2614,2414,2200,2034,706,732,738,760,785,768,769,798,810,1286,1323,1254,1375,1349,1259,1221,1175,909,945,951,906,705,705,681,554,562,540,471
-2019F,MD,CLKCP,4149,4178,4630,4477,4981,5102,5045,5288,5114,5431,5095,4501,3560,5052,3809,3503,4289,2749,2805,3403,2644,2311,2079,2039,2126,2128,1938,1934,1920,1729,1255,994,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,CLOCP,918,923,862,1238,1187,999,961,767,1080,1236,1079,818,760,966,718,350,207,292,641,618,723,828,650,723,888,718,726,972,694,685,945,1040,706,731,738,760,785,768,769,798,810,1286,1323,1254,1375,1349,1259,1221,1175,909,945,951,906,705,705,681,554,562,540,471
-2019F,MD,CLRCP,169,156,171,210,206,133,82,66,61,57,46,32,20,19,18,10,8,13,8,39,8,7,17,16,15,27,29,41,27,11,10,8,2,3,5,39,5,6,6,6,9,8,0,1,6,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,CLTCP,8528,8665,9501,10373,11321,12372,12869,13347,13846,13609,12216,10765,8821,9974,8795,7761,9607,7510,8323,9500,9312,8376,8597,9083,10595,10012,10750,11311,11757,11541,11193,10709,9713,10268,10491,11198,11366,11239,11790,11824,12221,12519,12571,13039,13006,13091,12939,13142,12274,10740,10809,9891,7855,7503,8123,6718,6547,4342,5021,3147
-2019F,MD,CLTXP,5440,5388,5804,6098,6547,6354,6168,6185,6316,6779,6266,5392,4371,6073,4585,3888,4524,3087,3478,4215,3404,3179,2831,2862,3093,2967,2790,3083,2737,2468,2248,2076,720,747,774,1057,826,823,822,844,894,1361,1326,1259,1431,1381,1301,1258,1209,936,964,974,925,714,712,682,554,562,540,471
-2019F,MD,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,DFACP,2352,2515,3033,3277,4010,3774,4115,3385,4016,3867,4184,3917,4384,5344,5236,5244,4979,5589,5395,6271,5848,6342,5291,6365,5923,7506,8146,8303,8252,9846,8091,8794,9422,9212,8507,8744,9740,9729,10372,11960,12248,12513,12104,12706,13430,14510,14835,14853,12931,13370,14436,13619,12838,11749,12756,12968,12628,12557,12903,13318
-2019F,MD,DFCCP,2357,2584,2674,2795,2801,2800,2791,3062,3147,3033,3206,3109,3252,3368,3174,3291,3200,3352,3283,3635,2865,1568,1770,2789,3280,2169,1718,2210,2131,2228,2489,2659,2994,2868,3407,3097,3270,2481,2555,2212,2582,2513,2499,2300,2108,1785,1802,1188,1163,1592,1446,1440,1480,1346,1596,1535,1087,966,1287,1384
-2019F,MD,DFEIP,16,17,18,21,23,26,25,35,131,368,945,1558,1481,1273,2267,612,508,455,708,586,1101,818,751,918,966,830,748,807,857,1255,598,552,458,592,1040,674,792,650,694,535,582,976,709,1154,1137,1196,449,764,510,351,512,348,214,304,650,303,298,212,445,137
-2019F,MD,DFICP,2093,2481,2525,2618,2780,3177,3479,3153,3280,3462,3248,3436,3879,4285,3639,3434,3301,3665,3396,3942,3297,3093,2336,2337,2748,2844,2327,1900,1967,2340,2059,1801,1637,1906,1888,1737,2057,1711,2723,2366,2109,2334,1767,2047,2057,2062,2137,1542,1723,1179,1072,1271,1200,964,1168,1119,1063,922,949,1150
-2019F,MD,DFRCP,6053,6637,6867,7178,7193,7191,7168,7865,8082,7790,8234,7983,8353,8649,8152,8453,8218,8609,8433,9335,8797,6789,6166,6064,7132,5609,5371,6306,6778,5713,5090,4839,5183,5578,5545,4923,5811,5016,4314,4668,4865,4798,4400,4244,4098,4096,3385,3351,3282,3297,3429,2685,2310,2768,3228,3365,2006,1811,2518,1771
-2019F,MD,DFTCP,12870,14235,15116,15889,16807,16967,17579,17500,18655,18520,19817,20003,21350,22919,22469,21034,20205,21670,21216,23768,21908,18609,16314,18472,20049,18958,18310,19525,19985,21381,18327,18646,19694,20157,20387,19176,21670,19586,20657,21741,22387,23134,21479,22450,22830,23649,22607,21699,19609,19789,20895,19363,18042,17132,19398,19290,17081,16469,18103,17760
-2019F,MD,DFTXP,12854,14218,15099,15868,16783,16942,17553,17465,18524,18152,18872,18446,19868,21646,20202,20422,19698,21215,20508,23182,20807,17792,15563,17554,19083,18128,17562,18718,19128,20126,17729,18094,19236,19564,19347,18501,20878,18936,19963,21206,21805,22158,20770,21296,21693,22453,22158,20935,19099,19438,20383,19015,17828,16827,18748,18986,16784,16256,17658,17623
-2019F,MD,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0
-2019F,MD,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,111,204,0,300,181,192,116,4,16,0
-2019F,MD,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22330,17393,16202,15719,16068,16848,17750,16353,13945,14749,16882,19119,27834,27095,23045,23535,21335,21556,22030,24448,27224,26806,29117,30881,28525,30041,28799,29405,22859,25934
-2019F,MD,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,111,204,0,299,180,190,116,4,16,0
-2019F,MD,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,1,1,0,0,0,0,0,0,0,0,76,64,73,60,61,68,7,868,6,7,1387,3893,4869,4371,5166,6602,6354,6352,6753,6556,6723,6461,6424,6364,6447
-2019F,MD,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,2,3,4,3,3,4,3,172,174,178,180,184
-2019F,MD,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,21,62,78,60,64,79,81,76,81,85,55,57,59,59,60
-2019F,MD,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,1,1,0,0,0,0,0,0,0,0,76,64,73,61,62,69,7,881,6,7,1409,3957,4950,4433,5233,6685,6439,6431,6837,6644,6950,6693,6660,6604,6692
-2019F,MD,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,ESACP,19,19,19,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,13,23,26,25,27,50,75,78,84,100,92,102,106,104,120,135,137,133,130,134,146,156,174,171,461,481,477,482,524,529,553,547,547,528,541,544,536,540,529,530,575
-2019F,MD,ESCCP,2696,2785,2979,3208,3531,3937,4414,4818,5296,5813,6347,6797,7260,7946,7658,8573,9012,8848,9042,9156,9387,9578,9696,10117,9455,9621,10256,10861,11535,10641,11021,11259,11355,12006,13914,23730,23780,24070,24950,25662,26506,26995,21845,16950,17264,17932,29729,30691,30003,29806,30771,30750,30108,29966,29804,29959,29676,28893,29548,28893
-2019F,MD,ESICP,3269,3524,3831,4210,4719,5073,5719,6286,6845,7522,8469,9265,9426,10125,9793,9069,10803,11827,12234,13103,13057,13670,12754,13048,14895,15312,15808,16745,17446,19456,19308,19448,19768,20201,19037,10057,10098,10128,10344,9936,10066,10177,20875,27176,21195,21517,6057,5980,5650,5286,5083,5007,4500,3944,3848,3883,3821,3798,3870,3718
-2019F,MD,ESRCP,2772,3060,3264,3553,3927,4384,4955,5364,6180,6903,7690,8108,8580,9668,9410,9660,10117,10804,11168,11206,12119,12309,12472,13490,13974,14319,15819,17218,18483,19069,19102,20295,19762,21546,21666,22234,22986,21937,22407,23342,23949,24294,25489,26671,27952,28440,26905,28195,27144,26945,28934,27296,26678,27448,27488,27403,27317,26084,28138,27534
-2019F,MD,ESRPP,890,963,1000,1049,1124,1218,1341,1428,1620,1785,1953,2018,2106,2359,2285,2334,2438,2591,2670,2674,2867,2888,2912,3128,3201,3245,3526,3771,3968,4034,3980,4169,4014,4334,4313,4385,4496,4253,4305,4442,4509,4520,4685,4853,5039,5085,4781,4987,4775,4702,4998,4674,4531,4632,4612,4576,4547,4327,4657,4547
-2019F,MD,ESTCP,8756,9387,10093,10987,12176,13394,15088,16468,18322,20238,22506,24170,25266,27739,26861,27302,29932,31480,32450,33478,34586,35583,34947,36682,38374,39327,41961,44908,47564,49259,49534,51108,50989,53872,54752,56158,56998,56264,57834,59086,60678,61640,68380,71259,66892,68365,63173,65391,63326,62589,65335,63600,61814,61899,61684,61782,61354,59304,62086,60721
-2019F,MD,ESTPP,2813,2956,3093,3245,3487,3721,4083,4383,4803,5232,5715,6015,6203,6769,6522,6596,7211,7550,7757,7988,8181,8349,8160,8504,8791,8911,9352,9836,10211,10420,10320,10500,10356,10835,10900,11076,11150,10910,11112,11245,11425,11469,12569,12965,12059,12225,11226,11567,11139,10922,11287,10890,10498,10447,10350,10317,10214,9838,10276,10028
-2019F,MD,ESTXP,8756,9387,10093,10987,12176,13394,15088,16468,18322,20238,22506,24170,25266,27739,26861,27302,29932,31480,32450,33478,34586,35583,34947,36682,38374,39327,41961,44908,47564,49259,49534,51108,50989,53872,54752,56158,56998,56264,57834,59086,60678,61640,68380,71259,66892,68365,63173,65391,63326,62589,65335,63600,61814,61899,61684,61782,61354,59304,62086,60721
-2019F,MD,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,FSICP,0,0,0,23,15,18,19,17,17,16,19,28,27,9,13,30,17,16,17,21,25,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,HLACP,9,11,13,12,13,10,16,16,16,19,32,41,44,48,51,46,62,73,91,30,26,76,49,58,84,60,35,32,56,57,52,42,101,115,97,48,49,102,13,12,76,7,12,32,34,46,44,41,76,56,18,18,18,18,17,18,19,23,32,29
-2019F,MD,HLCCP,227,248,297,318,324,329,387,337,329,361,371,377,428,465,434,457,500,486,456,71,273,336,292,348,384,363,279,349,330,405,401,447,503,517,527,607,682,732,668,612,496,596,621,871,758,725,761,588,841,792,871,828,673,708,728,662,668,801,685,903
-2019F,MD,HLICP,317,273,295,441,420,412,387,323,532,526,624,678,866,972,921,888,1079,1175,1001,1793,1163,865,1056,882,1096,584,501,593,583,782,633,547,928,713,1055,701,767,414,263,176,747,633,371,701,456,788,899,647,415,420,527,500,425,501,496,523,496,386,462,467
-2019F,MD,HLRCP,498,545,653,698,711,722,850,740,722,793,814,827,940,1021,953,1004,1097,1067,1000,156,598,737,642,763,842,798,613,767,725,890,880,982,1104,1135,1157,1331,1497,1608,1466,1343,1088,1308,1363,1894,1625,1629,1407,1558,1855,1967,2019,2063,1479,1732,2160,1980,1654,1634,1858,1901
-2019F,MD,HLTCP,1051,1078,1258,1469,1469,1473,1640,1417,1599,1699,1841,1923,2279,2506,2360,2395,2738,2801,2549,2050,2060,2015,2039,2050,2405,1805,1428,1741,1695,2135,1965,2018,2635,2479,2835,2687,2995,2856,2410,2143,2406,2544,2367,3498,2872,3188,3111,2834,3187,3235,3434,3410,2595,2959,3401,3183,2837,2845,3037,3300
-2019F,MD,HLTXP,1051,1078,1258,1469,1469,1473,1640,1417,1599,1699,1841,1923,2279,2506,2360,2395,2738,2801,2549,2050,2060,2015,2039,2050,2405,1805,1428,1741,1695,2135,1965,2018,2635,2479,2835,2687,2995,2856,2410,2143,2406,2544,2367,3498,2872,3188,3111,2834,3187,3235,3434,3410,2595,2959,3401,3183,2837,2845,3037,3300
-2019F,MD,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,HYEGP,1356,1138,1147,970,1111,1140,1322,1923,1609,1359,1906,1772,2282,2165,1969,2311,2088,2018,1735,2191,1270,1426,1341,1765,2022,1524,1876,1612,1328,1778,2299,1407,1825,1658,2010,1442,2457,1588,1740,1424,1733,1184,1661,2647,2508,1704,2104,1652,1974,1889,1667,2547,1657,1727,1616,1623,1392,1965,2831,2188
-2019F,MD,HYICP,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,HYTCP,1358,1139,1148,971,1112,1141,1322,1923,1609,1359,1907,1773,2282,2165,1969,2311,2088,2018,1735,2191,1270,1426,1341,1765,2022,1524,1876,1612,1328,1778,2299,1407,1825,1658,2010,1442,2457,1588,1740,1424,1733,1184,1661,2647,2508,1704,2104,1652,1974,1889,1667,2547,1657,1727,1616,1623,1392,1965,2831,2188
-2019F,MD,HYTXP,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,JFACP,2457,2905,3343,2554,2710,2856,3241,3966,4741,4632,4477,4104,3634,3506,3123,2973,3050,3294,3250,3223,3512,3524,3573,3797,3658,3901,3889,3771,4481,4384,3637,3293,3061,3000,3229,3430,3897,4098,3924,3938,4108,2929,1718,2343,3140,4362,4144,3522,3836,3343,5777,5903,5570,5620,5421,5860,6214,6745,6976,6998
-2019F,MD,JFTCP,2457,2905,3343,2554,2710,2856,3241,3966,4741,4632,4477,4104,3845,3658,3247,3049,3125,3401,3295,3237,3522,3537,3573,3797,3658,3901,3889,3771,4481,4384,3637,3293,3061,3000,3229,3430,3897,4098,3924,3938,4108,2929,1718,2343,3140,4362,4144,3522,3836,3343,5777,5903,5570,5620,5421,5860,6214,6745,6976,6998
-2019F,MD,JFTXP,2457,2905,3343,2554,2710,2856,3241,3966,4741,4632,4477,4104,3634,3506,3123,2973,3050,3294,3250,3223,3512,3524,3573,3797,3658,3901,3889,3771,4481,4384,3637,3293,3061,3000,3229,3430,3897,4098,3924,3938,4108,2929,1718,2343,3140,4362,4144,3522,3836,3343,5777,5903,5570,5620,5421,5860,6214,6745,6976,6998
-2019F,MD,KSCCP,72,84,84,77,73,70,71,67,73,72,70,78,53,32,33,33,31,20,16,35,20,16,88,41,66,89,49,23,63,89,48,52,42,85,213,210,151,227,313,254,363,347,171,195,126,126,62,41,10,31,29,23,5,5,18,9,14,8,6,12
-2019F,MD,KSICP,138,205,176,94,107,124,204,236,272,120,95,75,99,68,146,146,48,351,361,355,318,249,53,69,83,44,58,50,146,104,33,28,19,27,66,57,58,41,113,36,30,74,45,26,38,71,30,8,4,4,3,1,1,1,3,1,2,1,1,1
-2019F,MD,KSRCP,2234,2582,2606,2393,2254,2177,2196,2059,2267,2227,2166,2422,1651,984,1006,1014,944,618,506,1082,830,614,664,548,1186,1113,828,1136,1316,813,385,396,316,509,393,535,593,597,720,523,505,471,305,404,550,617,437,225,92,116,146,77,29,31,60,45,47,26,23,26
-2019F,MD,KSTCP,2445,2870,2867,2564,2435,2371,2472,2362,2612,2419,2331,2575,1804,1084,1185,1193,1022,990,883,1472,1168,879,805,658,1335,1247,936,1209,1526,1006,466,476,378,621,672,801,802,865,1146,814,898,891,521,626,714,815,530,274,106,152,178,101,35,37,80,55,63,36,30,39
-2019F,MD,KSTXP,2445,2870,2867,2564,2435,2371,2472,2362,2612,2419,2331,2575,1804,1084,1185,1193,1022,990,883,1472,1168,879,805,658,1335,1247,936,1209,1526,1006,466,476,378,621,672,801,802,865,1146,814,898,891,521,626,714,815,530,274,106,152,178,101,35,37,80,55,63,36,30,39
-2019F,MD,LUACP,318,309,311,311,327,310,323,263,289,294,299,317,340,310,296,307,341,310,333,348,310,297,271,284,303,282,276,312,301,309,318,284,290,295,308,303,294,311,325,329,324,297,293,271,274,273,266,275,255,229,424,392,362,376,385,427,387,352,336,323
-2019F,MD,LUICP,247,241,333,333,350,316,328,264,289,319,325,295,316,309,296,456,507,414,444,465,414,397,362,379,404,377,368,417,402,412,424,379,387,394,412,405,393,415,434,439,432,396,391,362,366,365,355,367,341,306,209,187,154,160,163,168,171,164,157,146
-2019F,MD,LUTCP,565,550,645,645,677,627,651,526,578,613,624,612,655,618,592,763,847,724,777,813,724,695,633,663,707,659,644,729,703,721,742,663,676,689,720,708,687,725,759,767,756,692,684,633,641,638,621,641,596,535,632,580,517,536,548,595,558,516,494,469
-2019F,MD,LUTXP,565,550,645,645,677,627,651,526,578,613,624,612,655,618,592,763,847,724,777,813,724,695,633,663,707,659,644,729,703,721,742,663,676,689,720,708,687,725,759,767,756,692,684,633,641,638,621,641,596,535,632,580,517,536,548,595,558,516,494,469
-2019F,MD,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-45,-37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,MGACP,21810,22342,23826,25159,25845,26981,28816,30088,32290,34396,36795,38573,41130,42573,42076,43275,45292,46744,47682,44307,43737,44127,43946,43972,45004,45163,46419,47702,48603,49088,46887,48045,48665,49281,50374,51115,51425,53200,54260,56617,56790,58442,59552,60929,62544,63544,64605,65189,64257,68281,63128,62150,63103,65937,63700,65228,62929,62214,61905,61744
-2019F,MD,MGCCP,72,80,81,83,86,90,92,94,98,102,103,106,106,112,118,120,124,112,123,123,121,137,137,164,151,170,174,181,169,197,231,118,103,31,31,32,32,31,31,31,116,33,33,33,33,34,34,34,34,34,34,34,33,34,33,1673,1693,1719,1751,1764
-2019F,MD,MGICP,670,626,581,511,454,439,397,373,353,289,261,235,188,186,182,293,128,78,69,51,145,148,110,117,273,299,322,333,352,343,297,285,275,290,294,328,343,363,294,238,251,787,860,946,1037,976,1034,1040,885,849,757,792,754,787,826,531,559,567,578,575
-2019F,MD,MGTCP,22552,23048,24489,25753,26386,27510,29305,30555,32741,34787,37159,38914,41424,42872,42375,43688,45544,46934,47874,44482,44003,44412,44193,44252,45428,45632,46914,48215,49125,49629,47415,48448,49044,49602,50699,51475,51800,53594,54585,56886,57157,59263,60445,61908,63614,64553,65673,66263,65177,69165,63919,62976,63891,66758,64559,67432,65181,64499,64233,64084
-2019F,MD,MGTXP,22552,23048,24489,25753,26386,27510,29305,30555,32741,34787,37159,38914,41424,42872,42375,43688,45544,46934,47874,44482,44003,44412,44193,44252,45428,45632,46914,48215,49125,49629,47415,48448,49044,49602,50699,51475,51800,53594,54585,56886,57157,59263,60445,61908,63614,64553,65673,66263,65177,69165,63919,62976,63891,66758,64559,67432,65181,64499,64233,64084
-2019F,MD,MSICP,287,320,351,186,186,181,196,183,204,190,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,103,95,86,165,108,102,114,105,98,108,131,123,131,63,68,64,58,57,71,70,75,80,83,86,85,44,47,48,49,31,31,28
-2019F,MD,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,NGACP,850,1005,1167,1126,1166,1216,1417,1807,1417,1996,2012,2090,3565,2311,1745,2171,2244,2095,1842,2299,3944,2374,2482,2100,2119,2248,2064,2123,2573,2193,2403,2519,2419,2466,2514,2882,2698,3202,3088,3356,3402,2951,2699,2974,2742,2773,3236,3253,3415,2727,6535,6287,7618,4326,6580,7414,7590,8346,23032,25355
-2019F,MD,NGCCP,8020,8800,9649,10487,11472,12983,13423,19427,20989,23925,25895,28282,30325,29638,29725,25204,28169,27546,27402,31532,28576,32055,30871,30758,25299,24134,23816,25544,25879,26920,24051,38117,42464,43635,44136,46874,45842,49802,57370,58103,55669,59802,63999,70557,70195,69718,62868,70852,70411,69119,67555,67505,64146,71145,74843,70199,70500,72279,77310,76349
-2019F,MD,NGEIP,78,62,68,88,57,55,183,372,436,6544,11436,9423,7043,8869,13513,451,231,317,519,9820,5230,5998,936,1800,1294,1372,2194,11757,5336,22903,20941,21201,15190,10084,15212,18882,11951,15524,21515,22842,28926,17520,22273,10995,12045,20478,21830,23079,19910,18039,30728,21136,49211,24556,20403,39770,49486,50724,97671,96274
-2019F,MD,NGICP,16008,16133,20088,22165,24115,27578,28054,32049,37447,40892,43885,47751,60674,60525,57397,43008,43509,37918,35751,58739,54414,64439,56201,46254,57267,54685,52571,58458,64195,66272,61849,47150,49720,48843,47692,48964,50025,65957,38533,37214,40067,27412,27183,21829,23360,23772,23015,20413,21153,23926,23371,21220,17626,13989,14734,14765,15400,15744,16227,18336
-2019F,MD,NGRCP,45880,47932,50957,52630,55056,56684,57143,64789,66373,70901,72921,73598,74795,72803,69719,69199,73423,65163,70048,69539,68080,70423,67500,64716,73012,68399,71896,70670,74918,75138,66428,69235,75122,76871,76688,76552,85533,77500,68057,74848,84082,70691,80122,90669,86382,85768,71345,83457,81180,82699,83830,77838,70346,83341,90542,82858,76047,75789,86397,81845
-2019F,MD,NGTCP,70836,73932,81928,86495,91867,98516,100220,118444,126662,144258,156149,161144,176402,174146,172099,140033,147576,133039,135562,171929,160244,175289,157990,145628,158991,150838,152541,168552,172901,193426,175672,178223,184915,181899,186242,194154,196049,211985,188563,196363,212147,178376,196276,197024,194725,202509,182294,201053,196069,196510,212019,193986,208947,197357,207102,215006,219023,222882,300637,298159
-2019F,MD,NGTPP,22.8,23.3,25.1,25.5,26.3,27.4,27.1,31.5,33.2,37.3,39.7,40.1,43.3,42.5,41.8,33.8,35.6,31.9,32.4,41,37.9,41.1,36.9,33.8,36.4,34.2,34,36.9,37.1,40.9,36.6,36.6,37.6,36.6,37.1,38.3,38.4,41.1,36.2,37.4,39.9,33.2,36.1,35.8,35.1,36.2,32.4,35.6,34.5,34.3,36.6,33.2,35.5,33.3,34.7,35.9,36.5,37,49.8,49.2
-2019F,MD,NGTXP,70758,73870,81861,86408,91809,98461,100037,118072,126226,137714,144713,151721,169359,165277,158586,139582,147345,132722,135043,162109,155014,169291,157054,143828,157697,149466,150347,156795,167565,170522,154731,157021,169725,171815,171030,175272,184098,196461,167047,173521,183221,160856,174003,186029,182679,182031,160464,177975,176159,178471,181291,172850,159736,172801,186699,175236,169537,172158,202966,201885
-2019F,MD,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4386,6420,10881,9896,9674,10947,11523,10345,11676,11651,9926,12828,10070,11734,2719,1251,9036,10664,12301,11235,12938,12093,13213,13331,13312,13827,13656,12128,13691,14580,14703,13830,14353,14679,14550,13994,14397,13579,14264,14343,14643,14760,15107,14988,15013
-2019F,MD,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4386,6420,10881,9896,9674,10947,11523,10345,11676,11651,9926,12828,10070,11734,2719,1251,9036,10664,12301,11235,12938,12093,13213,13331,13312,13827,13656,12128,13691,14580,14703,13830,14353,14679,14550,13994,14397,13579,14264,14343,14643,14760,15107,14988,15013
-2019F,MD,OPICP,978,994,1018,801,1119,1175,1388,1263,1369,1420,1428,1236,1333,1232,1253,1315,1900,1734,1889,2030,1979,1605,1398,1475,1766,1508,1561,1705,1536,1472,1458,705,741,741,630,566,708,693,957,1205,871,667,829,672,462,542,420,450,481,303,223,208,171,604,636,597,568,653,604,621
-2019F,MD,OPTCP,978,994,1018,801,1119,1175,1388,1263,1369,1420,1428,1236,1333,1232,1253,1315,1900,1734,1889,2030,1979,1605,1398,1475,1766,1508,1561,1705,1536,1472,1458,705,741,741,630,566,708,693,957,1205,871,667,829,672,462,542,420,450,481,303,223,208,171,604,636,597,568,653,604,621
-2019F,MD,OPTXP,978,994,1018,801,1119,1175,1388,1263,1369,1420,1428,1236,1333,1232,1253,1315,1900,1734,1889,2030,1979,1605,1398,1475,1766,1508,1561,1705,1536,1472,1458,705,741,741,630,566,708,693,957,1205,871,667,829,672,462,542,420,450,481,303,223,208,171,604,636,597,568,653,604,621
-2019F,MD,P1ICP,3177,3809,3949,3905,4378,4904,4865,4737,4635,4425,5100,5038,5373,5921,5871,6015,6607,7008,7451,6990,5874,6377,5815,6923,8314,7581,8427,8960,8419,7660,8166,5902,6230,6982,6876,6594,6170,7743,8226,8327,7584,8643,8949,7500,8427,7622,3756,5054,4656,3166,2712,2535,2509,2651,3114,3265,3120,3361,2717,2648
-2019F,MD,P1TCP,6079,7051,7402,7245,7538,7936,7940,7589,7737,7379,7944,8147,7683,7506,7476,7574,8122,8161,8484,8600,7208,7432,6913,7869,9936,9142,9681,10517,10194,8953,8991,6710,6974,7973,7860,7689,7243,8921,9640,9472,8815,9861,9818,8458,9460,8762,4629,5701,5093,3621,3355,3069,2945,3098,3625,3781,3605,3786,3127,3054
-2019F,MD,P1TXP,6079,7051,7402,7245,7538,7936,7940,7589,7737,7379,7944,8147,7683,7506,7476,7574,8121,8161,8484,8600,7208,7432,6913,7869,9936,9142,9681,10517,10194,8953,8991,6710,6974,7973,7860,7689,7243,8921,9640,9472,8815,9861,9818,8458,9460,8762,4629,5701,5093,3621,3355,3069,2945,3098,3625,3781,3605,3786,3127,3054
-2019F,MD,PAACP,31117,31457,35863,36293,37681,39429,41680,41291,45480,46814,50027,50336,53078,55725,54699,54856,57227,59300,60199,58425,58121,59239,57388,56411,56909,58499,60076,62288,64416,66173,60883,61899,63248,63279,63559,64619,66196,68206,70090,73872,74373,74905,74472,76773,80749,84018,85222,84717,82197,85783,84553,82379,82112,83930,82357,84587,82240,81987,82336,82520
-2019F,MD,PACCP,5171,4813,4697,4871,5133,5210,5557,5183,5043,5149,5247,6209,6340,6573,5647,5071,5251,5235,4881,4959,4438,2265,2739,3902,4646,3044,3089,4591,3414,4201,3717,3410,4115,3692,4392,4064,4242,3521,3610,3162,3643,3523,3387,3679,3112,2767,2707,1870,2059,2453,2385,2330,2192,2096,2378,3895,3468,3500,3738,4063
-2019F,MD,PAEIP,182,201,205,241,267,295,292,402,1510,4230,10891,14793,22576,25717,28213,18669,17605,17086,19693,14695,9250,7394,6690,6477,5774,5961,5002,5170,6866,12301,7543,8068,5534,8301,8098,2961,3085,3250,6447,7997,4316,5565,4111,6176,5654,6524,1044,1808,814,630,650,464,256,357,893,449,359,241,545,172
-2019F,MD,PAICP,16589,15063,14283,14416,15880,17228,18563,15800,15063,15619,15904,20385,20598,22234,18282,15614,16962,17427,16158,17513,13148,12102,10708,13213,16467,12329,12525,12588,12381,12102,12378,9308,10131,11118,11346,10089,10698,11069,12141,11700,11238,12937,12360,11787,12696,12295,8584,8937,8197,5939,5250,5352,4969,4966,5642,5455,5260,5251,4712,4846
-2019F,MD,PARCP,8785,9764,10127,10270,10159,10090,10214,10664,11070,10811,11214,11232,10944,10654,10112,10470,10259,10294,9939,10573,10225,8140,7472,7375,9159,7520,6812,8208,8820,7415,6354,6217,6603,7222,7095,6788,7902,7221,6500,6534,6459,6576,6068,6542,6272,6343,5230,5134,5229,5381,5594,4824,3818,4531,5448,5390,3707,3471,4399,3698
-2019F,MD,PATCP,61844,61298,65176,66091,69119,72252,76307,73341,78166,82622,93283,102955,113536,120903,116952,104680,107304,109341,110870,106164,95181,89140,84997,87377,92955,87354,87505,92847,95897,102193,90876,88902,89631,93613,94490,88522,92123,93267,98788,103264,100028,103506,100398,104956,108483,111947,102786,102466,98496,100186,98432,95349,93346,95880,96719,99776,95033,94449,95730,95299
-2019F,MD,PATPP,19.9,19.3,20,19.5,19.8,20.1,20.7,19.5,20.5,21.4,23.7,25.6,27.9,29.5,28.4,25.3,25.9,26.2,26.5,25.3,22.5,20.9,19.8,20.3,21.3,19.8,19.5,20.3,20.6,21.6,18.9,18.3,18.2,18.8,18.8,17.5,18,18.1,19,19.7,18.8,19.3,18.5,19.1,19.6,20,18.3,18.1,17.3,17.5,17,16.3,15.9,16.2,16.2,16.7,15.8,15.7,15.8,15.7
-2019F,MD,PATXP,61662,61097,64970,65849,68852,71957,76015,72939,76656,78392,82392,88161,90960,95186,88740,86011,89699,92256,91176,91470,85931,81746,78307,80900,87181,81392,82503,87677,89030,89892,83333,80834,84097,85312,86392,85562,89038,90017,92341,95267,95712,97941,96287,98781,102829,105423,101743,100658,97682,99555,97782,94885,93091,95523,95826,99327,94674,94209,95185,95127
-2019F,MD,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,PCICP,0,0,0,0,0,0,0,0,0,0,453,477,535,469,380,852,767,1029,862,620,525,1111,879,688,1045,1132,1228,1965,1986,1171,1243,1087,1574,1136,1406,1330,1401,976,2042,2273,1550,3191,3122,2985,4395,3666,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,PCTCP,0,0,0,0,0,0,0,0,0,0,453,477,535,469,380,852,767,1029,862,620,525,1111,879,688,1045,1132,1228,1965,1986,1171,1243,1087,1574,1136,1406,1330,1401,976,2042,2273,1550,3191,3122,2985,4395,3666,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,PCTXP,0,0,0,0,0,0,0,0,0,0,453,477,535,469,380,852,767,1029,862,620,525,1111,879,688,1045,1132,1228,1965,1986,1171,1243,1087,1574,1136,1406,1330,1401,976,2042,2273,1550,3191,3122,2985,4395,3666,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,18,18,18,17,18,19,23,32,29
-2019F,MD,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,871,828,673,708,728,662,668,801,685,903
-2019F,MD,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,527,500,425,501,496,523,496,386,462,467
-2019F,MD,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2019,2063,1479,1732,2160,1980,1654,1634,1858,1901
-2019F,MD,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3434,3410,2595,2959,3401,3183,2837,2845,3037,3300
-2019F,MD,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3434,3410,2595,2959,3401,3183,2837,2845,3037,3300
-2019F,MD,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MD,RFACP,3893,3107,4886,4422,4270,5024,4685,3109,3656,3245,3931,3091,3280,3685,3647,2807,3304,3085,3269,4101,4514,4745,4184,1862,1871,1511,1211,2082,2629,2407,1825,1365,1613,1274,974,931,755,724,1141,977,787,613,694,404,1245,1160,1221,730,761,425,726,255,180,196,30,51,27,58,138,63
-2019F,MD,RFCCP,2442,1817,1560,1597,1850,1920,2216,1623,1396,1580,1498,2540,2500,2596,1888,1169,1396,1265,1002,1095,1159,208,452,561,765,252,867,1829,719,1282,548,133,473,191,214,119,108,50,42,52,87,34,63,280,87,98,48,18,11,3,5,4,1,3,3,16,6,5,9,0
-2019F,MD,RFEIP,166,183,187,220,244,269,266,367,1379,3862,9946,13235,20884,24292,25822,17982,17023,16524,18940,14094,8139,6563,5940,5559,4809,5131,4254,4363,6009,11046,6945,7516,5077,7709,7058,2287,2293,2600,5753,7462,3733,4590,3402,5022,4516,5328,594,1044,304,280,139,116,42,53,243,145,61,28,100,34
-2019F,MD,RFICP,10333,7873,6934,6941,7847,8296,9435,7214,6264,6918,6672,10997,10292,10869,7669,4983,5848,5501,4240,4738,2669,1619,1391,2955,4034,1022,949,803,1060,977,1224,772,1061,1228,1233,728,1361,839,636,592,547,540,413,593,719,847,758,654,517,325,182,253,80,63,38,17,21,15,6,6
-2019F,MD,RFTCP,16835,12980,13567,13181,14211,15510,16603,12313,12694,15605,22046,29863,36955,41442,39025,26941,27570,26375,27451,24027,16480,13134,11966,10937,11479,7916,7282,9077,10417,15711,10542,9786,8224,10402,9479,4065,4517,4212,7572,9084,5154,5776,4571,6299,6567,7432,2622,2447,1593,1032,1052,629,303,315,314,230,115,106,254,102
-2019F,MD,RFTXP,16669,12797,13379,12961,13967,15241,16336,11946,11315,11743,12101,16628,16071,17150,13204,8960,10547,9851,8511,9933,8341,6571,6026,5378,6670,2784,3028,4714,4408,4665,3597,2270,3147,2693,2421,1779,2224,1612,1819,1622,1421,1186,1170,1277,2051,2105,2028,1402,1289,753,913,512,261,262,71,84,54,77,154,68
-2019F,MD,SGICP,444,429,445,380,258,266,260,251,259,256,246,272,318,124,155,336,171,171,175,325,319,186,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,SNICP,0,0,0,0,458,496,576,480,514,563,598,578,619,626,621,534,563,588,707,715,688,805,750,881,1178,906,890,992,781,735,733,466,553,553,429,375,518,502,746,1011,677,541,706,555,352,431,316,352,382,208,118,102,66,531,563,527,497,612,561,583
-2019F,MD,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,4,9,37,102,128,174,190,181,211,242,275
-2019F,MD,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,21,60,95,112,202,261,386,477
-2019F,MD,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,6,13,35,33,37,36
-2019F,MD,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,13,30,76,143,310,498,580,672
-2019F,MD,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,4,12,47,139,222,351,457,728,1002,1246,1460
-2019F,MD,TPOPP,3113,3176,3263,3386,3492,3600,3695,3757,3815,3868,3938,4018,4073,4098,4119,4139,4151,4170,4184,4191,4228,4262,4283,4313,4365,4413,4487,4566,4658,4727,4800,4868,4923,4972,5023,5070,5112,5157,5204,5255,5311,5375,5440,5496,5547,5592,5627,5653,5685,5730,5789,5840,5888,5925,5960,5989,6007,6028,6042,6055
-2019F,MD,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-48,-55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,WXICP,248,245,221,213,201,214,337,332,375,394,396,358,369,473,464,414,1149,960,990,969,947,699,547,594,589,602,587,628,651,642,639,75,79,85,87,87,92,82,80,71,62,63,55,53,53,54,33,28,24,16,22,19,19,29,26,22,23,10,12,10
-2019F,MD,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,271,322,322,324,435,527,561,570,520
-2019F,MD,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MD,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,271,322,322,324,435,527,561,570,520
-2019F,MD,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,ARICP,729,889,704,737,820,745,827,755,718,740,701,797,774,1003,926,696,838,704,635,339,435,478,466,585,1114,2185,734,852,1586,1000,645,988,1064,1083,480,482,379,557,297,324,335,555,465,494,734,381,25,335,30,685,779,709,864,675,715,816,558,593,505,315
-2019F,ME,ARTCP,729,889,704,737,820,745,827,755,718,740,701,797,774,1003,926,696,838,704,635,339,435,478,466,585,1114,2185,734,852,1586,1000,645,988,1064,1083,480,482,379,557,297,324,335,555,465,494,734,381,25,335,30,685,779,709,864,675,715,816,558,593,505,315
-2019F,ME,ARTXP,729,889,704,737,820,745,827,755,718,740,701,797,774,1003,926,696,838,704,635,339,435,478,466,585,1114,2185,734,852,1586,1000,645,988,1064,1083,480,482,379,557,297,324,335,555,465,494,734,381,25,335,30,685,779,709,864,675,715,816,558,593,505,315
-2019F,ME,AVACP,57,53,87,64,112,89,149,104,79,42,93,89,92,87,80,71,63,66,64,72,82,47,37,45,43,41,58,53,66,68,62,42,41,37,35,35,28,36,25,34,25,58,37,38,33,40,52,51,33,35,22,53,18,15,16,24,22,25,23,26
-2019F,ME,AVTCP,57,53,87,64,112,89,149,104,79,42,93,89,92,87,80,71,63,66,64,72,82,47,37,45,43,41,58,53,66,68,62,42,41,37,35,35,28,36,25,34,25,58,37,38,33,40,52,51,33,35,22,53,18,15,16,24,22,25,23,26
-2019F,ME,AVTXP,57,53,87,64,112,89,149,104,79,42,93,89,92,87,80,71,63,66,64,72,82,47,37,45,43,41,58,53,66,68,62,42,41,37,35,35,28,36,25,34,25,58,37,38,33,40,52,51,33,35,22,53,18,15,16,24,22,25,23,26
-2019F,ME,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,12,17,14,15,12,42,33,152,141,181,308,383,171,136
-2019F,ME,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,12,17,14,15,12,42,33,152,141,181,308,383,171,136
-2019F,ME,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,CLACP,10,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,CLCCP,84,79,69,64,49,54,48,35,26,23,19,20,19,20,20,17,13,15,10,9,20,31,45,35,41,38,49,38,30,20,34,11,30,21,5,3,4,4,3,3,3,3,2,2,2,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,CLEIP,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,231,237,242,237,154,156,159,150,154,165,180,221,164,168,146,147,136,127,34,54,38,32,38,53,74,70,66,62,69
-2019F,ME,CLICP,562,566,525,340,202,191,181,144,125,122,48,57,27,29,54,32,26,4,16,21,99,92,229,197,150,157,312,224,239,246,222,361,820,423,458,279,230,190,138,117,219,124,88,119,116,127,109,112,100,31,34,23,19,27,33,30,17,18,21,18
-2019F,ME,CLKCP,1,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,CLOCP,561,566,516,340,202,191,181,144,125,122,48,57,27,29,54,32,26,4,16,21,99,92,229,197,150,157,312,224,239,246,222,361,820,423,458,279,230,190,138,117,219,124,88,119,116,127,109,112,100,31,34,23,19,27,33,30,17,18,21,18
-2019F,ME,CLRCP,122,113,99,88,68,71,64,47,34,29,24,20,14,12,10,7,5,6,3,2,5,7,9,7,10,11,14,11,8,5,9,2,6,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,CLTCP,794,761,695,493,319,316,294,226,185,174,91,97,59,61,84,56,44,25,30,32,124,130,283,239,200,206,375,273,277,271,401,605,1093,691,701,436,390,353,291,274,388,307,311,285,286,276,259,251,227,65,88,61,51,66,85,104,87,85,83,88
-2019F,ME,CLTXP,777,761,695,493,319,316,294,226,185,174,91,97,59,61,84,56,44,25,30,32,124,130,283,239,200,206,375,273,277,271,265,374,856,449,464,282,234,194,141,120,222,127,90,121,118,130,112,114,100,31,34,23,19,27,33,30,17,18,21,18
-2019F,ME,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,DFACP,1251,1059,966,1149,1259,1199,1296,963,1251,1430,1385,1499,1648,1659,1584,1524,1817,1920,1974,1825,1593,1500,1835,2011,2792,3300,3613,4131,4729,3772,4474,3010,3113,3460,4209,3598,3624,3634,3572,3617,4126,4128,4228,5173,4566,4576,4734,4722,4586,4917,4799,4710,4668,4920,4752,5048,4919,6850,4652,4663
-2019F,ME,DFCCP,996,1179,1244,1344,1210,1294,1199,1425,1481,1571,1660,1669,1775,1721,1673,1611,1911,2096,1909,1535,1840,1741,1417,1401,1647,1082,1741,1695,2047,1802,2006,1672,1994,2412,2550,2285,2424,2351,2748,2792,3223,2516,2721,3781,3478,2882,2608,2931,2661,2107,2189,2395,1801,1429,1744,1509,1422,1487,1516,1587
-2019F,ME,DFEIP,38,49,56,52,65,89,88,95,102,96,95,217,258,142,88,42,39,27,27,38,61,40,56,62,43,28,33,35,51,183,23,27,29,151,19,33,18,21,17,27,41,8,50,131,130,28,17,26,15,12,14,7,4,7,9,42,5,15,16,8
-2019F,ME,DFICP,402,413,466,481,500,500,576,666,773,827,805,830,808,803,732,682,768,814,699,755,762,745,915,636,748,509,619,1048,1415,1197,841,901,875,1342,1574,1201,1336,1253,1352,1033,969,798,818,1297,1484,1059,820,950,1101,861,854,942,910,586,593,691,592,611,684,816
-2019F,ME,DFRCP,4727,5593,5902,6380,5743,6139,5688,6765,7028,7456,7877,7919,8422,8168,7938,7646,9067,9947,9060,7284,6372,5222,4941,3241,3812,5451,6335,6239,6834,6312,5987,5970,6141,6103,6277,7627,7549,7407,7553,7443,6957,6850,6749,9099,9881,8428,7431,7253,5989,5402,4670,5068,4205,4412,4507,5608,5317,5469,5573,5258
-2019F,ME,DFTCP,7415,8292,8633,9405,8777,9220,8848,9914,10635,11381,11822,12134,12911,12493,12014,11505,13602,14805,13670,11437,10628,9248,9164,7351,9042,10370,12341,13148,15076,13266,13331,11580,12152,13468,14629,14744,14950,14666,15242,14913,15317,14300,14567,19480,19539,16974,15610,15882,14353,13298,12526,13122,11589,11354,11605,12898,12254,14432,12441,12332
-2019F,ME,DFTXP,7377,8244,8577,9354,8712,9131,8759,9819,10533,11285,11727,11916,12653,12352,11926,11464,13563,14778,13642,11399,10568,9208,9108,7289,8999,10341,12308,13114,15025,13083,13308,11552,12123,13317,14610,14711,14932,14645,15225,14886,15276,14292,14517,19349,19409,16945,15593,15856,14338,13286,12512,13115,11585,11347,11596,12856,12250,14417,12425,12324
-2019F,ME,ELEXP,14,13,14,12,4,15,9,5,19,20,45,144,110,59,58,104,26,28,17,140,31,51,331,422,337,372,458,306,381,519,115,242,318,145,45,26,31,8,16,583,381,81,192,236,124,151,591,898,624,624,993,586,620,227,191,283,38,68,105,36
-2019F,ME,ELIMP,163,197,235,252,243,236,309,332,384,481,561,1374,1991,2859,2497,1540,2369,3488,2165,3361,3790,3061,3282,5498,6016,1060,3033,4051,3769,2601,2339,1881,1876,2092,3179,4622,4327,3441,3957,4436,4236,2902,2277,2676,3922,2537,3774,4264,1743,2604,2840,3239,2665,5100,4703,5000,4983,4464,4349,4056
-2019F,ME,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-5250,-6230,-4315,-4090,-6570,-1341,-6054,-359,-1985,-3094,-4262,-8935,-11674,-8077,-9008,-7448,-6326,-2883,-2008,-3142,-3092,-2911,-1229,-2791,-1827,-1377,-2123,-1652,-432,48
-2019F,ME,ELNIP,149,185,221,240,239,221,300,326,365,461,516,1230,1880,2800,2438,1436,2343,3461,2148,3220,3759,3010,2951,5076,5679,687,2575,3745,3388,2081,2224,1638,1557,1946,3135,4596,4296,3433,3941,3853,3855,2821,2085,2439,3798,2386,3183,3365,1119,1980,1847,2653,2045,4873,4513,4716,4945,4397,4244,4020
-2019F,ME,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,159,227,1169,1489,1375,1412,1446,1661,1697,1749,1845,1526,1521,1525
-2019F,ME,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,2,2,3,2,30,31,32,33,33
-2019F,ME,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,15,18,27,28,27,28,25,22,23,23,24,24
-2019F,ME,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,162,232,1185,1510,1405,1442,1475,1691,1724,1801,1898,1581,1577,1582
-2019F,ME,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,ESCCP,542,596,651,696,760,819,801,738,785,874,975,1054,1173,1257,1240,1568,1698,1750,1817,1721,1717,1787,1831,1917,2276,2338,2490,2642,2744,2826,2847,2857,2900,3040,2962,2973,3276,3343,3388,3553,3876,3836,3848,3959,4325,4157,4134,4195,4148,4071,4101,4018,4053,4016,3985,4018,3986,3917,4447,4148
-2019F,ME,ESICP,1246,1295,1374,1403,1493,1715,1841,1920,2220,2363,2370,2376,2525,2612,2767,2477,2652,2961,3164,3335,3470,3419,3714,4302,3978,4067,4135,4351,4616,4599,4750,4709,4753,5040,4952,4959,4772,4957,4622,4687,4551,4413,3550,3793,3711,3702,3800,3252,3175,2852,3059,3016,3027,3177,3357,3208,2877,2658,3036,2790
-2019F,ME,ESRCP,993,1047,1097,1131,1172,1224,1294,1347,1455,1569,1723,1888,2129,2263,2408,2487,2771,2859,2996,3016,2998,3033,3182,3218,3369,3419,3578,3726,3904,4009,3932,3817,3830,3872,3692,3629,3679,3659,3589,3704,3737,3903,4043,4219,4331,4503,4351,4413,4351,4360,4372,4382,4481,4662,4661,4662,4586,4639,4872,4794
-2019F,ME,ESRPP,1019,1052,1103,1139,1181,1228,1295,1341,1464,1582,1728,1859,2058,2165,2274,2320,2546,2591,2690,2687,2660,2677,2799,2811,2915,2940,3057,3145,3243,3286,3193,3086,3092,3117,2971,2918,2946,2916,2850,2924,2926,3036,3120,3229,3297,3415,3287,3326,3270,3279,3293,3298,3374,3509,3501,3508,3442,3473,3635,3562
-2019F,ME,ESTCP,2782,2937,3121,3230,3424,3758,3936,4004,4459,4806,5068,5317,5827,6132,6415,6532,7121,7571,7977,8072,8185,8239,8727,9437,9623,9824,10203,10718,11264,11434,11529,11383,11483,11952,11606,11561,11726,11959,11599,11944,12163,12152,11441,11972,12368,12363,12285,11860,11674,11283,11532,11415,11561,11855,12003,11888,11449,11214,12355,11732
-2019F,ME,ESTPP,2853,2952,3140,3252,3449,3769,3940,3988,4486,4845,5083,5237,5633,5864,6057,6094,6543,6861,7163,7191,7264,7272,7677,8243,8327,8448,8720,9048,9357,9373,9360,9201,9272,9621,9339,9298,9388,9531,9212,9428,9524,9452,8828,9163,9414,9374,9281,8937,8774,8486,8686,8593,8705,8923,9016,8945,8593,8395,9219,8718
-2019F,ME,ESTXP,2782,2937,3121,3230,3424,3758,3936,4004,4459,4806,5068,5317,5827,6132,6415,6532,7121,7571,7977,8072,8185,8239,8727,9437,9623,9824,10203,10718,11264,11434,11529,11383,11483,11952,11606,11561,11726,11959,11599,11944,12163,12152,11441,11972,12368,12363,12285,11860,11674,11283,11532,11415,11561,11855,12003,11888,11449,11214,12355,11732
-2019F,ME,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,FSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,HLACP,1,1,1,2,2,2,2,2,2,2,3,3,4,5,5,3,4,5,8,7,9,4,12,15,21,15,23,15,30,30,17,17,15,13,22,11,7,13,6,5,1,0,1,12,8,9,8,7,12,9,19,19,23,22,21,12,13,5,2,1
-2019F,ME,HLCCP,202,223,252,284,309,225,237,233,248,247,226,222,261,269,296,357,445,473,419,547,233,204,238,283,137,206,301,475,534,544,510,554,453,562,582,662,777,574,635,560,618,759,466,805,549,1060,894,1362,1367,1603,1200,1433,1449,1848,1760,1810,1700,1843,1809,1736
-2019F,ME,HLICP,38,40,41,62,71,100,128,141,115,180,182,190,247,243,200,250,257,258,257,614,400,304,350,263,312,249,416,340,514,456,358,353,316,235,202,216,278,87,133,11,89,198,307,86,28,278,385,287,57,97,46,102,29,31,47,101,87,119,94,93
-2019F,ME,HLRCP,201,221,250,282,307,223,235,231,246,245,224,220,259,267,293,354,442,469,415,543,232,202,237,281,136,204,299,472,530,539,506,550,449,558,577,656,770,569,630,556,613,753,462,926,655,982,822,1151,1309,1360,1565,1360,1280,1487,1708,1680,1705,1708,2038,2115
-2019F,ME,HLTCP,442,485,545,630,690,550,601,607,611,674,635,634,770,784,794,963,1148,1205,1099,1711,874,714,837,842,605,674,1038,1303,1608,1570,1391,1475,1234,1368,1383,1545,1832,1242,1403,1131,1321,1710,1236,1828,1240,2329,2109,2807,2745,3070,2831,2914,2780,3388,3535,3603,3506,3675,3942,3945
-2019F,ME,HLTXP,442,485,545,630,690,550,601,607,611,674,635,634,770,784,794,963,1148,1205,1099,1711,874,714,837,842,605,674,1038,1303,1608,1570,1391,1475,1234,1368,1383,1545,1832,1242,1403,1131,1321,1710,1236,1828,1240,2329,2109,2807,2745,3070,2831,2914,2780,3388,3535,3603,3506,3675,3942,3945
-2019F,ME,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,HYEGP,1939,1750,1711,1916,1651,1372,1677,1713,1707,1918,1913,1651,1769,2139,2042,1832,2081,1987,1887,1775,1443,1880,1970,1963,2014,1718,2033,1703,1569,2153,2746,2586,2297,2086,2222,2199,2780,2363,2417,2453,2295,1710,1831,2150,2867,3466,3499,3044,3695,3454,3105,3231,3320,3124,3231,2971,2678,3025,3147,3387
-2019F,ME,HYICP,906,854,816,934,821,697,743,846,903,846,940,812,887,956,870,832,1013,1048,940,1014,974,974,974,974,974,974,974,974,974,1292,1344,1231,1216,1160,1289,1155,1378,1285,1299,1303,1296,935,937,1022,563,625,779,694,762,757,706,748,412,437,392,390,322,364,114,113
-2019F,ME,HYTCP,2844,2604,2527,2850,2472,2069,2420,2560,2611,2764,2853,2463,2655,3095,2911,2664,3094,3035,2827,2789,2417,2854,2943,2936,2987,2691,3007,2677,2542,3445,4091,3817,3513,3246,3511,3354,4157,3648,3716,3756,3591,2645,2768,3173,3430,4091,4278,3738,4457,4212,3810,3979,3733,3560,3623,3361,3000,3389,3261,3499
-2019F,ME,HYTXP,906,854,816,934,821,697,743,846,903,846,940,812,887,956,870,832,1013,1048,940,1014,974,974,974,974,974,974,974,974,974,1292,1344,1231,1216,1160,1289,1155,1378,1285,1299,1303,1296,935,937,1022,563,625,779,694,762,757,706,748,412,437,392,390,322,364,114,113
-2019F,ME,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,JFACP,1904,1937,2089,2140,2196,1812,1885,2074,2419,2424,2300,2472,2357,2417,2150,1988,1941,2316,2344,2211,1875,1547,1595,1505,1520,1639,1615,1813,2103,2249,2528,2374,1904,1488,992,841,891,954,930,864,908,712,671,922,1088,1425,1790,1765,1401,1230,503,484,425,389,366,400,365,396,424,410
-2019F,ME,JFTCP,1904,1937,2089,2140,2196,1812,1885,2074,2419,2424,2300,2472,2357,2417,2150,1988,1941,2316,2344,2211,1875,1547,1595,1505,1520,1639,1615,1813,2103,2249,2528,2374,1904,1488,992,841,891,954,930,864,908,712,671,922,1088,1425,1790,1765,1401,1230,503,484,425,389,366,400,365,396,424,410
-2019F,ME,JFTXP,1904,1937,2089,2140,2196,1812,1885,2074,2419,2424,2300,2472,2357,2417,2150,1988,1941,2316,2344,2211,1875,1547,1595,1505,1520,1639,1615,1813,2103,2249,2528,2374,1904,1488,992,841,891,954,930,864,908,712,671,922,1088,1425,1790,1765,1401,1230,503,484,425,389,366,400,365,396,424,410
-2019F,ME,KSCCP,100,126,110,118,88,81,72,84,101,101,79,80,80,58,49,45,58,46,33,26,70,45,22,68,141,99,26,41,159,94,68,125,66,174,152,161,148,157,242,135,136,152,112,161,251,217,150,117,48,52,49,38,22,20,36,34,32,22,24,35
-2019F,ME,KSICP,103,112,119,136,233,280,174,530,80,57,54,56,58,42,40,59,67,69,63,36,29,12,22,19,37,34,19,39,55,49,27,26,14,52,72,31,17,39,61,25,22,33,18,19,38,65,38,32,6,6,3,4,4,2,3,2,2,1,2,2
-2019F,ME,KSRCP,2091,2614,2297,2456,1830,1691,1507,1750,2100,2096,1649,1666,1659,1214,1026,932,1215,952,692,541,405,233,272,266,889,910,625,630,785,804,563,593,473,741,758,1089,1370,1310,1880,1539,1681,1674,1002,1392,1740,1711,1391,957,420,542,525,372,150,160,250,235,335,225,190,255
-2019F,ME,KSTCP,2294,2852,2526,2710,2151,2052,1753,2364,2281,2254,1783,1802,1796,1314,1116,1036,1341,1066,789,603,504,290,316,354,1067,1042,669,710,999,946,657,743,553,967,982,1281,1536,1506,2183,1698,1839,1860,1132,1572,2029,1992,1579,1106,474,599,578,414,176,182,289,270,369,248,215,292
-2019F,ME,KSTXP,2294,2852,2526,2710,2151,2052,1753,2364,2281,2254,1783,1802,1796,1314,1116,1036,1341,1066,789,603,504,290,316,354,1067,1042,669,710,999,946,657,743,553,967,982,1281,1536,1506,2183,1698,1839,1860,1132,1572,2029,1992,1579,1106,474,599,578,414,176,182,289,270,369,248,215,292
-2019F,ME,LUACP,133,130,121,121,127,116,120,104,114,112,114,116,124,121,116,108,120,132,141,148,132,126,115,121,129,120,117,133,128,131,135,121,123,125,131,129,125,132,138,140,138,126,124,115,117,116,113,117,108,97,122,117,107,125,125,137,128,124,96,92
-2019F,ME,LUICP,42,41,44,44,47,54,56,52,57,54,55,63,68,71,68,59,65,65,69,72,65,62,56,59,63,59,57,65,63,64,66,59,60,61,64,63,61,65,68,68,67,62,61,56,57,57,55,57,53,48,45,40,36,33,34,34,34,33,31,29
-2019F,ME,LUTCP,175,170,166,166,174,169,176,155,171,166,169,180,192,192,183,167,185,196,211,220,196,188,172,180,192,179,175,197,190,195,201,180,183,187,195,192,186,197,206,208,205,188,185,171,174,173,168,174,161,145,167,157,142,158,160,171,163,157,128,121
-2019F,ME,LUTXP,175,170,166,166,174,169,176,155,171,166,169,180,192,192,183,167,185,196,211,220,196,188,172,180,192,179,175,197,190,195,201,180,183,187,195,192,186,197,206,208,205,188,185,171,174,173,168,174,161,145,167,157,142,158,160,171,163,157,128,121
-2019F,ME,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,MGACP,8183,8295,8337,8492,8603,8952,9233,9426,9982,10279,10848,11348,11967,12377,12271,12526,13183,13378,13562,12323,11644,11476,11693,11949,12075,12320,13201,13875,15132,13939,13931,13971,13971,14233,14337,14187,14771,15796,15190,16061,16229,14062,16631,18010,16699,17040,16674,16464,15607,15720,15795,15644,15133,17291,18126,18118,18485,15076,14941,14840
-2019F,ME,MGCCP,29,31,31,33,33,34,36,37,37,38,40,41,41,32,29,40,41,42,43,45,48,53,55,99,114,104,105,93,104,116,101,54,50,12,12,12,12,12,12,12,12,12,12,20,24,14,31,48,20,34,37,19,17,30,23,315,311,316,319,322
-2019F,ME,MGICP,166,155,196,175,160,145,151,151,150,127,137,110,97,86,87,79,65,68,61,72,76,40,59,41,91,124,131,137,132,140,94,100,102,146,163,169,176,179,117,86,87,216,228,241,281,265,292,261,199,192,308,309,286,291,265,224,228,230,232,231
-2019F,ME,MGTCP,8378,8481,8564,8699,8796,9131,9420,9614,10170,10443,11025,11499,12104,12495,12388,12645,13290,13488,13666,12440,11768,11569,11807,12089,12281,12548,13436,14105,15368,14194,14126,14125,14123,14391,14512,14368,14959,15987,15319,16158,16328,14290,16871,18270,17005,17320,16996,16773,15826,15946,16141,15972,15436,17612,18414,18657,19024,15622,15492,15393
-2019F,ME,MGTXP,8378,8481,8564,8699,8796,9131,9420,9614,10170,10443,11025,11499,12104,12495,12388,12645,13290,13488,13666,12440,11768,11569,11807,12089,12281,12548,13436,14105,15368,14194,14126,14125,14123,14391,14512,14368,14959,15987,15319,16158,16328,14290,16871,18270,17005,17320,16996,16773,15826,15946,16141,15972,15436,17612,18414,18657,19024,15622,15492,15393
-2019F,ME,MSICP,10,11,12,7,7,6,12,11,12,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,7,7,8,7,56,61,74,70,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,NGACP,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,102,5,74,5,5,11,8,11,6,6,5,3,9,11,18,109,18,122,0,0,808,1164,877,859,658,585,494,753,944,837,1754,2400,763,844,1307,999,654,679,821,1158
-2019F,ME,NGCCP,0,0,0,0,0,0,171,255,217,304,418,468,478,432,447,506,495,500,584,658,864,1043,1192,1124,1124,1139,1214,1250,1461,1660,1678,1860,2209,2311,2381,2426,2566,2713,2456,2547,2770,2642,5167,4781,4811,4792,4701,5749,5878,5541,5830,6593,7313,8146,9030,10072,8559,8925,9586,9919
-2019F,ME,NGEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,194,179,126,142,132,103,50,43,53,517,27180,80044,90769,60666,63245,48647,40341,33872,36594,36746,40392,33555,28456,20904,23848,18034,22366,13761,13747,9361
-2019F,ME,NGICP,0,0,0,0,0,0,0,101,222,312,356,431,454,604,553,699,745,751,766,778,747,705,840,754,781,856,708,852,1162,1374,2024,2207,2048,1753,1771,1993,2190,2525,2297,2550,12984,10929,23672,3315,16233,6500,17514,21640,25628,25923,28365,27734,30248,32308,24121,20972,18983,17698,19231,21024
-2019F,ME,NGRCP,0,0,0,0,0,0,338,397,357,491,525,559,604,603,617,725,794,748,765,726,555,573,585,541,540,525,542,528,568,638,648,722,872,901,894,913,967,1009,910,957,1037,954,1056,1211,1189,1149,985,1170,1101,1286,1234,1409,1487,1889,2357,2700,2566,2748,3079,3134
-2019F,ME,NGTCP,0,0,0,0,0,0,509,756,796,1107,1299,1458,1536,1639,1617,1930,2034,1999,2115,2162,2268,2326,2691,2424,2450,2531,2472,2641,3197,3918,4549,4971,5265,5119,5196,5546,5790,6412,5716,6572,44779,95733,121540,70832,86136,61673,64035,63183,70145,70334,77575,71691,68267,64091,60663,52778,53128,43811,46464,44596
-2019F,ME,NGTPP,0,0,0,0,0,0,0.5,0.8,0.8,1.1,1.3,1.4,1.5,1.6,1.5,1.8,1.9,1.8,1.9,1.9,2,2.1,2.4,2.1,2.1,2.2,2.1,2.2,2.7,3.2,3.7,4,4.3,4.1,4.2,4.5,4.6,5.1,4.5,5.2,35.1,74.5,93.8,54.2,65.6,46.8,48.4,47.6,52.7,52.9,58.4,54,51.4,48.2,45.6,39.7,39.9,32.8,34.7,33.1
-2019F,ME,NGTXP,0,0,0,0,0,0,509,756,796,1107,1299,1458,1536,1639,1617,1930,2034,1999,2115,2162,2268,2326,2691,2424,2450,2531,2472,2641,3197,3678,4355,4792,5139,4977,5064,5442,5740,6369,5663,6054,17599,15689,30771,10166,22891,13026,23694,29311,33551,33587,37183,38136,39811,43187,36815,34743,30762,30050,32717,35235
-2019F,ME,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,54,3351,3574,4502,5929,5143,5354,4497,4404,5212,4524,5730,5123,5354,6242,4043,5017,6942,4861,6264,5358,5740,6632,198,5062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,54,3351,3574,4502,5929,5143,5354,4497,4404,5212,4524,5730,5123,5354,6242,4043,5017,6942,4861,6264,5358,5740,6632,198,5062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,OPICP,10,11,12,7,7,6,12,11,12,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,34,35,34,84,86,99,91,94,14,12,12,12,12,10,8,7,4,6,5,6,0,0,0,0,4,5,4
-2019F,ME,OPTCP,10,11,12,7,7,6,12,11,12,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,34,35,34,84,86,99,91,94,14,12,12,12,12,10,8,7,4,6,5,6,0,0,0,0,4,5,4
-2019F,ME,OPTXP,10,11,12,7,7,6,12,11,12,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,34,35,34,84,86,99,91,94,14,12,12,12,12,10,8,7,4,6,5,6,0,0,0,0,4,5,4
-2019F,ME,P1ICP,884,1053,880,924,1107,1085,1069,1347,867,863,821,916,899,1115,1034,814,970,838,767,447,528,552,545,664,1214,2278,810,955,1704,1113,738,1107,1170,1230,652,610,542,747,524,508,518,663,555,581,840,514,128,432,96,742,834,758,909,710,753,853,595,631,544,352
-2019F,ME,P1TCP,3265,3976,3495,3684,3265,3061,2917,3390,3261,3213,2757,2868,2854,2595,2306,1970,2427,2033,1698,1234,1217,1004,991,1164,2416,3447,1635,1813,2842,2209,1565,1988,1874,2307,1763,2269,2478,2632,3075,2613,2637,2674,1830,2287,2981,2598,1834,1674,706,1469,1553,1339,1206,1031,1180,1281,1113,1027,877,759
-2019F,ME,P1TXP,3265,3976,3495,3684,3265,3061,2917,3390,3261,3213,2757,2868,2854,2595,2306,1970,2427,2033,1698,1234,1217,1004,991,1164,2416,3447,1635,1813,2842,2209,1565,1988,1874,2307,1728,2024,2213,2382,2810,2356,2498,2674,1830,2287,2981,2598,1834,1674,706,1469,1553,1339,1206,1031,1180,1281,1113,1027,877,759
-2019F,ME,PAACP,12305,12885,12962,13275,13163,12794,13959,13678,14837,15063,16158,17152,19606,20176,17820,17155,18038,18355,18405,17339,15544,15336,15925,15663,16598,17455,18698,20073,22606,20387,21295,19651,19322,19638,19959,19004,19648,20673,20142,20908,22122,19630,22524,24273,22537,24157,24189,23325,21807,22806,21699,21566,20864,23415,23727,23898,24131,22536,20204,20090
-2019F,ME,PACCP,1473,1692,1711,1855,1817,1706,1665,1899,2008,2176,2298,2670,2813,2690,2558,2386,2989,3209,2858,2550,2874,2403,2373,2593,3052,2530,3633,3011,4725,4453,4821,4854,3806,3890,4056,3489,3868,3680,3918,3607,4242,3626,3708,5085,4650,4666,3962,4865,4842,4204,3759,4092,3394,3536,3621,3726,3509,3704,3708,3706
-2019F,ME,PAEIP,1885,2431,2788,2576,3270,4462,4422,4753,5102,4824,4865,5108,5693,5016,4081,2854,1894,1332,1769,2268,3680,3764,3198,3516,3599,3461,4392,4351,4906,5207,3581,2319,2262,1530,1333,1744,1427,2774,3240,5971,3415,1870,760,2148,1331,1546,175,723,372,503,413,242,198,439,496,909,232,272,322,73
-2019F,ME,PAICP,4130,4068,2932,2969,4913,3099,4052,4772,4416,5853,7072,13610,13643,12982,11033,7674,11463,11749,9730,8877,5812,6901,12897,5809,8107,6567,8895,6657,8741,7616,6821,7761,8417,9815,11656,9574,10054,8948,7550,6919,6979,6294,6065,4910,5789,6089,4912,4701,3438,3775,3380,3225,2616,2049,2016,1997,1636,1716,1767,1632
-2019F,ME,PARCP,7019,8428,8449,9118,7880,8052,7430,8746,9374,9797,9751,9805,10339,9649,9258,8932,10724,11368,10168,8368,7009,5657,5450,3789,4836,6565,7258,7341,8149,7655,7055,7112,7064,7401,7612,9372,9690,9286,10062,9538,9251,9277,8213,11416,12276,11121,9644,9361,7718,7304,6761,6800,5635,6059,6465,7523,7357,7403,7801,7628
-2019F,ME,PATCP,26811,29504,28842,29794,31043,30114,31529,33848,35737,37714,40144,48344,52094,50511,44750,39001,45109,46013,42929,39401,34919,34060,39843,31370,36192,36578,42877,41433,49127,45317,43572,41697,40871,42274,44615,43184,44687,45361,44912,46943,46009,40698,41271,47832,46583,47579,42882,42975,38177,38591,36012,35926,32707,35498,36326,38053,36866,35631,33803,33129
-2019F,ME,PATPP,27.5,29.7,29,30,31.3,30.2,31.6,33.7,36,38,40.3,47.6,50.4,48.3,42.3,36.4,41.4,41.7,38.6,35.1,31,30.1,35.1,27.4,31.3,31.5,36.6,35,40.8,37.1,35.4,33.7,33,34,35.9,34.7,35.8,36.2,35.7,37.1,36,31.7,31.8,36.6,35.5,36.1,32.4,32.4,28.7,29,27.1,27,24.6,26.7,27.3,28.6,27.7,26.7,25.2,24.6
-2019F,ME,PATXP,24926,27073,26054,27217,27773,25651,27107,29095,30634,32889,35279,43236,46401,45496,40669,36147,43215,44681,41160,37133,31239,30297,36645,27854,32593,33117,38485,37082,44221,40111,39991,39378,38609,40744,43282,41440,43259,42587,41672,40971,42594,38828,40511,45684,45252,46032,42707,42252,37806,38089,35599,35684,32509,35059,35829,37144,36634,35359,33481,33056
-2019F,ME,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,245,265,250,265,258,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,245,265,250,265,258,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,19,23,22,21,12,13,5,2,1
-2019F,ME,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1200,1433,1449,1848,1760,1810,1700,1843,1809,1736
-2019F,ME,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46,102,29,31,47,101,87,119,94,93
-2019F,ME,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1565,1360,1280,1487,1708,1680,1705,1708,2038,2115
-2019F,ME,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2831,2914,2780,3388,3535,3603,3506,3675,3942,3945
-2019F,ME,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2831,2914,2780,3388,3535,3603,3506,3675,3942,3945
-2019F,ME,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ME,RFACP,776,1409,1362,1308,864,625,1274,1004,989,773,1415,1625,3414,3510,1614,934,909,538,311,753,209,634,638,17,18,21,72,53,418,197,147,115,154,281,232,204,202,107,281,187,697,544,832,3,27,950,817,198,59,798,438,539,490,653,321,160,199,60,66,58
-2019F,ME,RFCCP,145,135,74,76,176,72,121,120,141,220,292,659,657,609,512,334,534,552,454,397,682,360,641,742,1013,1040,1461,707,1880,1898,2137,2449,1243,730,760,369,508,587,281,109,253,187,396,319,348,494,280,408,746,407,283,208,104,208,58,59,43,36,40,27
-2019F,ME,RFEIP,1847,2382,2732,2525,3204,4373,4334,4658,5000,4728,4770,4890,5435,4874,3993,2812,1856,1305,1742,2230,3620,3724,3142,3454,3556,3432,4359,4317,4855,5023,3557,2292,2233,1380,1278,1466,1144,2503,2958,5686,3235,1862,711,2017,1201,1518,158,697,357,491,399,235,194,432,488,867,227,257,306,65
-2019F,ME,RFICP,2639,2406,1349,1327,3075,1270,2129,2467,2511,3856,5128,11564,11592,10734,8980,5848,9402,9771,7945,6989,4047,5260,11027,4206,5742,3407,6920,4175,4976,4710,4789,5299,5954,6862,9065,7378,7722,6682,5423,5281,5315,4419,4156,2706,3155,3972,3287,2772,1985,1882,1338,1113,483,431,359,128,135,125,214,140
-2019F,ME,RFTCP,5408,6332,5516,5234,7319,6340,7858,8249,8641,9577,11605,18738,21098,19727,15099,9929,12701,12166,10452,10368,8557,9978,15448,8419,10328,7900,12812,9252,12129,11829,10630,10156,9585,9252,11336,9417,9576,9880,8943,11263,9499,7012,6095,5044,4731,6934,4543,4075,3146,3578,2459,2095,1271,1725,1225,1214,604,478,627,290
-2019F,ME,RFTXP,3560,3950,2785,2710,4114,1967,3524,3591,3640,4849,6835,13847,15663,14853,11106,7116,10845,10861,8710,8138,4937,6254,12306,4965,6772,4468,8452,4935,7274,6805,7073,7864,7351,7873,10057,7951,8432,7377,5985,5577,6265,5150,5384,3027,3531,5416,4384,3378,2789,3088,2059,1860,1077,1292,738,347,377,222,320,225
-2019F,ME,SGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,4,4,6,10,14,19,32
-2019F,ME,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,12,7
-2019F,ME,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,13,19,27,36,45
-2019F,ME,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,13,13,19,29,46,68,84
-2019F,ME,TPOPP,975,995,994,993,993,997,999,1004,994,992,997,1015,1034,1046,1059,1072,1088,1104,1114,1123,1127,1133,1137,1145,1156,1163,1170,1185,1204,1220,1232,1237,1239,1242,1243,1243,1249,1255,1259,1267,1277,1286,1296,1307,1314,1319,1324,1327,1331,1330,1328,1328,1328,1329,1331,1329,1332,1336,1340,1346
-2019F,ME,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,25,27,27,27,28,25,25,22,19,14,12,12,12,12,10,8,7,4,6,5,6,0,0,0,0,4,5,4
-2019F,ME,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,132,299,499,707,887,1048,1097,1296,1667,2333,2384,2494
-2019F,ME,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ME,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,132,299,499,707,887,1048,1097,1296,1667,2333,2384,2494
-2019F,ME,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,1,0,6,1,0,-2,0,0,0,0,0,9,8,11,14,6,6,3,5,7,7,9,10,1,2,0,-1,0,0,0,-1,0,-1,0,0,-2,-2
-2019F,MI,ARICP,2936,2562,2850,2614,2093,2264,3137,3159,3593,3257,3881,3766,4638,5366,4871,3886,3487,4142,4376,4163,3507,3550,2602,2739,2790,2779,3384,3506,2876,3863,3950,3464,3546,4453,3596,4955,3703,7777,6488,6669,5866,5629,5313,5363,6052,6060,5185,4565,3357,3682,3370,2792,2852,2935,3297,3705,4110,4194,3985,4142
-2019F,MI,ARTCP,2936,2562,2850,2614,2093,2264,3137,3159,3593,3257,3881,3766,4638,5366,4871,3886,3487,4142,4376,4163,3507,3550,2602,2739,2790,2779,3384,3506,2876,3863,3950,3464,3546,4453,3596,4955,3703,7777,6488,6669,5866,5629,5313,5363,6052,6060,5185,4565,3357,3682,3370,2792,2852,2935,3297,3705,4110,4194,3985,4142
-2019F,MI,ARTXP,2936,2562,2850,2614,2093,2264,3137,3159,3593,3257,3881,3766,4638,5366,4871,3886,3487,4142,4376,4163,3507,3550,2602,2739,2790,2779,3384,3506,2876,3863,3950,3464,3546,4453,3596,4955,3703,7777,6488,6669,5866,5629,5313,5363,6052,6060,5185,4565,3357,3682,3370,2792,2852,2935,3297,3705,4110,4194,3985,4142
-2019F,MI,AVACP,1312,1263,1774,1942,2203,2619,3282,3591,4749,4886,718,257,497,583,204,347,380,438,469,384,488,250,157,324,181,201,250,242,241,268,215,206,182,198,237,231,215,197,167,286,205,79,167,89,80,84,67,76,74,62,118,111,102,92,66,74,74,75,84,88
-2019F,MI,AVTCP,1312,1263,1774,1942,2203,2619,3282,3591,4749,4886,718,257,497,583,204,347,380,438,469,384,488,250,157,324,181,201,250,242,241,268,215,206,182,198,237,231,215,197,167,286,205,79,167,89,80,84,67,76,74,62,118,111,102,92,66,74,74,75,84,88
-2019F,MI,AVTXP,1312,1263,1774,1942,2203,2619,3282,3591,4749,4886,718,257,497,583,204,347,380,438,469,384,488,250,157,324,181,201,250,242,241,268,215,206,182,198,237,231,215,197,167,286,205,79,167,89,80,84,67,76,74,62,118,111,102,92,66,74,74,75,84,88
-2019F,MI,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,9,8,15,52,149,202,174,184,149,507,478,848,783,714,1052,826,830,636
-2019F,MI,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,9,8,15,52,149,202,174,184,149,507,478,848,783,714,1052,826,830,636
-2019F,MI,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,CLACP,223,57,53,55,55,50,46,34,33,23,21,17,14,8,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,CLCCP,982,1005,979,851,658,760,788,600,580,501,378,441,356,378,324,279,304,268,224,106,243,149,193,139,236,197,198,91,136,139,214,216,155,194,247,221,238,167,129,18,12,8,234,28,161,141,8,155,190,246,177,163,90,73,68,47,14,0,0,0
-2019F,MI,CLEIP,10300,10283,12003,13268,14442,16123,18148,19015,20820,21952,20124,20508,20421,20513,20755,20914,20369,21028,21495,23134,22150,23407,21806,22872,24491,25896,27061,30854,29968,29972,29830,30103,28465,28976,31334,31400,32405,32158,34253,33854,33277,33928,33367,34101,35312,36273,34926,36574,36476,35330,34976,32335,29669,31653,29401,29487,23126,24058,24238,21278
-2019F,MI,CLICP,13011,12579,13241,14869,14982,15193,15609,14271,15215,13574,13061,13165,13607,11510,8567,9885,8964,7526,6734,8304,8652,8020,7242,6610,6630,6645,6681,4892,5189,4738,4719,3718,3127,3231,4278,4383,4283,3770,3857,4636,4004,3793,2781,2840,3012,3017,3132,2922,3204,1850,2621,2636,2291,2588,2474,2391,1516,1974,2039,1918
-2019F,MI,CLKCP,4518,4169,4400,4886,5266,5324,5091,4501,4982,4879,4999,5008,5348,5079,3981,5237,4472,3972,3160,4028,4117,3797,3464,2790,2589,2683,2687,1066,820,939,1063,570,0,1,1388,1400,1335,1357,1728,2693,1995,1616,978,1006,1063,1188,1339,1179,1544,958,1483,1495,1240,1333,1360,1463,812,1268,1419,1365
-2019F,MI,CLOCP,8493,8410,8841,9984,9716,9870,10518,9770,10233,8695,8063,8157,8259,6431,4586,4647,4492,3553,3574,4276,4535,4223,3778,3820,4041,3962,3994,3826,4369,3798,3656,3149,3127,3230,2890,2983,2948,2413,2129,1943,2009,2177,1802,1834,1949,1828,1793,1744,1660,891,1139,1141,1051,1256,1114,929,704,706,621,553
-2019F,MI,CLRCP,1414,1446,1409,1175,908,1007,1045,795,738,638,481,424,268,222,152,119,124,104,67,26,65,33,40,26,55,56,59,27,38,37,54,48,34,43,44,33,32,21,16,2,2,1,32,4,18,12,1,17,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,CLTCP,25930,25370,27686,30218,31046,33132,35637,34715,37387,36688,34065,34556,34666,32632,29804,31198,29763,28926,28519,31570,31110,31610,29280,29647,31412,32793,33999,35865,35332,34885,34817,34086,31781,32445,35902,36037,36958,36116,38255,38510,37294,37730,36413,36973,38503,39442,38067,39669,39870,37425,37775,35134,32050,34315,31944,31925,24656,26032,26277,23196
-2019F,MI,CLTXP,15631,15087,15683,16950,16604,17009,17489,15700,16566,14736,13942,14048,14245,12119,9048,10284,9393,7899,7024,8436,8960,8202,7475,6775,6921,6898,6938,5011,5364,4914,4987,3982,3316,3468,4568,4637,4553,3958,4002,4656,4018,3802,3047,2872,3191,3170,3141,3095,3394,2095,2799,2799,2381,2662,2543,2439,1530,1974,2039,1918
-2019F,MI,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,DFACP,2475,3151,3405,3801,4358,3348,3759,5121,5284,6247,6353,6132,9645,10453,9837,8949,9916,10595,11137,11427,9741,10382,9568,10585,10690,12328,12324,13851,13953,13369,13207,13487,13973,17635,17922,18125,18940,19815,21145,21764,21915,21472,22514,23163,23993,23256,23767,23422,20749,20008,21161,21252,20997,23149,23746,24111,24061,22179,25764,24246
-2019F,MI,DFCCP,3212,3176,3219,3089,2934,3019,3058,3371,3471,3360,3482,3818,4030,3918,3614,3589,3540,3550,3635,2130,3123,2367,2131,2489,3057,2449,3111,1923,2559,2421,2010,1933,1754,1477,1308,1638,1766,1917,1506,1401,1577,1525,966,1184,1063,1267,1337,1128,1055,1358,1130,1240,1172,1337,1161,1335,1132,1338,1071,1418
-2019F,MI,DFEIP,77,81,80,75,65,68,129,200,207,253,965,1686,1822,1243,1886,1462,1726,1635,1120,506,780,639,506,456,547,646,511,406,496,459,341,287,312,344,328,410,300,312,468,505,374,369,535,484,393,372,302,295,287,257,255,321,223,223,261,195,214,179,211,163
-2019F,MI,DFICP,7091,6755,6790,6426,6130,7518,7835,9626,8804,8886,8502,9433,10061,10116,8781,8749,9792,9841,9591,5677,4804,5347,4425,3703,4549,4408,4850,4694,5256,4395,3957,4565,4592,4502,4306,3457,3889,3986,4122,4909,4055,3494,2767,3229,3651,3475,3020,3154,3415,3091,3224,3208,2825,3322,3173,3803,3912,3500,3756,3737
-2019F,MI,DFRCP,17380,17186,17418,16716,15875,16334,16547,18241,18779,18182,18839,20656,21807,21202,19555,19420,19155,19207,19667,11527,9195,7894,6312,4942,6070,6192,6193,5740,6128,5559,4842,4547,4199,4163,3672,3815,3859,3662,2653,2994,2902,2654,2212,2283,2040,1945,1504,1371,1208,909,673,670,459,561,701,511,461,433,478,533
-2019F,MI,DFTCP,30235,30350,30912,30108,29363,30287,31328,36559,36544,36928,38141,41724,47365,46932,43673,42170,44130,44829,45149,31268,27643,26630,22943,22176,24913,26024,26989,26614,28392,26202,24357,24820,24830,28123,27536,27444,28754,29692,29895,31573,30824,29515,28994,30344,31139,30315,29929,29371,26713,25622,26443,26691,25676,28591,29042,29956,29780,27630,31280,30097
-2019F,MI,DFTXP,30158,30269,30832,30033,29298,30219,31199,36359,36337,36675,37176,40039,45543,45689,41787,40708,42404,43194,44030,30761,26864,25991,22436,21720,24366,25378,26478,26208,27897,25743,24016,24532,24518,27778,27208,27034,28454,29380,29427,31069,30450,29145,28460,29859,30746,29943,29627,29076,26426,25366,26187,26371,25453,28368,28781,29762,29566,27451,31070,29934
-2019F,MI,ELEXP,70,201,480,823,708,732,572,638,826,1096,1428,1123,561,414,509,1556,39,0,0,0,186,302,9,95,228,94,55,37,217,5440,10958,554,315,29,1,41,219,2004,3561,1108,1656,2176,2474,4818,5258,4411,2474,2888,4001,1939,2554,457,302,215,331,190,30,29,53,3402
-2019F,MI,ELIMP,1320,1379,546,377,335,319,519,660,585,674,1028,1636,3065,3982,4156,1875,2817,6111,6727,7,5871,4744,2150,1365,783,485,743,807,382,13,40,108,83,2420,6910,5801,2126,3384,2027,889,1329,74,240,1253,2054,1681,357,1682,6305,7576,6118,4525,4572,6033,6176,8481,7837,5735,6540,6048
-2019F,MI,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3136,-10864,-740,-10073,-2972,-6603,-6249,807,13319,13893,13581,3595,2645,13443,4402,4208,9749,1858,-1249,204,-2254,900,2228,1251,-298,-10050,-6325,-7500,-8941,-10113
-2019F,MI,ELNIP,1250,1178,66,-446,-374,-413,-53,22,-241,-422,-400,514,2504,3567,3647,320,2778,6111,6727,7,5685,4442,2141,1270,556,391,688,770,164,-5426,-10918,-446,-231,2391,6909,5760,1907,1380,-1534,-219,-327,-2102,-2234,-3564,-3204,-2730,-2117,-1206,2305,5637,3564,4069,4270,5818,5844,8291,7807,5705,6487,2645
-2019F,MI,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,482,1294,1269,1011,814,1154,1193,1144,1184,1556,1347,1592,1832,1204,507,646,835,947,2243,1368,2900,3637,3758,4987,5246,6442,8851,10059,9643,9866,10487,11084,10615,10171,10396,10430,10313,10369
-2019F,MI,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,13,14,8,6,9,9,8,9,9,7,1,6,1,0,0,2,1,3,5,6,6,6,9,4,5,7,12,7,7,8,8,324,188,191,197,197,203
-2019F,MI,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,9,12,13,10,14,13,12,12,17,13,16,21,14,7,7,8,8,20,21,47,63,74,95,108,126,152,134,113,114,133,143,97,147,151,155,156,157
-2019F,MI,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,491,1316,1295,1032,830,1176,1214,1164,1205,1582,1367,1609,1859,1219,514,654,845,956,2267,1394,2953,3706,3838,5091,5358,6573,9010,10205,9763,9987,10628,11235,11035,10507,10738,10781,10666,10729
-2019F,MI,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,ESACP,9,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,5,5,4,5,4,5,4,4,5,5,3,3,5,4,5,5,5,5,5,7,6,4,4,4,6,7,6
-2019F,MI,ESCCP,6381,6772,7287,7865,8533,9124,9880,10489,11401,12222,13021,13784,14509,15557,15308,14596,15233,15820,16037,16672,16765,16822,16760,17176,17933,18421,19137,19850,20876,21480,21986,22748,22508,30242,31264,32153,32896,33231,34710,36040,36793,35925,36835,35391,38632,39600,39299,40047,38974,37870,38123,38613,38514,37698,37349,38441,38986,38325,38925,37861
-2019F,MI,ESICP,12482,12199,13977,15634,17130,19350,21525,21914,24098,25895,25169,27287,29856,32914,30272,28866,33200,34513,35609,35203,30656,30858,27599,30153,33070,33704,34091,35098,36324,36131,35062,35007,35657,30572,32717,33921,34499,35430,35983,37276,37268,34174,33537,39813,34867,34745,34093,33879,32505,27391,30841,31624,31836,31322,32446,30677,30934,30591,30806,29886
-2019F,MI,ESRCP,8728,9180,9551,9956,10573,11309,12326,13223,14528,15841,17103,18168,19397,20246,20288,20886,21323,21709,21858,22042,22260,21530,21276,21946,22309,22302,23025,24032,25316,25319,25319,26760,25671,26770,27174,28623,28901,28726,29808,30661,30707,32305,34336,33669,33104,36095,34622,35366,34297,32854,34681,34811,34461,34013,33515,33358,34543,32977,35131,33496
-2019F,MI,ESRPP,1114,1163,1204,1236,1291,1353,1448,1532,1671,1804,1924,2024,2148,2230,2225,2291,2336,2367,2371,2379,2405,2338,2334,2426,2465,2457,2523,2616,2746,2736,2719,2847,2708,2806,2831,2958,2962,2929,3027,3098,3085,3233,3428,3353,3292,3591,3450,3536,3448,3318,3511,3522,3482,3431,3374,3358,3470,3305,3518,3355
-2019F,MI,ESTCP,27599,28157,30819,33455,36236,39784,43731,45626,50027,53957,55292,59239,63761,68716,65868,64348,69756,72042,73504,73917,69681,69210,65635,69276,73313,74427,76253,78980,82517,82929,82367,84519,83840,87589,91160,94701,96302,97391,100506,103981,104772,102409,104714,108877,106606,110445,108018,109297,105781,98121,103649,105054,104818,103038,103314,102480,104468,101899,104869,101249
-2019F,MI,ESTPP,3523,3567,3885,4152,4426,4761,5138,5287,5753,6145,6220,6601,7062,7570,7224,7057,7641,7855,7974,7977,7529,7515,7201,7657,8101,8200,8354,8596,8952,8962,8846,8991,8845,9181,9498,9787,9868,9929,10206,10506,10527,10250,10455,10843,10602,10988,10763,10928,10635,9910,10493,10630,10590,10392,10402,10316,10495,10214,10500,10140
-2019F,MI,ESTXP,27599,28157,30819,33455,36236,39784,43731,45626,50027,53957,55292,59239,63761,68716,65868,64348,69756,72042,73504,73917,69681,69210,65635,69276,73313,74427,76253,78980,82517,82929,82367,84519,83840,87589,91160,94701,96302,97391,100506,103981,104772,102409,104714,108877,106606,110445,108018,109297,105781,98121,103649,105054,104818,103038,103314,102480,104468,101899,104869,101249
-2019F,MI,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,FSICP,0,0,0,129,122,144,144,126,124,126,158,199,140,119,134,188,200,193,218,127,109,52,57,72,94,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,HLACP,21,24,29,35,29,34,48,89,79,91,62,80,85,101,99,95,162,211,296,223,128,301,270,321,434,291,283,340,345,284,283,262,251,275,470,241,224,204,804,352,266,151,183,212,397,509,231,278,289,227,69,67,54,56,48,53,57,103,71,79
-2019F,MI,HLCCP,192,186,202,257,231,232,298,381,395,459,444,485,578,575,542,516,572,541,516,338,333,293,324,385,437,438,498,614,642,707,646,716,724,788,780,792,1063,1005,939,1064,1095,1368,1461,1582,1547,933,915,911,998,690,687,654,751,943,929,732,949,1070,1148,1135
-2019F,MI,HLICP,524,529,627,720,729,923,826,814,938,1076,854,903,1025,1142,1299,1239,1777,2146,2606,3262,2637,1788,2982,2244,1886,8725,9479,10011,9316,10356,6926,7228,7791,3420,4528,4826,5425,2361,1127,2323,3006,2434,3457,2984,5110,6279,4407,4112,1003,988,1041,1288,1360,1593,1554,1581,1593,1393,1220,1474
-2019F,MI,HLRCP,2090,2032,2201,2801,2520,2528,3246,4155,4305,5000,4842,5287,6304,6274,5905,5625,6236,5894,5632,3690,3637,3191,3531,4200,4767,4771,5430,6691,6999,7706,7045,7811,7900,8595,8509,8637,11594,10955,10238,11599,11940,14923,15937,15801,13772,15437,9483,10916,10215,9925,9139,8667,7056,9598,10292,8582,9036,9082,11109,11281
-2019F,MI,HLTCP,2827,2771,3059,3813,3509,3716,4417,5439,5716,6626,6202,6755,7993,8092,7845,7475,8748,8793,9051,7515,6736,5572,7107,7150,7523,14225,15690,17656,17302,19053,14901,16017,16666,13077,14287,14497,18306,14524,13108,15339,16308,18876,21039,20578,20826,23157,15036,16217,12506,11829,10936,10675,9221,12190,12823,10949,11635,11648,13549,13968
-2019F,MI,HLTXP,2827,2771,3059,3813,3509,3716,4417,5439,5716,6626,6202,6755,7993,8092,7845,7475,8748,8793,9051,7515,6736,5572,7107,7150,7523,14225,15690,17656,17302,19053,14901,16017,16666,13077,14287,14497,18306,14524,13108,15339,16308,18876,21039,20578,20826,23157,15036,16217,12506,11829,10936,10675,9221,12190,12823,10949,11635,11648,13549,13968
-2019F,MI,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,HYEGP,1817,1636,1574,1246,1415,1667,1671,1800,1739,1733,1581,1621,1644,890,1051,989,926,804,950,1185,1083,1124,1094,1113,954,881,604,364,483,749,1605,1729,1759,1740,1634,1570,1755,1686,1372,1432,1401,1536,1640,1310,1509,1433,1488,1244,1339,1347,1222,1328,1181,1390,1571,1469,1539,1650,1559,1640
-2019F,MI,HYICP,212,152,130,123,130,146,149,171,173,158,123,156,149,164,132,121,124,127,135,121,117,117,117,117,117,117,117,117,117,0,23,23,23,22,26,27,29,26,25,26,27,26,29,75,30,29,32,26,26,25,28,29,26,29,29,30,26,29,10,10
-2019F,MI,HYTCP,2030,1788,1705,1369,1545,1813,1820,1970,1913,1891,1704,1776,1793,1054,1182,1110,1050,931,1085,1306,1200,1240,1211,1229,1071,997,721,481,600,749,1628,1752,1782,1762,1660,1597,1784,1712,1397,1458,1428,1562,1669,1386,1540,1462,1520,1270,1364,1372,1251,1357,1207,1419,1600,1499,1564,1679,1569,1650
-2019F,MI,HYTXP,212,152,130,123,130,146,149,171,173,158,123,156,149,164,132,121,124,127,135,121,117,117,117,117,117,117,117,117,117,0,23,23,23,22,26,27,29,26,25,26,27,26,29,75,30,29,32,26,26,25,28,29,26,29,29,30,26,29,10,10
-2019F,MI,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,JFACP,3369,3538,4115,4153,4436,4377,5126,6201,7421,7798,7365,7195,6693,6807,6336,5700,5698,6271,6480,6624,6646,6131,5706,5892,5983,6570,7129,8371,8585,9235,10057,10234,10125,10305,10281,8818,9045,9487,9033,9116,7214,6219,6016,2695,3733,3431,4124,5270,4641,4270,9317,9466,9314,9356,9463,10551,10709,10982,10650,10602
-2019F,MI,JFTCP,3369,3538,4115,4153,4436,4377,5126,6201,7421,7798,7365,7195,6905,6959,6460,5776,5735,6290,6499,6639,6646,6131,5706,5892,5983,6570,7129,8371,8585,9235,10057,10234,10125,10305,10281,8818,9045,9487,9033,9116,7214,6219,6016,2695,3733,3431,4124,5270,4641,4270,9317,9466,9314,9356,9463,10551,10709,10982,10650,10602
-2019F,MI,JFTXP,3369,3538,4115,4153,4436,4377,5126,6201,7421,7798,7365,7195,6693,6807,6336,5700,5698,6271,6480,6624,6646,6131,5706,5892,5983,6570,7129,8371,8585,9235,10057,10234,10125,10305,10281,8818,9045,9487,9033,9116,7214,6219,6016,2695,3733,3431,4124,5270,4641,4270,9317,9466,9314,9356,9463,10551,10709,10982,10650,10602
-2019F,MI,KSCCP,566,853,969,932,943,946,743,335,351,351,403,423,423,312,262,224,231,202,184,105,15,19,18,17,12,11,13,15,19,56,18,17,5,25,33,102,149,56,66,37,33,35,28,19,22,28,26,8,7,8,13,9,3,7,9,9,11,10,5,9
-2019F,MI,KSICP,2741,4280,4706,3953,3815,3655,2856,2092,2096,1962,2175,2023,1651,1262,985,823,1007,947,926,1288,1135,767,166,100,51,70,60,82,56,69,34,64,41,72,60,32,42,44,50,51,44,45,19,21,32,42,35,15,6,10,20,4,1,1,1,1,1,1,1,2
-2019F,MI,KSRCP,765,1153,1310,1260,1275,1279,1005,453,475,475,545,572,572,421,354,302,313,273,249,142,83,206,559,440,370,425,346,325,400,392,217,279,205,355,322,233,230,254,272,606,356,222,160,264,221,219,153,95,49,71,64,46,15,23,35,29,29,12,12,19
-2019F,MI,KSTCP,4072,6286,6985,6145,6033,5880,4604,2880,2922,2788,3124,3018,2645,1995,1600,1349,1551,1421,1360,1535,1233,992,743,557,433,507,419,421,474,517,270,360,251,452,415,366,421,354,387,694,433,302,208,304,275,290,214,119,63,89,97,60,20,31,46,38,41,23,18,30
-2019F,MI,KSTXP,4072,6286,6985,6145,6033,5880,4604,2880,2922,2788,3124,3018,2645,1995,1600,1349,1551,1421,1360,1535,1233,992,743,557,433,507,419,421,474,517,270,360,251,452,415,366,421,354,387,694,433,302,208,304,275,290,214,119,63,89,97,60,20,31,46,38,41,23,18,30
-2019F,MI,LUACP,1277,1242,1110,1110,1166,1126,1170,1036,1138,1300,1324,1307,1399,1605,1537,1321,1468,1476,1585,1659,1477,1417,1292,1353,1442,1344,1314,1486,1433,1470,1513,1353,1380,1405,1468,1443,1401,1480,1549,1565,1542,1412,1396,1290,1307,1300,1267,1308,1215,1092,680,650,597,656,665,738,703,622,626,582
-2019F,MI,LUICP,1221,1188,1351,1351,1419,1898,1972,1518,1667,1800,1834,1478,1583,2072,1984,1430,1588,1795,1928,2017,1796,1723,1571,1645,1754,1635,1598,1807,1743,1787,1839,1646,1678,1708,1786,1755,1703,1799,1883,1903,1875,1718,1697,1569,1590,1581,1541,1591,1477,1328,543,530,495,526,537,575,554,517,493,461
-2019F,MI,LUTCP,2497,2430,2462,2461,2584,3025,3142,2554,2806,3099,3157,2785,2982,3676,3521,2751,3056,3272,3513,3676,3274,3140,2863,2998,3197,2979,2913,3293,3176,3257,3352,2999,3057,3113,3254,3198,3104,3279,3432,3468,3416,3130,3093,2859,2897,2882,2808,2899,2692,2420,1224,1179,1092,1182,1202,1313,1256,1139,1118,1043
-2019F,MI,LUTXP,2497,2430,2462,2461,2584,3025,3142,2554,2806,3099,3157,2785,2982,3676,3521,2751,3056,3272,3513,3676,3274,3140,2863,2998,3197,2979,2913,3293,3176,3257,3352,2999,3057,3113,3254,3198,3104,3279,3432,3468,3416,3130,3093,2859,2897,2882,2808,2899,2692,2420,1224,1179,1092,1182,1202,1313,1256,1139,1118,1043
-2019F,MI,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-350,-296,-216,-104,-293,-411,-185,-85,84,81,-39,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,MGACP,62307,62470,64588,68558,71008,74814,79127,80980,87250,91519,93269,96271,102196,106857,104350,105412,110775,112327,115155,106677,95235,91008,86469,87207,91097,91556,94158,97282,100548,99399,98167,99679,99868,103892,104215,109159,109025,111042,113608,119839,116941,117204,119567,116798,116468,117139,115637,113760,109444,108134,107099,104587,103658,107612,104960,107851,109880,108630,108808,107251
-2019F,MI,MGCCP,324,340,433,427,487,536,599,599,711,762,804,774,928,938,950,954,1044,991,984,712,823,884,889,844,1024,699,706,727,754,670,770,586,553,77,363,77,77,76,208,171,159,433,247,203,191,207,91,82,84,127,82,79,78,81,3199,1998,2017,2048,2081,2096
-2019F,MI,MGICP,3151,2941,2991,2949,2749,2694,2681,2827,2835,3073,2758,2495,2073,2305,1757,1889,1687,1494,1387,872,967,890,822,595,831,1192,1151,1145,1065,1074,976,1111,950,1034,1166,1310,1418,1271,1097,1017,1060,1835,1931,2018,2308,2237,2378,2218,1883,1442,1254,1206,1316,1385,959,1559,1598,1612,1643,1626
-2019F,MI,MGTCP,65782,65750,68012,71934,74245,78044,82406,84406,90795,95354,96831,99540,105198,110100,107057,108255,113506,114812,117526,108261,97025,92783,88179,88646,92952,93447,96015,99154,102367,101143,99913,101375,101370,105003,105744,110546,110520,112389,114913,121027,118160,119472,121745,119019,118967,119584,118106,116059,111410,109703,108436,105871,105052,109078,109118,111408,113495,112289,112532,110973
-2019F,MI,MGTXP,65782,65750,68012,71934,74245,78044,82406,84406,90795,95354,96831,99540,105198,110100,107057,108255,113506,114812,117526,108261,97025,92783,88179,88646,92952,93447,96015,99154,102367,101143,99913,101375,101370,105003,105744,110546,110520,112389,114913,121027,118160,119472,121745,119019,118967,119584,118106,116059,111410,109703,108436,105871,105052,109078,109118,111408,113495,112289,112532,110973
-2019F,MI,MSICP,1223,1365,1498,793,793,774,830,776,865,806,720,572,586,727,931,1254,1821,2060,1792,1658,1572,891,781,700,601,605,580,583,707,650,585,886,581,550,615,564,600,659,802,755,804,565,607,570,513,510,271,266,283,302,316,328,322,444,474,490,496,354,352,320
-2019F,MI,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,NGACP,2601,1717,1849,2658,4595,4559,6888,8805,8220,8751,10367,15466,16119,12023,10951,10225,11796,11612,3575,12419,12365,13637,13392,7873,10721,10544,14733,12212,18377,16824,17930,19593,21726,23919,22570,24920,25994,23818,20897,22558,26584,22290,26943,27445,27553,27846,25637,26065,23677,23709,25163,23869,20828,19058,20972,19794,16289,19238,21566,28093
-2019F,MI,NGCCP,43001,42838,64495,68676,74367,84834,95282,107796,117124,130062,132708,146217,159970,180274,189192,181949,178220,131266,142935,182316,190268,174722,170269,159916,160952,157758,135592,185956,167900,176182,159429,165558,173802,180230,183068,194078,201390,192258,163368,179351,186800,173734,176010,186129,175190,174625,153896,163740,172108,163683,152350,163567,144609,171519,186413,168360,158613,162634,180333,181825
-2019F,MI,NGEIP,5209,8179,2601,2032,2384,2989,2495,4718,6842,15495,64270,69809,58899,62392,68987,56710,53510,32151,36384,37860,26368,19230,12727,12618,9711,10126,10945,10754,15027,21577,85036,83577,93676,97533,101858,122976,140030,142946,148126,150258,134870,133054,146133,103319,133186,130601,109230,123641,93453,83805,113245,112783,181235,110694,111819,166202,242787,213463,254337,276086
-2019F,MI,NGICP,117241,137474,140223,148672,166972,192404,224801,262304,252658,289001,261746,275297,274516,324055,320797,300434,305092,267067,278440,273753,248857,231532,192975,175316,197724,189778,179813,134181,199409,200984,289709,281582,312690,247191,239739,254125,259931,255398,224368,248258,247174,233241,249503,222359,218675,222133,198803,156249,148611,137031,151661,158243,167193,179152,187838,178347,178484,176262,182340,179302
-2019F,MI,NGRCP,201977,218084,234483,242886,250971,270996,286839,302472,315694,333264,340033,343773,355266,341607,346116,334866,339417,299199,328260,369378,387279,361752,358778,340732,338996,341026,330240,314293,348512,361667,327396,337205,358088,369801,364588,380025,399522,379838,319701,350735,367728,343682,367765,385568,362024,358623,315769,328432,341754,327113,304330,318004,276778,334211,354713,312098,294152,299158,326962,332254
-2019F,MI,NGTCP,370029,408292,443651,464924,499289,555782,616305,686095,700538,776573,809124,850562,864770,920351,936043,884184,888035,741295,789594,875726,865137,800873,748141,696455,718104,709232,671323,657396,749225,777234,879499,887514,959982,918675,911822,976124,1026867,994259,876459,951161,963155,906000,966354,924819,916629,913827,803336,798126,779603,735341,746749,776466,790643,814634,861755,844801,890325,870755,965538,997560
-2019F,MI,NGTPP,47.2,51.7,55.9,57.7,61,66.5,72.4,79.5,80.6,88.4,91,94.8,95.8,101.4,102.7,97,97.3,80.8,85.7,94.5,93.5,87,82.1,77,79.4,78.1,73.5,71.6,81.3,84,94.5,94.4,101.3,96.3,95,100.9,105.2,101.4,89,96.1,96.8,90.7,96.5,92.1,91.2,90.9,80,79.8,78.4,74.3,75.6,78.6,79.9,82.2,86.8,85,89.4,87.3,96.7,99.9
-2019F,MI,NGTXP,364820,400113,441050,462892,496905,552793,613810,681377,693696,761078,744854,780753,805871,857959,867056,827474,834525,709144,753210,837866,838769,781643,735414,683837,708393,699106,660378,646642,734198,755657,794463,803938,866306,821142,809964,853148,886838,851313,728333,800903,828285,772947,820221,821501,783443,783227,694106,674485,686150,651536,633504,663683,609408,703940,749936,678599,647538,657292,711201,721474
-2019F,MI,NUEGP,0,0,0,122,192,181,343,502,426,401,375,388,2125,2980,416,7176,9901,10231,13104,15139,15891,17066,15003,16383,14078,13452,12257,14389,17808,21312,21610,27021,18849,28525,14144,24448,26829,21914,12494,14591,18882,26711,31087,27954,30562,32872,29066,31517,31484,21851,29625,32889,28020,28921,31246,29334,31552,32381,30479,32909
-2019F,MI,NUETP,0,0,0,122,192,181,343,502,426,401,375,388,2125,2980,416,7176,9901,10231,13104,15139,15891,17066,15003,16383,14078,13452,12257,14389,17808,21312,21610,27021,18849,28525,14144,24448,26829,21914,12494,14591,18882,26711,31087,27954,30562,32872,29066,31517,31484,21851,29625,32889,28020,28921,31246,29334,31552,32381,30479,32909
-2019F,MI,OPICP,3867,3954,4032,3388,5345,5645,5220,4713,4998,5258,5362,4775,4553,4874,5013,5551,6559,6896,7241,6853,6050,3377,3165,3645,4142,3388,3333,3754,3753,3699,3652,3245,3413,3217,3187,3013,3560,3544,3777,3525,2922,2589,2765,2619,2258,2826,2709,2737,2618,2268,2240,2239,2412,3324,3346,3329,3329,3257,3172,3196
-2019F,MI,OPTCP,3867,3954,4032,3388,5345,5645,5220,4713,4998,5258,5362,4775,4553,4874,5013,5551,6559,6896,7241,6853,6050,3377,3165,3645,4142,3388,3333,3754,3753,3699,3652,3245,3413,3217,3187,3013,3560,3544,3777,3525,2922,2589,2765,2619,2258,2826,2709,2737,2618,2268,2240,2239,2412,3324,3346,3329,3329,3257,3172,3196
-2019F,MI,OPTXP,3867,3954,4032,3388,5345,5645,5220,4713,4998,5258,5362,4775,4553,4874,5013,5551,6559,6896,7241,6853,6050,3377,3165,3645,4142,3388,3333,3754,3753,3699,3652,3245,3413,3217,3187,3013,3560,3544,3777,3525,2922,2589,2765,2619,2258,2826,2709,2737,2618,2268,2240,2239,2412,3324,3346,3329,3329,3257,3172,3196
-2019F,MI,P1ICP,10949,12168,13112,11485,12880,13665,13380,11670,12539,12402,13367,12492,12964,13959,13273,12239,13155,14280,15046,14936,13129,9828,7943,8663,9293,8405,8961,9734,9026,10571,10635,9558,9866,10664,10065,11392,10653,14779,13850,13602,12207,10388,10194,11077,11404,10913,9864,10317,8394,8371,7433,6823,7274,8437,9061,9343,9907,9952,9194,9716
-2019F,MI,P1TCP,14867,16680,18276,16728,18466,19635,19581,17086,19253,19414,16357,15051,15855,16879,15629,14433,15547,16669,17534,17226,15192,11720,9969,10797,11298,10387,10886,11802,11118,12757,12598,11413,11637,12647,12125,13400,12651,16765,16007,16161,14351,12139,12019,12800,13051,12715,11595,12056,9975,9839,8529,7804,8169,9839,11699,11665,12144,12949,12486,12165
-2019F,MI,P1TXP,14867,16680,18276,16728,18466,19635,19581,17086,19253,19414,16357,15051,15855,16879,15629,14433,15547,16669,17534,17226,15192,11720,9969,10797,11298,10387,10886,11802,11118,12757,12598,11413,11637,12647,12125,13400,12648,16765,15904,16096,14343,12137,11946,12740,13034,12545,11377,11804,9739,9605,8308,7639,7992,9215,9837,10192,10723,10671,9921,10414
-2019F,MI,PAACP,71489,72604,75871,80271,83832,87097,93039,97479,106497,112382,109518,111319,120795,126826,122818,122248,128685,131591,135330,127201,113946,109789,103527,105784,109882,112389,115491,121623,125136,124140,123533,125270,125875,133783,134691,138111,138970,142276,146388,152958,148131,146608,149891,144445,146228,145916,145325,144401,136629,133927,138689,136460,134947,141162,139128,143539,145941,143268,146784,143736
-2019F,MI,PACCP,5468,5557,5699,5683,5527,5572,5455,5139,5360,5552,5691,5953,6535,6256,5855,5672,6157,6225,6058,3767,4519,3676,3578,3798,4572,3872,4558,3412,4166,3943,3516,3258,3048,2376,2487,2614,3060,3108,2720,2676,2868,3378,2767,3078,2872,2440,2370,2129,2200,2195,1988,2080,2052,2369,5303,4078,4109,4467,4313,4657
-2019F,MI,PAEIP,440,460,452,423,369,384,733,1137,1175,1436,5479,8765,9642,12041,13704,15674,15889,15758,20423,15610,10400,6031,2524,1397,1325,1168,1666,1522,2915,2993,1490,1232,1145,1391,1442,1512,1539,1343,2201,2690,2066,1522,2145,1697,1522,1641,751,1076,738,618,593,530,451,875,2139,1688,1662,2493,2793,1929
-2019F,MI,PAICP,31288,30543,31064,29718,29799,31460,30935,28735,28901,30371,30038,28885,30739,31764,29165,27460,32331,34571,33852,28017,24750,19875,18764,18564,18799,24944,26785,27600,26815,28154,23911,23208,23954,20573,21023,21387,21800,22812,20597,22184,20951,18504,18693,20020,23160,23813,20405,20768,15677,14234,13106,12743,12962,14873,14821,16358,17036,16475,15840,16577
-2019F,MI,PARCP,20234,20372,20929,20777,19670,20141,20798,22849,23558,23658,24226,26516,28683,27897,25814,25347,25704,25374,25548,15359,12915,11291,10402,9582,11207,11389,11969,12756,13527,13657,12104,12637,12304,13113,12502,12685,15682,14871,13163,15200,15199,17799,18310,18348,16033,17601,11140,12383,11472,10904,9876,9384,7531,10181,11028,9122,9525,9527,11599,11833
-2019F,MI,PATCP,128920,129536,134015,136873,139197,144653,150960,155339,165493,173399,174952,181438,196393,204784,197356,196401,208766,213518,221211,189955,166531,150661,138795,139125,145785,153761,160470,166913,172559,172888,164553,165604,166325,171235,172145,176308,181052,184411,185069,195707,189214,187811,191806,187589,189815,191411,179992,180757,166715,161879,164252,161196,157943,169460,172418,174785,178274,176230,181329,178733
-2019F,MI,PATPP,16.5,16.4,16.9,17,17,17.3,17.7,18,19,19.7,19.7,20.2,21.8,22.6,21.6,21.5,22.9,23.3,24,20.5,18,16.4,15.2,15.4,16.1,16.9,17.6,18.2,18.7,18.7,17.7,17.6,17.5,17.9,17.9,18.2,18.6,18.8,18.8,19.8,19,18.8,19.2,18.7,18.9,19,17.9,18.1,16.8,16.3,16.6,16.3,16,17.1,17.4,17.6,17.9,17.7,18.2,17.9
-2019F,MI,PATXP,128481,129076,133563,136449,138827,144269,150227,154202,164317,171962,169473,172673,186751,192743,183651,180727,192877,197760,200788,174345,156130,144630,136271,137728,144460,152593,158804,165391,169644,169894,163063,164373,165179,169844,170703,174796,179513,183068,182868,193017,187148,186290,189661,185892,188293,189770,179240,179681,165978,161260,163659,160666,157492,168585,170279,173097,176611,173737,178536,176804
-2019F,MI,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,103,65,8,2,73,60,17,170,218,252,236,234,220,165,178,624,1862,1473,1421,2278,2565,1751
-2019F,MI,PCICP,184,184,174,178,208,203,195,188,185,125,115,450,540,385,420,550,515,500,575,615,640,411,439,534,555,533,586,586,598,1153,1160,1140,1189,1214,1436,1637,1646,1614,1652,1455,1500,408,400,1504,1471,404,394,1409,935,1083,1260,1259,1514,1651,1879,1733,1913,1982,1543,1915
-2019F,MI,PCTCP,184,184,174,178,208,203,195,188,185,125,115,450,540,385,420,550,515,500,575,615,640,411,439,534,555,533,586,586,598,1153,1160,1140,1189,1214,1436,1637,1650,1614,1755,1519,1509,410,473,1565,1488,574,612,1661,1172,1317,1480,1423,1691,2275,3741,3205,3334,4260,4108,3666
-2019F,MI,PCTXP,184,184,174,178,208,203,195,188,185,125,115,450,540,385,420,550,515,500,575,615,640,411,439,534,555,533,586,586,598,1153,1160,1140,1189,1214,1436,1637,1646,1614,1652,1455,1500,408,400,1504,1471,404,394,1409,935,1083,1260,1259,1514,1651,1879,1733,1913,1982,1543,1915
-2019F,MI,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,69,67,54,56,48,53,57,103,71,79
-2019F,MI,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,687,654,751,943,929,732,949,1070,1148,1135
-2019F,MI,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1041,1288,1360,1593,1554,1581,1593,1393,1220,1474
-2019F,MI,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9139,8667,7056,9598,10292,8582,9036,9082,11109,11281
-2019F,MI,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10936,10675,9221,12190,12823,10949,11635,11648,13549,13968
-2019F,MI,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10936,10675,9221,12190,12823,10949,11635,11648,13549,13968
-2019F,MI,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MI,RFACP,728,916,847,671,633,779,528,461,577,541,427,78,279,421,454,423,286,271,208,206,232,299,65,100,55,99,34,51,30,114,92,50,97,73,97,94,123,52,82,36,48,71,47,198,251,197,232,288,218,134,246,328,225,240,181,160,458,677,781,888
-2019F,MI,RFCCP,1175,1002,877,978,932,839,757,452,433,620,558,454,576,512,488,390,769,942,738,482,225,113,217,63,42,274,230,134,192,89,71,5,12,8,3,5,5,55,2,3,5,17,64,90,49,4,2,0,56,12,76,98,47,1,4,3,0,1,7,0
-2019F,MI,RFEIP,362,379,372,349,304,316,604,937,969,1183,4514,7079,7608,10646,11694,14136,14127,14104,19285,15089,9621,5392,2018,941,778,522,1155,1116,2419,2534,1149,944,833,1047,1114,1101,1235,1031,1630,2120,1683,1150,1537,1152,1112,1099,231,529,214,127,117,44,50,28,16,21,28,37,17,15
-2019F,MI,RFICP,9574,8150,7544,8137,7309,6660,6213,3798,3785,4933,4557,3562,4615,4243,4055,3343,5920,6809,5222,3270,3213,2021,2592,3359,2241,2213,2343,2015,2152,1760,1416,746,755,953,958,402,415,415,400,332,622,352,344,713,687,909,736,967,982,342,154,218,188,138,73,72,26,18,26,24
-2019F,MI,RFTCP,11840,10447,9640,10136,9178,8594,8103,5647,5764,7278,10056,11173,13078,15822,16692,18291,21102,22126,25452,19046,13289,7825,4891,4464,3116,3109,3761,3316,4793,4497,2728,1745,1696,2081,2172,1602,1777,1553,2113,2491,2358,1590,1992,2153,2098,2209,1201,1783,1471,615,593,688,511,406,274,256,512,733,832,927
-2019F,MI,RFTXP,11477,10068,9268,9787,8874,8278,7498,4711,4795,6095,5543,4094,5470,5176,4997,4156,6975,8022,6168,3957,3669,2433,2873,3522,2338,2587,2606,2200,2374,1963,1579,801,863,1034,1058,500,542,522,483,371,675,440,455,1001,987,1110,970,1255,1256,488,476,644,461,378,258,235,484,696,815,912
-2019F,MI,SGICP,2252,2201,2183,2129,2080,2188,1944,1848,1889,2018,2056,1936,1631,1689,1634,2101,2066,2095,2187,1989,1406,1449,1486,1512,1567,1528,1777,1772,1855,1933,1947,1884,1887,1874,1839,1895,1911,1878,1879,1086,1094,1113,1093,1131,1121,1519,1523,1507,1444,1526,1535,1538,1779,1777,1841,1813,1825,1885,1919,1821
-2019F,MI,SNICP,0,0,0,0,2032,2200,2004,1669,1788,1960,2078,1643,1759,1779,1765,1517,2331,2430,2922,2959,2845,1613,1501,1764,2358,1813,1772,1975,1556,1464,1461,894,1063,1063,824,720,834,809,1200,1627,1090,738,963,757,480,588,684,762,829,451,255,221,144,979,1038,971,916,858,787,818
-2019F,MI,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,9,25,24,26,27,30,34,45,54
-2019F,MI,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,63,116,142
-2019F,MI,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3
-2019F,MI,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,5,6,8,10,24,31,34,54
-2019F,MI,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,12,31,31,35,39,64,129,197,253
-2019F,MI,TPOPP,7834,7893,7933,8058,8187,8357,8512,8630,8696,8781,8890,8974,9029,9078,9118,9118,9129,9171,9218,9266,9256,9209,9115,9048,9049,9076,9128,9187,9218,9253,9311,9400,9479,9540,9598,9676,9759,9809,9848,9897,9952,9991,10016,10041,10055,10051,10036,10001,9947,9902,9878,9883,9898,9915,9932,9934,9954,9977,9987,9985
-2019F,MI,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-372,-440,-262,-447,-442,-460,-470,-360,-514,-502,-613,-477,-534,-367,-442,-155,-138,-423,-224,-312,-59,-105,-38,-56,3,71,66,-54,-84,30,60,74,20,-101,-22,11,98,40,174
-2019F,MI,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,WXICP,392,388,351,337,318,339,298,294,332,349,350,424,437,561,549,491,141,118,122,119,116,87,68,74,74,75,73,79,81,80,80,232,246,264,268,268,358,322,312,275,243,226,200,193,191,195,160,134,117,75,105,92,94,105,94,78,82,62,76,64
-2019F,MI,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,141,300,360,456,1132,2800,3868,4797,4696,5191,5457,5826
-2019F,MI,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MI,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,141,300,360,456,1132,2800,3868,4797,4696,5191,5457,5826
-2019F,MI,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,13,2,0,12,2,0,-3,0,1,0,1,1,24,21,29,37,16,26,16,25,30,30,41,35,3,7,0,-3,-1,0,0,-2,-1,-1,-1,-1,-7,-6
-2019F,MN,ARICP,3004,3523,3358,3485,3549,3791,3615,3499,3728,4486,4413,4435,5233,5991,5595,4628,5431,5310,5462,5085,3565,3890,3878,4718,4669,4989,5480,5860,4897,4923,6039,5040,5343,4793,4745,6403,6674,6671,6884,7746,7420,6511,5593,6241,6630,7431,6953,6814,5448,4609,4743,4381,4465,4486,4240,4524,4456,2373,2931,3222
-2019F,MN,ARTCP,3004,3523,3358,3485,3549,3791,3615,3499,3728,4486,4413,4435,5233,5991,5595,4628,5431,5310,5462,5085,3565,3890,3878,4718,4669,4989,5480,5860,4897,4923,6039,5040,5343,4793,4745,6403,6674,6671,6884,7746,7420,6511,5593,6241,6630,7431,6953,6814,5448,4609,4743,4381,4465,4486,4240,4524,4456,2373,2931,3222
-2019F,MN,ARTXP,3004,3523,3358,3485,3549,3791,3615,3499,3728,4486,4413,4435,5233,5991,5595,4628,5431,5310,5462,5085,3565,3890,3878,4718,4669,4989,5480,5860,4897,4923,6039,5040,5343,4793,4745,6403,6674,6671,6884,7746,7420,6511,5593,6241,6630,7431,6953,6814,5448,4609,4743,4381,4465,4486,4240,4524,4456,2373,2931,3222
-2019F,MN,AVACP,1199,1262,869,888,918,803,685,541,421,303,277,249,259,262,241,215,217,207,241,217,193,163,119,117,125,154,225,178,166,158,214,188,134,132,125,129,124,137,92,141,136,95,137,93,92,102,86,87,78,141,87,94,94,85,74,84,76,78,78,76
-2019F,MN,AVTCP,1199,1262,869,888,918,803,685,541,421,303,277,249,259,262,241,215,217,207,241,217,193,163,119,117,125,154,225,178,166,158,214,188,134,132,125,129,124,137,92,141,136,95,137,93,92,102,86,87,78,141,87,94,94,85,74,84,76,78,78,76
-2019F,MN,AVTXP,1199,1262,869,888,918,803,685,541,421,303,277,249,259,262,241,215,217,207,241,217,193,163,119,117,125,154,225,178,166,158,214,188,134,132,125,129,124,137,92,141,136,95,137,93,92,102,86,87,78,141,87,94,94,85,74,84,76,78,78,76
-2019F,MN,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,23,19,37,125,359,487,418,443,358,1219,1239,1248,1597,1784,1948,1959,2836,3590
-2019F,MN,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,23,19,37,125,359,487,418,443,358,1219,1239,1248,1597,1784,1948,1959,2836,3590
-2019F,MN,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,CLACP,44,10,8,9,10,9,7,6,3,5,3,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,CLCCP,387,393,301,265,214,265,305,275,311,371,252,269,165,166,217,163,110,83,161,239,113,108,135,148,192,171,149,132,182,198,143,77,20,88,194,229,137,94,37,13,5,1,93,1,0,67,83,57,60,54,42,36,3,6,10,8,10,8,6,5
-2019F,MN,CLEIP,2433,2814,3170,3308,3816,3857,4527,4238,4562,5208,6192,5860,6255,6949,8065,7595,9947,12727,12117,11066,12610,12576,10818,10703,12015,11498,10170,13495,16259,17056,16916,16114,15841,16844,17046,17282,17459,17490,17902,17114,18639,18427,19088,20729,20070,20008,19573,19178,18763,17355,16582,16515,13384,13765,16534,14459,13686,13359,13813,10599
-2019F,MN,CLICP,2555,2239,2066,2372,2714,2776,2501,2362,1587,2728,2020,1495,1741,2171,1757,2292,1954,1859,2047,1589,1057,1186,1134,1105,1006,1027,964,838,792,972,1283,785,1059,1370,1455,1401,2088,1490,2014,1954,2092,1254,1261,1268,1312,1300,1271,1354,1359,1167,1305,1295,1131,1270,1236,957,1055,1201,1076,995
-2019F,MN,CLKCP,731,527,655,673,1023,949,967,911,395,1003,611,524,605,1127,754,938,644,652,548,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,CLOCP,1824,1712,1411,1699,1692,1827,1534,1451,1192,1725,1409,971,1137,1044,1003,1354,1310,1208,1499,1544,1057,1186,1134,1105,1006,1027,964,838,792,972,1283,785,1059,1370,1455,1401,2088,1490,2014,1954,2092,1254,1261,1268,1312,1300,1271,1354,1359,1167,1305,1295,1131,1270,1236,957,1055,1201,1076,995
-2019F,MN,CLRCP,557,565,432,366,296,352,405,365,396,473,320,258,125,97,102,70,45,32,48,60,30,24,28,28,45,48,44,39,51,53,36,17,4,19,34,34,19,12,5,2,1,0,13,0,0,6,8,6,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,CLTCP,5976,6021,5977,6320,7051,7259,7745,7246,6860,8785,8787,7884,8287,9384,10141,10120,12056,14702,14374,12954,13810,13894,12115,11984,13258,12744,11327,14504,17285,18279,18377,16993,16924,18321,18729,18947,19703,19086,19958,19082,20735,19683,20455,21998,21382,21381,20935,20595,20182,18576,17929,17846,14518,15041,17781,15425,14752,14568,14895,11600
-2019F,MN,CLTXP,3543,3208,2807,3012,3235,3402,3218,3008,2299,3577,2595,2024,2033,2435,2077,2525,2108,1975,2256,1888,1200,1318,1297,1281,1243,1247,1157,1009,1026,1223,1462,879,1083,1477,1684,1665,2244,1596,2056,1969,2097,1255,1367,1269,1312,1372,1362,1417,1419,1221,1347,1331,1134,1276,1247,966,1065,1209,1082,1000
-2019F,MN,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,DFACP,3194,3416,3000,3298,3424,3276,3681,2890,4282,4638,5064,5120,5480,6548,6680,6691,7017,6768,7876,9862,8117,7794,8318,7976,7585,8038,7912,8595,9031,8669,9168,10423,10910,11035,12181,12926,12901,13295,14740,15422,16559,16221,16495,16340,17319,17508,18383,19515,17745,15559,16462,17602,17973,17885,18338,17652,19997,19969,21516,22329
-2019F,MN,DFCCP,1323,1264,1415,1343,1330,1542,1672,1712,1822,1746,1759,1915,2070,2014,1827,1770,2163,2075,2099,1751,1443,835,988,2738,3362,2845,1134,1110,1160,1204,1091,908,754,655,823,862,1014,873,843,889,889,1134,821,760,804,1002,666,727,932,1045,808,1048,968,1218,1241,1054,971,1081,852,775
-2019F,MN,DFEIP,156,129,149,185,173,182,139,151,287,357,551,587,1123,1014,950,674,878,599,912,458,167,80,89,81,54,49,60,101,131,81,91,90,62,90,108,134,140,253,184,217,246,199,95,206,129,232,149,397,157,122,64,52,59,68,117,58,61,56,76,99
-2019F,MN,DFICP,6062,5944,6413,6257,6430,7651,8465,7956,8419,8206,7784,8358,8874,8920,8080,7991,9451,9044,9219,7784,5708,5171,5299,3462,4252,4985,5962,5225,5567,5403,5483,5598,6144,5785,5841,6031,6510,6404,6298,5291,4857,5154,5010,5616,5854,5741,5296,5150,6017,5417,6722,6776,6814,7080,7215,6140,5971,6147,6840,7251
-2019F,MN,DFRCP,5414,5170,5788,5495,5443,6309,6840,7004,7452,7145,7197,7834,8467,8239,7473,7242,8850,8489,8587,7165,5946,4818,6206,3131,3846,3973,4208,4279,4608,5236,3743,4088,3399,3221,3082,3085,3451,2932,2542,2102,2294,2288,2216,2413,2351,1956,1541,1544,1711,1018,1169,987,821,966,896,770,791,628,689,560
-2019F,MN,DFTCP,16151,15923,16765,16578,16801,18960,20798,19714,22261,22092,22356,23814,26014,26735,25009,24369,28359,26975,28693,27020,21382,18698,20900,17388,19099,19891,19275,19310,20497,20592,19576,21107,21270,20786,22035,23038,24016,23757,24606,23920,24846,24995,24636,25336,26457,26439,26035,27334,26562,23162,25225,26464,26634,27217,27807,25674,27791,27881,29972,31014
-2019F,MN,DFTXP,15994,15794,16616,16393,16628,18777,20658,19563,21974,21735,21805,23227,24891,25721,24059,23695,27481,26376,27781,26562,21215,18618,20811,17306,19045,19842,19216,19209,20366,20512,19485,21017,21207,20696,21926,22904,23876,23505,24423,23704,24599,24796,24541,25130,26327,26207,25886,26937,26405,23040,25161,26412,26575,27149,27691,25616,27730,27825,29896,30915
-2019F,MN,ELEXP,0,1,1,1,0,0,0,0,0,0,0,0,0,0,134,1,43,338,2,1,61,14,75,2,2,26,125,473,3203,2439,1014,269,46,480,113,148,255,120,1018,1103,625,601,2431,6363,3542,2328,3291,3289,1010,495,676,244,459,262,441,117,34,65,349,104
-2019F,MN,ELIMP,91,90,0,110,121,111,114,117,129,128,127,133,131,178,178,185,248,524,1282,1832,1014,105,325,410,994,2695,6986,2414,1534,2011,1742,3121,5470,6711,7856,8589,9093,10009,8954,7101,8517,8871,6605,3852,6152,10140,11216,10147,8778,8287,7783,7954,6974,8180,7189,8038,8511,7264,4201,7984
-2019F,MN,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9043,9624,7671,5174,5735,7127,8550,9271,7429,10022,7710,10372,12981,17704,16138,12752,13131,13334,12569,9457,12879,13484,14589,15274,10564,7165,4114,6739,8746,4854
-2019F,MN,ELNIP,90,89,-1,109,121,111,114,117,129,128,127,133,131,178,44,185,205,186,1280,1830,953,91,251,408,992,2668,6860,1941,-1669,-428,728,2852,5425,6231,7743,8441,8837,9889,7936,5998,7892,8270,4174,-2511,2610,7811,7925,6858,7768,7792,7106,7710,6514,7917,6748,7921,8477,7198,3852,7880
-2019F,MN,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,8,6,628,778,502,405,478,544,1064,1676,3145,3598,3877,2984,4291,4869,5401,5494,5579,6047,6512,6259,4911,4434,5629,6058,5976,7590,6804,7053,7154,7161,7456,7599,7643,7398,7498
-2019F,MN,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6,3,2,2,19,4,4,3,3,4,3,82,86,5,5,5,5,83,5,4,99,85,85,65,87,76,82,76,77,190,195,125,126,129
-2019F,MN,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,28,17,11,13,13,33,49,77,88,87,37,150,108,94,91,135,138,142,138,101,88,134,92,99,166,158,160,177,148,149,162,164,165,162
-2019F,MN,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,11,8,6,658,812,521,418,493,577,1102,1729,3224,3690,3968,3023,4523,5063,5500,5589,5718,6190,6736,6403,5016,4621,5848,6235,6140,7843,7038,7295,7406,7386,7795,7957,7932,7688,7788
-2019F,MN,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,25,21,21,22,22,22,19,17,19,24,24,24,24,26,25
-2019F,MN,ESCCP,1540,1676,1758,1874,1881,2026,2255,2410,2611,2920,3178,3380,3663,3846,3853,4845,5218,5240,5362,5573,5724,6456,6856,6707,7252,7469,7625,8031,8601,8454,8813,9162,9007,9229,9698,10407,10850,10888,11152,11637,12311,20520,20197,20533,20407,21985,22175,22523,22604,22311,22515,22371,22496,23041,22828,23388,23502,23274,23399,22904
-2019F,MN,ESICP,3095,3275,3652,3970,4419,4677,5311,6098,7169,7964,8506,8983,9742,10785,10691,11280,12265,12447,14784,16169,15525,16034,14269,15909,17995,17934,17849,19911,22131,22700,23497,23938,23557,24384,25451,26577,26934,27713,28214,27764,28842,20767,21515,21916,22415,22266,22664,23041,23810,19637,22798,23619,23416,22734,23076,21453,21217,22281,22447,21748
-2019F,MN,ESRCP,4186,4543,4834,5199,5607,6063,6571,6919,7607,8303,9031,9297,9945,10009,10012,10189,10474,10368,11315,11511,11749,12281,12773,13392,13028,13261,13259,13834,14996,14778,14858,15655,14848,15597,16007,16974,17157,17073,17378,17998,18629,19400,20451,20638,20507,21743,21909,22646,22357,22034,22465,22524,22060,22850,22791,21714,21804,21574,22837,22288
-2019F,MN,ESRPP,1222,1309,1376,1472,1576,1688,1817,1891,2054,2210,2367,2413,2570,2573,2565,2591,2642,2599,2818,2842,2876,2987,3092,3234,3134,3169,3153,3266,3491,3406,3385,3525,3303,3423,3472,3642,3641,3584,3610,3693,3776,3893,4075,4084,4031,4247,4243,4349,4261,4172,4230,4213,4102,4220,4180,3960,3946,3874,4072,3952
-2019F,MN,ESTCP,8821,9493,10245,11044,11907,12766,14137,15427,17386,19187,20715,21660,23350,24640,24555,26313,27958,28054,31461,33253,32998,34771,33898,36008,38275,38664,38734,41775,45728,45932,47167,48755,47412,49211,51155,53959,54942,55674,56744,57399,59782,60687,62162,63087,63340,66019,66770,68231,68794,64004,67800,68533,67989,68644,68719,66579,66546,67153,68708,66966
-2019F,MN,ESTPP,2576,2736,2916,3128,3347,3554,3909,4216,4695,5106,5430,5621,6034,6335,6290,6691,7052,7032,7835,8210,8078,8457,8205,8695,9206,9240,9211,9864,10644,10588,10745,10979,10546,10801,11096,11579,11658,11688,11789,11778,12117,12179,12386,12484,12450,12895,12931,13103,13111,12119,12766,12818,12643,12677,12603,12141,12044,12058,12250,11873
-2019F,MN,ESTXP,8821,9493,10245,11044,11907,12766,14137,15427,17386,19187,20715,21660,23350,24640,24555,26313,27958,28054,31461,33253,32998,34771,33898,36008,38275,38664,38734,41775,45728,45932,47167,48755,47412,49211,51155,53959,54942,55674,56744,57399,59782,60687,62162,63087,63340,66019,66770,68231,68794,64004,67800,68533,67989,68644,68719,66579,66546,67153,68708,66966
-2019F,MN,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,FSICP,0,0,0,74,79,92,102,105,118,116,150,191,193,172,196,227,240,228,254,159,185,86,99,126,164,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,HLACP,27,27,38,45,40,37,77,99,143,140,95,107,112,117,107,97,103,93,129,67,68,149,125,148,178,123,126,72,74,62,57,52,54,100,126,134,140,137,13,7,7,13,14,86,98,99,87,92,171,115,32,33,27,29,24,23,24,29,10,47
-2019F,MN,HLCCP,464,469,495,541,536,604,708,771,823,935,955,1024,1135,1034,954,902,916,847,663,486,438,398,421,500,358,359,418,404,425,467,438,476,532,654,643,664,892,844,587,725,812,711,685,966,746,709,680,581,959,789,671,776,678,946,1075,988,1129,1326,1622,1440
-2019F,MN,HLICP,841,762,714,844,745,988,840,801,1088,1264,1275,1263,1370,1557,1638,1985,1457,1543,1974,4618,4183,2671,4054,3449,1983,2406,2865,2165,2202,2351,2459,2795,3765,3674,4254,4392,4855,3485,2777,2989,3442,3359,5899,3926,5448,5156,4702,4618,3265,4306,2372,2070,2232,3578,4085,2719,2596,2720,2906,3772
-2019F,MN,HLRCP,3192,3223,3400,3717,3685,4152,4868,5302,5658,6430,6563,7036,7799,7108,6560,6203,6294,5821,4560,3338,3008,2738,2892,3440,2464,2465,2871,2777,2920,3208,3012,3272,3657,4498,4422,4567,6130,5803,4033,4984,5583,4890,4705,5884,5370,5197,4894,5111,5307,5377,5058,5075,4408,5136,6113,5317,5280,6497,7314,8051
-2019F,MN,HLTCP,4525,4481,4646,5146,5006,5781,6493,6974,7712,8769,8887,9430,10415,9816,9259,9187,8769,8304,7326,8509,7697,5956,7492,7538,4983,5353,6280,5418,5621,6088,5966,6594,8008,8926,9445,9758,12018,10269,7410,8705,9844,8974,11302,10862,11662,11161,10363,10401,9701,10587,8133,7955,7345,9688,11296,9046,9028,10572,11852,13310
-2019F,MN,HLTXP,4525,4481,4646,5146,5006,5781,6493,6974,7712,8769,8887,9430,10415,9816,9259,9187,8769,8304,7326,8509,7697,5956,7492,7538,4983,5353,6280,5418,5621,6088,5966,6594,8008,8926,9445,9758,12018,10269,7410,8705,9844,8974,11302,10862,11662,11161,10363,10401,9701,10587,8133,7955,7345,9688,11296,9046,9028,10572,11852,13310
-2019F,MN,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,HYEGP,731,603,791,693,786,915,987,700,834,827,726,829,859,872,736,728,475,537,904,766,642,793,861,929,826,829,936,720,532,658,685,813,830,895,891,874,937,807,750,906,684,645,764,721,607,645,475,558,609,675,713,629,487,421,529,734,1078,1102,962,959
-2019F,MN,HYICP,156,135,175,148,159,178,198,163,173,178,168,151,183,185,182,189,112,133,177,151,145,145,145,145,145,145,145,145,145,159,172,224,233,256,247,224,250,227,204,272,248,186,45,93,132,130,96,96,118,134,127,117,74,90,19,115,130,156,92,97
-2019F,MN,HYTCP,887,737,966,841,945,1093,1186,863,1007,1004,894,980,1041,1057,918,917,588,670,1081,917,786,938,1006,1073,971,973,1081,865,677,817,857,1037,1063,1151,1139,1098,1187,1035,955,1179,931,832,809,815,738,775,572,654,727,809,840,746,561,511,548,849,1209,1258,1054,1056
-2019F,MN,HYTXP,156,135,175,148,159,178,198,163,173,178,168,151,183,185,182,189,112,133,177,151,145,145,145,145,145,145,145,145,145,159,172,224,233,256,247,224,250,227,204,272,248,186,45,93,132,130,96,96,118,134,127,117,74,90,19,115,130,156,92,97
-2019F,MN,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,JFACP,472,741,1108,1027,1583,2624,2954,2809,3339,4024,3491,3985,4528,5185,5545,5629,5313,5271,5091,5644,5142,4516,4261,4044,7331,7781,7801,5656,5142,4663,5099,4978,6621,9438,9780,9969,10625,10892,10709,12591,13301,11588,11064,11977,12505,12656,11773,11275,10238,9200,9101,8722,8548,9681,9136,9537,9795,10110,9714,10093
-2019F,MN,JFTCP,472,741,1108,1027,1583,2624,2954,2809,3339,4024,3491,3985,4528,5185,5545,5629,5313,5271,5093,5644,5142,4516,4261,4044,7331,7781,7801,5656,5142,4663,5099,4978,6621,9438,9780,9969,10625,10892,10709,12591,13301,11588,11064,11977,12505,12656,11773,11275,10238,9200,9101,8722,8548,9681,9136,9537,9795,10110,9714,10093
-2019F,MN,JFTXP,472,741,1108,1027,1583,2624,2954,2809,3339,4024,3491,3985,4528,5185,5545,5629,5313,5271,5091,5644,5142,4516,4261,4044,7331,7781,7801,5656,5142,4663,5099,4978,6621,9438,9780,9969,10625,10892,10709,12591,13301,11588,11064,11977,12505,12656,11773,11275,10238,9200,9101,8722,8548,9681,9136,9537,9795,10110,9714,10093
-2019F,MN,KSCCP,378,317,350,357,355,337,412,190,249,212,259,210,149,137,156,121,143,124,85,21,0,5,4,2,1,24,4,5,5,4,5,3,7,9,14,23,27,26,31,20,54,35,22,14,10,14,12,10,7,3,6,3,1,3,2,1,4,1,2,2
-2019F,MN,KSICP,444,254,337,448,460,420,585,375,289,188,231,215,133,100,182,177,238,218,195,99,98,29,36,43,41,23,31,11,34,50,7,10,8,16,75,31,35,25,26,74,67,15,8,13,14,16,10,9,5,4,5,3,2,3,5,2,3,4,3,3
-2019F,MN,KSRCP,1748,1462,1618,1648,1640,1556,1904,875,1150,979,1195,969,688,635,719,558,659,572,394,97,114,115,191,91,178,137,88,75,115,270,30,41,38,36,45,50,61,52,73,32,33,188,16,18,28,27,18,11,8,18,20,13,5,9,12,8,13,9,9,14
-2019F,MN,KSTCP,2570,2032,2305,2453,2456,2313,2901,1440,1688,1379,1685,1394,970,872,1056,856,1040,913,674,217,212,149,231,136,220,184,124,91,153,324,42,54,53,60,134,104,123,102,130,125,154,237,46,45,52,58,40,30,20,25,31,19,8,14,19,12,20,14,14,19
-2019F,MN,KSTXP,2570,2032,2305,2453,2456,2313,2901,1440,1688,1379,1685,1394,970,872,1056,856,1040,913,674,217,212,149,231,136,220,184,124,91,153,324,42,54,53,60,134,104,123,102,130,125,154,237,46,45,52,58,40,30,20,25,31,19,8,14,19,12,20,14,14,19
-2019F,MN,LUACP,697,679,621,621,652,596,620,562,617,616,628,738,790,741,709,752,835,796,854,894,796,763,696,729,777,724,708,801,772,792,815,729,743,757,791,778,755,797,835,843,831,761,752,695,704,701,683,705,654,588,431,415,395,406,418,452,458,419,405,394
-2019F,MN,LUICP,263,256,237,237,249,163,169,241,264,291,296,361,386,305,292,252,280,323,347,363,324,310,283,296,316,294,288,326,314,322,331,296,302,308,322,316,307,324,339,343,338,309,306,283,286,285,278,287,266,239,368,361,319,347,363,337,356,332,325,312
-2019F,MN,LUTCP,960,934,858,858,901,759,789,802,881,907,924,1099,1176,1046,1002,1003,1114,1119,1202,1257,1120,1074,979,1025,1093,1019,996,1126,1086,1114,1146,1026,1046,1065,1113,1094,1061,1121,1174,1186,1168,1070,1058,978,991,986,960,992,921,828,800,776,714,754,782,789,814,750,731,705
-2019F,MN,LUTXP,960,934,858,858,901,759,789,802,881,907,924,1099,1176,1046,1002,1003,1114,1119,1202,1257,1120,1074,979,1025,1093,1019,996,1126,1086,1114,1146,1026,1046,1065,1113,1094,1061,1121,1174,1186,1168,1070,1058,978,991,986,960,992,921,828,800,776,714,754,782,789,814,750,731,705
-2019F,MN,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-581,-519,-377,-182,-584,-804,-362,-185,182,183,-88,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,MGACP,28176,27879,29007,30102,29924,31173,33119,34215,36289,38265,40279,42320,43892,45905,44692,44766,46179,47705,49631,47561,44535,43578,41800,43996,46004,43232,43859,45270,47299,47132,45075,46937,48159,50077,51237,53061,54146,52898,55878,58819,60074,60719,62039,62484,63352,63344,61825,62210,61118,59601,59598,56786,58700,58508,58782,59629,61118,61197,59727,59456
-2019F,MN,MGCCP,142,146,150,153,154,158,163,169,213,216,235,245,256,286,298,355,347,370,418,440,340,352,361,350,633,335,327,240,242,191,1568,198,117,49,49,50,50,1010,988,50,50,52,52,794,52,53,1378,941,861,652,686,631,682,618,635,1523,1569,998,1014,1024
-2019F,MN,MGICP,4266,4215,4334,4061,4188,3947,3866,3525,3810,3661,3608,3301,3579,2962,2942,3132,3416,2839,2894,2474,1336,1094,2715,1714,1413,1718,1590,1509,1272,1253,1117,1442,1417,1222,1254,1192,670,1846,1240,1026,996,1465,1412,1360,1400,1299,1228,1476,924,987,1302,1321,1332,1444,1214,1194,1305,1316,1330,1281
-2019F,MN,MGTCP,32583,32240,33491,34316,34266,35278,37149,37909,40312,42142,44122,45866,47727,49154,47932,48253,49942,50914,52943,50475,46211,45024,44877,46061,48051,45285,45776,47018,48813,48576,47760,48578,49693,51348,52540,54303,54866,55755,58106,59894,61120,62236,63503,64638,64804,64697,64432,64627,62903,61240,61587,58738,60715,60569,60631,62346,63993,63511,62071,61761
-2019F,MN,MGTXP,32583,32240,33491,34316,34266,35278,37149,37909,40312,42142,44122,45866,47727,49154,47932,48253,49942,50914,52943,50475,46211,45024,44877,46061,48051,45285,45776,47018,48813,48576,47760,48578,49693,51348,52540,54303,54866,55755,58106,59894,61120,62236,63503,64638,64804,64697,64432,64627,62903,61240,61587,58738,60715,60569,60631,62346,63993,63511,62071,61761
-2019F,MN,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,48,45,50,46,11,12,15,14,15,34,36,34,31,30,41,40,43,46,48,50,49,41,44,46,46,82,81,74
-2019F,MN,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,NGACP,304,631,725,766,1009,1180,1189,2654,2759,2993,7450,7869,7468,5439,3606,3871,3913,3646,3659,11030,9129,10188,8680,4376,6598,6237,7411,6458,11255,11889,12017,13332,14948,16240,17324,19194,19781,19523,20140,22075,21099,19113,23131,20338,20588,22271,20328,19924,17599,12571,15479,15230,12849,11667,12983,10225,11549,13372,14074,12926
-2019F,MN,NGCCP,20329,24422,38192,41757,24286,26882,35219,63740,65536,70232,76585,76441,79987,80219,90412,89651,76981,67839,81121,60509,63780,66755,74309,70713,75175,77020,74478,65923,79989,85183,78015,85875,82381,86629,83933,90658,98537,92232,82345,88061,95358,93844,104387,101446,96541,95916,87170,91275,99526,96218,89963,94360,83174,105937,110884,93005,92591,99756,110026,113428
-2019F,MN,NGEIP,48521,47928,48172,55848,53027,51420,51100,55591,64725,64241,58954,42773,51769,57506,38468,22709,13443,5205,1536,6966,8077,5553,3274,2861,1978,1275,1734,5700,5217,4427,5308,5870,4906,3942,5849,8323,5296,6117,12974,11334,9895,10610,13181,16752,12773,26024,24911,34790,24900,23665,36076,28244,57190,49640,30437,53096,65227,49052,63110,86744
-2019F,MN,NGICP,49251,52832,55149,49612,79639,82778,90159,72081,88468,92641,97569,122034,105065,114976,106236,100539,120059,116208,120086,143365,101473,87831,68116,65212,69977,66301,57847,71967,77710,81479,88359,92251,93025,97771,94468,106189,102456,107322,104610,104187,105875,92452,95671,94772,97103,94989,103009,113504,143837,128361,158457,157776,159947,160732,173569,157401,162818,165901,161560,162437
-2019F,MN,NGRCP,61422,66771,71892,71064,79015,86481,86821,89020,90410,95580,101764,102325,107119,102671,112922,114416,105760,100483,106827,112332,103387,95955,107660,97615,101910,106647,103303,89943,109669,116909,106966,117148,113560,123401,122249,128736,142319,128873,110449,118938,129804,124891,135213,137953,132893,128625,117153,128842,139489,133319,122993,125160,109103,139897,146647,117588,117598,123898,141400,144577
-2019F,MN,NGTCP,179827,192584,214130,219047,236976,248741,264488,283086,311898,325687,342322,351442,351408,360811,351644,331186,320156,293381,313229,334202,285846,266282,262039,240777,255638,257480,244773,239991,283840,299886,290665,314476,308821,327982,323822,353099,368388,354066,330518,344596,362031,340911,371583,371261,359898,367825,352570,388335,425351,394134,422968,420770,422263,467873,474520,431315,449783,451979,490170,520112
-2019F,MN,NGTPP,52.5,55.5,61,62,66.6,69.2,73.1,77.4,84.2,86.7,89.7,91.2,90.8,92.8,90.1,84.2,80.8,73.5,78,82.5,70,64.8,63.4,58.1,61.5,61.5,58.2,56.7,66.1,69.1,66.2,70.8,68.7,72,70.2,75.8,78.2,74.3,68.7,70.7,73.4,68.4,74,73.5,70.7,71.8,68.3,74.6,81.1,74.6,79.6,78.7,78.5,86.4,87,78.6,81.4,81.2,87.4,92.2
-2019F,MN,NGTXP,131306,144656,165958,163199,183949,197321,213388,227495,247173,261446,283368,308669,299639,303305,313176,308477,306713,288176,311693,327236,277769,260729,258765,237916,253660,256205,243039,234291,278623,295459,285357,308606,303915,324040,317973,344777,363092,347949,317544,333262,352136,330300,358402,354509,347125,341801,327659,353546,400451,370469,386892,392526,365073,418233,444083,378219,384556,402927,427060,433368
-2019F,MN,NUEGP,0,0,0,1,56,143,129,141,15,0,0,1394,3559,3270,4363,9750,9911,11163,11591,11503,10027,10187,10197,11753,8328,11572,11052,11554,12288,10926,12139,12059,11166,11986,12224,13243,12095,10819,11644,13316,12960,11789,13685,13414,13296,12835,13183,13103,12997,12393,13478,11959,11944,10708,12707,12039,13861,13904,14601,14105
-2019F,MN,NUETP,0,0,0,1,56,143,129,141,15,0,0,1394,3559,3270,4363,9750,9911,11163,11591,11503,10027,10187,10197,11753,8328,11572,11052,11554,12288,10926,12139,12059,11166,11986,12224,13243,12095,10819,11644,13316,12960,11789,13685,13414,13296,12835,13183,13103,12997,12393,13478,11959,11944,10708,12707,12039,13861,13904,14601,14105
-2019F,MN,OPICP,932,980,1074,1319,1648,1725,1681,1822,2094,2187,2329,2396,2810,2990,2966,3083,2905,2901,3025,2876,2791,1492,1599,2132,2215,1990,2014,2452,3275,3435,3633,3108,3853,3672,4136,3906,4972,4914,4144,4192,3816,5066,4777,5220,5079,5582,6041,6074,5327,5120,5207,5517,5571,5593,5173,5459,5715,6102,6122,6499
-2019F,MN,OPTCP,932,980,1074,1319,1648,1725,1681,1822,2094,2187,2329,2396,2810,2990,2966,3083,2905,2901,3025,2876,2791,1492,1599,2132,2215,1990,2014,2452,3275,3435,3633,3108,3853,3672,4136,3906,4972,4914,4144,4192,3816,5066,4777,5220,5079,5582,6041,6074,5327,5120,5207,5517,5571,5593,5173,5459,5715,6102,6122,6499
-2019F,MN,OPTXP,932,980,1074,1319,1648,1725,1681,1822,2094,2187,2329,2396,2810,2990,2966,3083,2905,2901,3025,2876,2791,1492,1599,2132,2215,1990,2014,2452,3275,3435,3633,3108,3853,3672,4136,3906,4972,4914,4144,4192,3816,5066,4777,5220,5079,5582,6041,6074,5327,5120,5207,5517,5571,5593,5173,5459,5715,6102,6122,6499
-2019F,MN,P1ICP,5024,5394,5370,5864,6370,6593,6567,6458,6955,7659,7919,8033,9380,10470,9951,9183,9837,9645,9949,9220,7527,6394,6517,8100,8188,8206,8814,9649,9547,9764,11122,9594,10724,10051,10644,12012,13458,13373,12870,13927,13206,13410,12215,13303,13424,14824,14717,14566,12364,11333,11755,11722,11895,11933,11133,11726,12007,10336,10906,11498
-2019F,MN,P1TCP,9046,9113,8828,9377,9935,9886,10188,8625,9392,9769,10420,10295,11367,12443,11963,10887,11691,11342,11524,10449,8630,7441,7527,9040,9269,9245,9840,10709,10769,11666,12912,11518,12711,12061,12612,13762,15478,15626,14941,16224,15338,15469,14196,15435,15463,16777,16273,15715,13388,12083,12299,12248,12390,12436,11640,12271,12558,10843,11400,11984
-2019F,MN,P1TXP,9046,9113,8828,9377,9935,9886,10188,8625,9392,9769,10277,10199,11266,12245,11776,10828,11691,11342,11524,10449,8630,7441,7527,9040,9269,9245,9840,10709,10605,10988,12185,10556,11647,10984,11619,12992,14424,14385,13900,14963,14258,14489,13141,14123,14258,15668,15516,15379,13111,12083,12299,12248,12390,12436,11640,12271,12558,10843,11400,11984
-2019F,MN,PAACP,33860,34094,34753,36286,36778,38584,41193,41285,45248,48085,49863,52522,55176,59164,58463,58726,60132,61006,64273,64655,59822,57235,55398,57059,62101,60209,60665,60576,62491,61477,60427,63310,66624,71539,74243,76997,78692,78166,82268,87824,91129,89576,90762,91746,94365,94645,93035,94285,90641,85363,85917,83789,85808,86669,86822,87458,91582,91802,91449,92394
-2019F,MN,PACCP,2942,2705,2911,2910,2847,3055,3380,3117,3385,3525,3601,3713,4215,4020,3705,3372,3919,3690,3507,2814,2252,1609,1947,3731,4450,3786,2190,1888,2128,2132,3362,1879,1605,1500,1688,1711,2120,2913,2610,1838,1942,2151,1775,2876,2062,2083,2971,2347,2945,2680,2353,2590,2343,2788,2960,3567,3676,3411,3494,3242
-2019F,MN,PAEIP,395,326,377,466,437,460,351,382,726,900,1537,1349,2209,2200,1853,1584,1924,1904,2233,1253,529,210,129,93,57,49,60,101,301,768,820,1054,1127,1168,1101,904,1196,1501,1225,1480,1327,1229,1154,1558,1396,1420,928,803,458,128,64,52,59,68,117,58,61,56,76,99
-2019F,MN,PAICP,21884,21281,22349,22076,22401,23392,23950,21820,23254,24790,24480,24098,28611,29004,26829,24965,27925,25812,26420,25411,20573,16485,19987,18090,16747,17796,20687,19622,19556,19557,20880,20179,23028,21833,22916,24163,26136,25628,23537,23627,23070,24087,25066,24815,26779,28112,26339,26599,23773,22380,22350,22141,22315,24050,23658,21790,21883,20534,21992,23845
-2019F,MN,PARCP,10354,9855,10805,10860,10768,12017,13612,13181,14260,14553,14955,15840,16954,15982,14751,14004,15803,14882,13541,10600,9069,7671,9289,6662,6487,6574,7168,7131,7643,8714,6786,7401,7094,7754,7549,7702,9642,8787,6648,7118,7910,7365,6937,8316,7748,7181,6454,6666,7026,6413,6247,6075,5234,6111,7021,6095,6084,7134,8013,8625
-2019F,MN,PATCP,69435,68261,71196,72598,73230,77507,82486,79785,86873,91855,94435,97523,107166,110370,105600,102651,109702,107294,109974,104732,92244,83211,86750,85636,89842,88414,90769,89318,92118,92648,92275,93822,99477,103793,107497,111477,117787,116994,116288,121888,125378,124408,125694,129311,132351,133440,129726,130701,124843,116963,116929,114647,115760,119687,120578,118968,123286,122938,125024,128206
-2019F,MN,PATPP,20.3,19.7,20.3,20.6,20.6,21.6,22.8,21.8,23.5,24.4,24.8,25.3,27.7,28.4,27,26.1,27.7,26.9,27.4,25.9,22.6,20.2,21,20.7,21.6,21.1,21.6,21.1,21.4,21.4,21,21.1,22.1,22.8,23.3,23.9,25,24.6,24.2,25,25.4,25,25,25.6,26,26.1,25.1,25.1,23.8,22.1,22,21.4,21.5,22.1,22.1,21.7,22.3,22.1,22.3,22.7
-2019F,MN,PATXP,69040,67935,70819,72132,72793,77047,82135,79403,86147,90954,92898,96174,104957,108170,103747,101067,107778,105390,107741,103480,91716,83000,86620,85543,89785,88365,90710,89217,91818,91880,91455,92767,98351,102625,106396,110573,116591,115494,115062,120408,124051,123179,124540,127753,130955,132020,128798,129898,124385,116836,116866,114595,115701,119619,120462,118909,123225,122881,124948,128107
-2019F,MN,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,PCEIP,0,0,0,0,0,0,0,0,0,0,143,96,101,199,187,59,0,0,0,0,0,0,0,0,0,0,0,0,164,678,727,962,1064,1077,993,770,1055,1241,1041,1261,1080,980,1054,1311,1205,1109,757,336,277,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,PCICP,382,382,364,375,464,493,518,521,580,507,650,626,818,1083,916,1043,984,893,920,797,749,673,721,911,947,909,1000,1001,1027,1034,1111,1140,1218,1262,1366,1357,1470,1440,1476,1573,1565,1509,1531,1546,1415,1510,1435,1382,1317,1360,1432,1461,1538,1505,1353,1404,1476,1526,1525,1463
-2019F,MN,PCTCP,382,382,364,375,464,493,518,521,580,507,793,722,919,1282,1103,1102,984,893,920,797,749,673,721,911,947,909,1000,1001,1190,1712,1838,2102,2282,2339,2359,2127,2524,2681,2517,2834,2645,2489,2586,2857,2620,2619,2193,1718,1594,1360,1432,1461,1538,1505,1353,1404,1476,1526,1525,1463
-2019F,MN,PCTXP,382,382,364,375,464,493,518,521,580,507,650,626,818,1083,916,1043,984,893,920,797,749,673,721,911,947,909,1000,1001,1027,1034,1111,1140,1218,1262,1366,1357,1470,1440,1476,1573,1565,1509,1531,1546,1415,1510,1435,1382,1317,1360,1432,1461,1538,1505,1353,1404,1476,1526,1525,1463
-2019F,MN,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,33,27,29,24,23,24,29,10,47
-2019F,MN,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,671,776,678,946,1075,988,1129,1326,1622,1440
-2019F,MN,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2372,2070,2232,3578,4085,2719,2596,2720,2906,3772
-2019F,MN,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5058,5075,4408,5136,6113,5317,5280,6497,7314,8051
-2019F,MN,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8133,7955,7345,9688,11296,9046,9028,10572,11852,13310
-2019F,MN,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8133,7955,7345,9688,11296,9046,9028,10572,11852,13310
-2019F,MN,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MN,RFACP,95,91,110,306,237,75,57,169,157,98,29,4,116,406,488,577,468,167,450,409,971,270,80,49,101,155,34,4,7,2,0,3,3,0,2,0,0,10,0,1,222,179,262,70,296,234,199,402,636,159,204,137,71,76,49,81,113,0,0,0
-2019F,MN,RFCCP,634,510,502,516,471,414,424,275,279,416,393,320,606,549,470,223,350,274,242,116,32,19,173,141,94,223,307,129,296,266,259,293,195,133,159,111,138,160,161,155,137,218,195,342,449,306,235,88,186,190,182,132,15,4,8,1,4,5,4,2
-2019F,MN,RFEIP,239,197,228,282,264,278,212,230,439,544,842,666,985,988,716,851,1046,1305,1320,795,361,130,40,12,3,0,0,0,6,9,1,2,0,1,0,0,2,7,1,2,1,50,5,41,62,78,21,70,25,5,0,0,0,0,0,0,0,0,0,0
-2019F,MN,RFICP,5690,4966,5518,5050,4667,4213,4211,3080,2982,4001,3894,3143,5408,5095,4218,2675,3765,2741,2384,1315,1818,1156,1400,1365,911,481,1456,1075,968,786,700,749,978,1101,924,536,643,519,353,394,570,698,530,610,654,1092,396,789,1203,336,198,251,42,15,11,10,5,15,9,43
-2019F,MN,RFTCP,6658,5764,6358,6154,5640,4980,4904,3754,3857,5059,5159,4133,7115,7038,5891,4326,5629,4487,4395,2635,3183,1576,1693,1567,1109,859,1797,1208,1277,1062,961,1047,1176,1235,1085,647,783,695,515,552,930,1146,992,1063,1461,1710,851,1348,2051,691,585,520,128,95,67,92,121,20,14,44
-2019F,MN,RFTXP,6419,5567,6130,5872,5376,4702,4692,3523,3418,4515,4316,3467,6130,6050,5175,3475,4583,3182,3076,1841,2821,1446,1653,1555,1106,859,1797,1208,1271,1054,959,1045,1175,1234,1085,647,781,689,514,551,929,1096,987,1022,1399,1631,829,1278,2026,686,585,520,128,95,67,92,121,20,14,44
-2019F,MN,SGICP,911,959,1056,1227,1354,1401,1370,1543,1790,1866,1962,1857,2246,2442,2397,2535,2482,2482,2542,2485,2384,2406,2605,2635,2746,3044,3479,3469,4039,4162,4384,4243,4359,4654,4726,4653,5037,4952,4922,4845,4954,5040,4949,5118,5076,5308,5320,5350,5017,5102,4866,5096,5165,5195,5105,5203,5372,5539,5737,5698
-2019F,MN,SNICP,0,0,0,0,198,215,209,174,186,204,217,347,372,376,373,321,182,190,229,232,223,185,172,203,271,208,238,266,209,197,196,84,100,100,77,67,64,62,91,124,83,64,84,66,42,51,294,327,356,193,109,95,62,212,225,211,199,144,132,137
-2019F,MN,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,6,6,10,14,17,24,28,35
-2019F,MN,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,10,596,1042,1249
-2019F,MN,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,5,10,12
-2019F,MN,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,4,5,8,10,18,30,43,58
-2019F,MN,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,4,5,11,15,21,28,47,655,1123,1353
-2019F,MN,TPOPP,3425,3470,3513,3531,3558,3592,3617,3659,3703,3758,3815,3853,3870,3889,3904,3933,3965,3989,4015,4050,4085,4112,4131,4141,4158,4184,4205,4235,4296,4338,4390,4441,4496,4556,4610,4660,4713,4763,4813,4873,4934,4983,5019,5054,5088,5120,5164,5207,5247,5281,5311,5347,5378,5415,5453,5484,5525,5569,5609,5640
-2019F,MN,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-617,-772,-457,-784,-881,-900,-921,-784,-1106,-1131,-1379,-1101,-1327,-944,-1085,-407,-363,-1107,-1000,-1414,-267,-473,-173,-255,10,248,235,-189,-281,95,198,216,58,-279,-64,31,288,119,545
-2019F,MN,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,WXICP,21,20,18,18,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,186,200,203,203,238,214,207,183,162,170,151,146,144,147,136,114,99,64,89,78,79,87,78,65,68,49,60,51
-2019F,MN,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,23,28,28,30,29,29,26,25,25
-2019F,MN,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,57,50,54,147,486,725,897,906,978,812,1582,2055,2639,4355,5053,4780,6703,8148,8231,9661,9750,9905,11111,10688,10940
-2019F,MN,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MN,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,57,50,54,147,486,725,897,906,978,812,1582,2055,2639,4355,5053,4792,6726,8176,8259,9691,9779,9933,11137,10714,10965
-2019F,MN,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,23,28,28,30,29,29,26,25,25
-2019F,MO,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,ARICP,3725,4046,4122,4192,4084,4401,4724,4746,4893,5479,5657,5804,5613,6784,6551,5401,4600,4977,5788,5016,4002,3175,3289,3419,3960,4295,4624,4351,5657,4545,4468,4062,3832,4055,5703,5296,5385,4141,3906,4977,4167,5404,4740,4832,5972,5739,5206,4089,2876,2756,1840,2818,2155,2096,2098,1982,2077,2118,1993,1918
-2019F,MO,ARTCP,3725,4046,4122,4192,4084,4401,4724,4746,4893,5479,5657,5804,5613,6784,6551,5401,4600,4977,5788,5016,4002,3175,3289,3419,3960,4295,4624,4351,5657,4545,4468,4062,3832,4055,5703,5296,5385,4141,3906,4977,4167,5404,4740,4832,5972,5739,5206,4089,2876,2756,1840,2818,2155,2096,2098,1982,2077,2118,1993,1918
-2019F,MO,ARTXP,3725,4046,4122,4192,4084,4401,4724,4746,4893,5479,5657,5804,5613,6784,6551,5401,4600,4977,5788,5016,4002,3175,3289,3419,3960,4295,4624,4351,5657,4545,4468,4062,3832,4055,5703,5296,5385,4141,3906,4977,4167,5404,4740,4832,5972,5739,5206,4089,2876,2756,1840,2818,2155,2096,2098,1982,2077,2118,1993,1918
-2019F,MO,AVACP,1844,1461,2419,2491,2603,2323,918,537,367,233,179,207,184,322,299,184,165,177,211,189,162,209,145,142,133,135,164,134,162,200,126,117,115,93,113,109,108,160,136,75,98,146,119,104,124,188,128,126,97,85,102,96,87,79,68,70,69,73,76,73
-2019F,MO,AVTCP,1844,1461,2419,2491,2603,2323,918,537,367,233,179,207,184,322,299,184,165,177,211,189,162,209,145,142,133,135,164,134,162,200,126,117,115,93,113,109,108,160,136,75,98,146,119,104,124,188,128,126,97,85,102,96,87,79,68,70,69,73,76,73
-2019F,MO,AVTXP,1844,1461,2419,2491,2603,2323,918,537,367,233,179,207,184,322,299,184,165,177,211,189,162,209,145,142,133,135,164,134,162,200,126,117,115,93,113,109,108,160,136,75,98,146,119,104,124,188,128,126,97,85,102,96,87,79,68,70,69,73,76,73
-2019F,MO,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,9,18,60,174,235,202,214,173,589,553,884,845,767,1153,954,874,693
-2019F,MO,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,9,18,60,174,235,202,214,173,589,553,884,845,767,1153,954,874,693
-2019F,MO,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,CLACP,45,10,9,8,9,8,7,6,5,4,3,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,CLCCP,486,406,382,213,169,129,119,76,58,52,41,39,52,128,146,109,126,80,192,251,65,88,73,109,103,122,81,189,174,197,227,207,186,213,186,183,180,237,148,199,157,189,165,167,174,198,197,176,198,149,156,122,90,99,95,67,55,25,12,9
-2019F,MO,CLEIP,3674,3728,4750,5243,5378,5690,5837,6029,7165,8869,10846,11678,13147,15573,15523,17734,19159,20806,20476,21644,23168,23376,22863,24614,25763,22779,22029,23012,24356,24663,24231,24286,23815,21945,26375,30440,33059,35193,37165,36546,37183,38585,39703,43835,44379,45765,45603,44094,43711,42678,44692,46353,42340,44463,43041,38468,35594,39513,37060,32764
-2019F,MO,CLICP,2605,2299,2282,2275,2394,2534,2500,2356,2294,2143,1921,1753,2141,1875,1907,2065,2180,2158,1813,1823,1595,1715,1454,1524,1717,1798,1687,1505,1539,1436,1321,1235,1137,1177,1070,1102,1118,1401,1218,1203,941,1015,994,1001,1063,1052,1065,1086,993,787,768,554,1014,1085,1095,951,711,898,838,822
-2019F,MO,CLKCP,221,78,149,123,166,195,222,224,238,379,305,315,325,341,308,278,295,321,202,277,199,184,148,128,106,233,230,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,CLOCP,2384,2221,2133,2152,2228,2340,2278,2131,2056,1764,1616,1438,1816,1534,1599,1787,1886,1837,1611,1546,1396,1531,1306,1396,1611,1565,1457,1427,1539,1436,1321,1235,1137,1177,1070,1102,1118,1401,1218,1203,941,1015,994,1001,1063,1052,1065,1086,993,787,768,554,1014,1085,1095,951,711,898,838,822
-2019F,MO,CLRCP,699,584,549,294,233,172,157,101,74,66,52,38,39,75,69,47,51,31,57,63,17,19,15,21,24,34,24,57,49,52,57,45,41,47,33,27,25,29,18,27,19,23,23,25,19,17,19,20,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,CLTCP,7509,7028,7971,8033,8182,8534,8621,8567,9597,11135,12863,13510,15382,17652,17646,19955,21517,23075,22538,23780,24845,25199,24405,26267,27607,24733,23821,24764,26118,26348,25836,25773,25180,23381,27663,31753,34382,36860,38549,37975,38300,39812,40885,45028,45635,47033,46884,45376,44902,43614,45617,47029,43444,45647,44231,39487,36361,40437,37911,33595
-2019F,MO,CLTXP,3835,3300,3222,2790,2805,2844,2784,2538,2431,2266,2017,1832,2235,2079,2123,2221,2358,2270,2062,2137,1677,1822,1542,1654,1844,1954,1792,1751,1762,1685,1605,1487,1364,1436,1288,1313,1323,1667,1384,1429,1117,1227,1182,1193,1256,1267,1282,1281,1191,936,924,676,1105,1185,1190,1018,767,923,851,831
-2019F,MO,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,DFACP,4485,4492,5715,5679,6235,6685,5435,5364,7952,7657,7990,8438,9088,9772,9153,8721,10121,10799,11323,11492,10824,10527,12387,11296,11954,13271,12925,13679,14981,16933,16049,15430,16992,17452,18315,19195,22090,23455,30232,29324,23159,23509,23249,25888,26985,26907,27563,27909,24318,24832,26338,26624,25136,25227,26193,26531,26464,26206,26719,27572
-2019F,MO,DFCCP,1101,1197,1059,1112,1038,873,1007,1069,1138,1065,1085,1089,1268,1278,1159,1187,1275,1203,1361,1465,1001,773,1048,1622,1992,1521,1560,2044,1752,1079,1026,1108,1165,1151,1088,1190,1309,1169,1160,1023,1118,1558,994,840,851,520,435,368,543,581,524,455,638,694,798,953,852,753,794,633
-2019F,MO,DFEIP,178,135,135,127,100,92,109,107,98,109,159,135,258,290,280,710,689,935,1481,645,538,305,360,391,219,202,220,206,304,221,207,245,185,367,255,283,228,275,701,702,592,313,220,240,154,242,138,139,140,155,235,145,134,121,193,158,155,125,194,209
-2019F,MO,DFICP,5722,5571,5204,5585,5229,5097,5838,5810,6481,6288,5689,5386,6110,6153,5562,5765,6248,6345,7327,7779,4782,5209,6002,2941,3613,4146,2880,3466,3962,3766,3494,2940,3232,2812,3171,3018,3181,3550,3785,4869,3641,4128,4627,4898,5774,5293,5187,5804,5036,4108,4202,3768,3729,3711,4119,4485,5123,4830,5203,4370
-2019F,MO,DFRCP,1330,1447,1281,1344,1255,1056,1218,1292,1376,1287,1312,1317,1532,1545,1401,1435,1541,1455,1646,1771,1246,1407,1125,702,862,847,863,720,668,552,412,429,355,415,322,436,330,311,294,306,308,404,290,206,192,161,151,143,103,76,64,55,47,44,42,27,20,16,22,13
-2019F,MO,DFTCP,12817,12842,13395,13847,13857,13803,13607,13641,17045,16406,16235,16365,18256,19038,17555,17819,19874,20736,23138,23152,18390,18221,20921,16952,18640,19987,18448,20115,21667,22550,21188,20152,21930,22198,23150,24122,27137,28760,36172,36225,28818,29913,29381,32073,33955,33124,33474,34364,30139,29752,31363,31047,29685,29797,31345,32154,32615,31930,32932,32797
-2019F,MO,DFTXP,12638,12706,13260,13719,13757,13711,13498,13535,16947,16298,16077,16230,17998,18748,17275,17108,19185,19802,21657,22506,17852,17915,20562,16561,18421,19785,18228,19909,21363,22329,20981,19908,21745,21831,22895,23839,26910,28485,35471,35522,28226,29600,29160,31832,33801,32882,33336,34225,29999,29596,31128,30902,29551,29676,31151,31996,32459,31805,32738,32588
-2019F,MO,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2,0,0,15,11,2,0,1,0,0,0,0,0,0,0
-2019F,MO,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,12,3,1,209,669,4,12,12,2,0,0,0,0,0,0
-2019F,MO,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1058,2823,4277,12494,5071,4358,4714,2273,1893,3811,4846,1480,2342,-4567,-4489,-627,-434,1295,-53,-3063,101,-4660,-3276,-2200,1774,3444,5380,-3190,1920,5253
-2019F,MO,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,-6,10,3,1,194,658,1,11,10,2,0,0,0,0,0,0
-2019F,MO,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,16,30,34,30,52,322,447,623,562,664,749,839,561,295,163,186,399,685,614,1476,2098,2230,2751,2749,3856,5634,5304,6465,6361,6208,6173,6746,7212,7297,7265,7113,7151
-2019F,MO,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,0,0,2,2,3,6,8,7,11,2,3,4,4,5,5,5,5,5,129,129,132,132,135
-2019F,MO,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,4,6,7,7,7,17,21,14,7,4,3,5,9,15,38,55,67,79,83,61,69,72,86,85,48,49,36,93,90,91,92,93
-2019F,MO,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,16,31,35,31,53,328,454,631,570,672,768,861,576,303,167,189,406,696,632,1520,2160,2305,2841,2834,3920,5708,5381,6556,6450,6261,6227,6787,7434,7515,7488,7337,7378
-2019F,MO,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,ESACP,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,16,19,18,19,20,19,20,29,30,10,19,19,20,24,21,22,22,22,22,22,21,21,23,24,24
-2019F,MO,ESCCP,3314,3443,3714,3999,4189,4473,4640,4939,5433,5797,6168,6550,7021,7549,7193,7639,11068,11739,11962,12479,12986,12371,12767,13247,14576,15205,16083,17254,18343,18753,19335,20014,19677,20822,21518,22514,23462,23831,24925,25138,26962,27210,27946,27987,28391,29640,29800,31126,31118,30605,31431,30962,30483,30515,30665,30535,30728,30177,31179,30133
-2019F,MO,ESICP,3890,3995,4421,4908,5383,5872,8081,8512,8974,9571,9939,10174,10508,10949,11284,11782,9646,10281,11382,11622,11018,13878,12441,12908,12342,12625,12722,12554,12556,12792,12937,13114,13440,13618,14106,14321,14915,15267,15801,16122,16080,15815,15341,14831,14303,16869,18316,18515,17850,15050,17330,17330,17594,17551,17399,17036,13513,13211,13390,13010
-2019F,MO,ESRCP,4223,4447,4813,5198,5622,5977,6521,6878,7925,8836,9672,10435,11176,11931,11830,13654,13302,14535,16108,16369,18648,16437,16708,19003,18490,18483,19468,20312,21348,21057,21652,23386,21294,24182,24057,25409,26448,26595,28265,27766,29581,30168,31684,31422,31351,34412,33880,35872,35390,34221,37302,35941,34337,35318,35793,33912,34355,33051,37463,35691
-2019F,MO,ESRPP,976,1022,1105,1184,1266,1338,1442,1515,1735,1904,2063,2208,2348,2495,2467,2840,2749,2989,3294,3332,3789,3333,3389,3844,3716,3696,3876,4017,4201,4132,4222,4523,4081,4588,4518,4724,4869,4852,5119,4992,5276,5348,5583,5504,5454,5943,5799,6093,5974,5741,6221,5979,5698,5844,5907,5582,5640,5408,6115,5812
-2019F,MO,ESTCP,11429,11887,12950,14105,15194,16322,19242,20329,22331,24204,25779,27159,28705,30429,30306,33075,34016,36555,39452,40470,42652,42686,41916,45157,45408,46314,48274,50120,52247,52603,53925,56514,54411,58622,59693,62259,64843,65711,69010,69045,72643,73213,75001,74270,74054,80940,82015,85533,84382,79897,86085,84255,82435,83407,83878,81504,78618,76461,82056,78858
-2019F,MO,ESTPP,2642,2733,2972,3212,3421,3654,4254,4479,4889,5216,5499,5747,6032,6362,6319,6879,7030,7517,8069,8238,8666,8655,8503,9134,9127,9262,9610,9912,10281,10323,10514,10929,10429,11121,11211,11576,11938,11989,12498,12414,12955,12978,13216,13008,12884,13979,14037,14528,14244,13403,14357,14016,13680,13802,13843,13415,12906,12511,13395,12842
-2019F,MO,ESTXP,11429,11887,12950,14105,15194,16322,19242,20329,22331,24204,25779,27159,28705,30429,30306,33075,34016,36555,39452,40470,42652,42686,41916,45157,45408,46314,48274,50120,52247,52603,53925,56514,54411,58622,59693,62259,64843,65711,69010,69045,72643,73213,75001,74270,74054,80940,82015,85533,84382,79897,86085,84255,82435,83407,83878,81504,78618,76461,82056,78858
-2019F,MO,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,FSICP,0,0,0,51,49,61,70,71,71,70,82,112,112,92,105,113,118,112,127,76,88,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,HLACP,43,44,59,69,40,47,100,112,111,111,85,98,85,85,84,74,73,71,95,81,68,147,118,140,184,138,157,132,103,116,117,130,88,91,202,112,98,57,20,59,66,263,78,125,111,113,161,159,260,271,72,73,63,62,54,53,50,7,36,26
-2019F,MO,HLCCP,1114,1201,1313,1487,1322,1459,1848,1959,1993,2162,2123,2150,2259,2223,2180,2264,2219,2209,2118,1678,1186,1106,1146,1364,753,831,928,974,919,1186,997,1304,1318,1393,1371,1388,1863,1699,1213,1628,1422,2137,1613,1549,1533,843,1089,1037,1714,1161,946,863,866,1043,1192,944,823,1020,1326,1122
-2019F,MO,HLICP,437,475,483,671,355,423,1030,931,1396,1573,1175,1151,1185,1354,1558,1712,2195,2346,2592,5160,3182,1768,3152,2109,1656,1333,1155,1273,1903,2320,1823,2046,1859,2597,2416,4102,3644,2733,2108,4555,3712,2053,4658,4529,5545,5277,3645,4810,1623,1668,1779,1777,1713,1702,1915,1485,1223,1577,1181,1085
-2019F,MO,HLRCP,4400,4745,5187,5874,5221,5763,7300,7740,7875,8542,8388,8492,8923,8783,8613,8945,8768,8727,8366,6629,4686,4370,4529,5387,2973,3282,3668,3847,3630,4684,3937,5153,5205,5504,5418,5483,7360,6711,4793,6429,5619,8444,6373,6157,5045,4561,4022,4567,5905,5080,4862,4299,3313,3932,4439,3726,3620,3153,4301,5131
-2019F,MO,HLTCP,5994,6465,7042,8101,6938,7692,10278,10742,11376,12388,11771,11890,12451,12445,12436,12995,13255,13354,13171,13548,9121,7391,8945,9000,5566,5583,5907,6226,6555,8306,6874,8633,8470,9586,9407,11085,12965,11200,8134,12671,10820,12897,12722,12360,12234,10795,8917,10573,9502,8180,7660,7011,5955,6739,7600,6208,5716,5757,6844,7365
-2019F,MO,HLTXP,5994,6465,7042,8101,6938,7692,10278,10742,11376,12388,11771,11890,12451,12445,12436,12995,13255,13354,13171,13548,9121,7391,8945,9000,5566,5583,5907,6226,6555,8306,6874,8633,8470,9586,9407,11085,12965,11200,8134,12671,10820,12897,12722,12360,12234,10795,8917,10573,9502,8180,7660,7011,5955,6739,7600,6208,5716,5757,6844,7365
-2019F,MO,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,HYEGP,726,1240,881,377,319,802,596,641,1334,1435,927,703,612,2008,1713,1280,740,454,1017,1100,558,669,1656,1716,1587,2993,1996,1447,1511,1094,2192,1119,1481,3184,1916,1919,1314,1593,2347,1853,600,1104,1357,652,1480,1159,199,1204,2047,1817,1539,1185,714,1136,697,1595,1268,1182,828,2216
-2019F,MO,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,HYTCP,726,1240,881,377,319,802,596,641,1334,1435,927,703,612,2008,1713,1280,740,454,1017,1100,558,669,1656,1716,1587,2993,1996,1447,1511,1094,2192,1119,1481,3184,1916,1919,1314,1593,2347,1853,600,1104,1357,652,1480,1159,199,1204,2047,1817,1539,1185,714,1136,697,1595,1268,1182,828,2216
-2019F,MO,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,JFACP,1249,1755,2220,2252,2672,3625,4702,6490,7752,7867,8074,8024,8366,8019,7642,8311,7870,7963,8110,7480,6268,4741,4371,5457,5615,5889,6710,7463,7307,7277,6647,7506,7522,9034,10623,11425,12133,12325,12758,12760,4906,7493,9535,8048,3999,6599,6574,6339,5586,3635,5358,5271,4956,4680,4450,4531,5074,5446,5260,5590
-2019F,MO,JFTCP,1249,1755,2220,2252,2672,3625,4702,6490,7752,7867,8074,8024,8366,8019,7642,8311,7870,7963,8114,7480,6268,4741,4371,5457,5615,5889,6710,7463,7307,7277,6647,7506,7522,9034,10623,11425,12133,12325,12758,12760,4906,7493,9535,8048,3999,6599,6574,6339,5586,3635,5358,5271,4956,4680,4450,4531,5074,5446,5260,5590
-2019F,MO,JFTXP,1249,1755,2220,2252,2672,3625,4702,6490,7752,7867,8074,8024,8366,8019,7642,8311,7870,7963,8110,7480,6268,4741,4371,5457,5615,5889,6710,7463,7307,7277,6647,7506,7522,9034,10623,11425,12133,12325,12758,12760,4906,7493,9535,8048,3999,6599,6574,6339,5586,3635,5358,5271,4956,4680,4450,4531,5074,5446,5260,5590
-2019F,MO,KSCCP,1507,1126,1038,825,773,865,710,230,514,449,433,489,265,264,223,179,269,230,188,283,171,398,584,35,23,33,10,6,16,12,8,4,16,13,14,10,27,21,18,17,22,23,18,21,31,30,17,9,3,6,7,3,2,2,3,2,2,2,3,3
-2019F,MO,KSICP,340,192,308,162,162,160,210,658,582,369,141,173,173,104,53,75,235,223,201,134,87,72,73,32,24,22,8,13,24,33,8,23,6,5,10,11,33,12,15,12,14,17,7,8,13,13,9,5,13,4,7,1,1,1,1,1,2,1,1,1
-2019F,MO,KSRCP,240,179,165,131,123,138,113,37,82,71,69,78,42,42,35,28,43,36,30,45,57,76,123,69,82,95,58,53,58,69,29,37,21,37,24,32,56,45,49,55,69,78,51,72,87,79,66,54,23,25,32,13,4,5,8,6,11,4,5,7
-2019F,MO,KSTCP,2087,1496,1511,1118,1058,1162,1032,924,1178,889,643,740,481,410,311,282,547,489,419,462,315,546,780,136,128,149,75,73,99,114,45,65,43,56,48,53,116,77,83,84,105,119,76,101,131,122,92,68,39,35,46,18,7,7,12,9,15,7,8,10
-2019F,MO,KSTXP,2087,1496,1511,1118,1058,1162,1032,924,1178,889,643,740,481,410,311,282,547,489,419,462,315,546,780,136,128,149,75,73,99,114,45,65,43,56,48,53,116,77,83,84,105,119,76,101,131,122,92,68,39,35,46,18,7,7,12,9,15,7,8,10
-2019F,MO,LUACP,669,651,731,730,767,701,728,675,741,721,735,735,787,944,904,793,880,932,1001,1047,932,894,815,854,910,848,830,938,904,928,955,854,871,887,927,911,884,934,977,988,973,891,881,814,825,821,800,826,767,689,609,576,518,541,563,614,584,530,500,483
-2019F,MO,LUICP,284,276,294,294,309,328,341,316,347,408,415,355,380,477,456,491,546,670,720,753,671,643,586,614,655,610,597,674,650,667,687,614,626,638,666,655,636,672,703,710,700,641,633,586,593,590,575,594,551,496,339,305,289,300,286,299,276,256,249,233
-2019F,MO,LUTCP,953,927,1025,1024,1076,1029,1069,991,1088,1129,1150,1090,1167,1420,1360,1284,1426,1602,1720,1800,1603,1537,1402,1468,1565,1459,1426,1612,1555,1595,1641,1468,1497,1524,1593,1566,1520,1605,1680,1698,1673,1532,1514,1400,1418,1411,1375,1419,1318,1185,949,881,807,841,848,913,860,786,749,716
-2019F,MO,LUTXP,953,927,1025,1024,1076,1029,1069,991,1088,1129,1150,1090,1167,1420,1360,1284,1426,1602,1720,1800,1603,1537,1402,1468,1565,1459,1426,1612,1555,1595,1641,1468,1497,1524,1593,1566,1520,1605,1680,1698,1673,1532,1514,1400,1418,1411,1375,1419,1318,1185,949,881,807,841,848,913,860,786,749,716
-2019F,MO,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,MGACP,37620,37903,38776,39887,40554,41658,43489,44723,47792,50310,53122,55807,58534,58755,58616,59476,62499,64117,65651,61310,56877,56792,56430,57612,58502,58698,62106,62486,63724,62726,63092,63022,64471,64527,65801,67155,68154,68748,70520,69969,72687,70433,71599,74523,74551,74563,74780,76546,75846,75825,75672,72801,71590,72651,73407,72950,74621,73808,72933,72166
-2019F,MO,MGCCP,113,119,128,129,130,133,135,140,150,152,153,154,154,158,157,159,161,163,162,164,223,298,226,210,288,262,323,313,248,213,239,128,121,112,102,99,116,145,122,305,263,332,290,286,236,290,57,58,58,58,57,57,57,59,56,1300,1318,1338,1352,1360
-2019F,MO,MGICP,3074,2881,3191,2978,2702,3224,3239,3023,3134,2938,2767,2746,2525,3518,2728,2707,2452,2316,2132,1876,1866,1491,1199,920,1140,1076,960,959,890,776,663,758,669,1469,1623,1676,1677,1688,1033,915,902,1745,1848,1944,2254,2144,2247,1214,931,1036,1007,968,555,574,396,946,920,927,947,939
-2019F,MO,MGTCP,40807,40903,42095,42995,43386,45015,46863,47886,51076,53401,56041,58707,61213,62431,61500,62342,65111,66596,67945,63350,58966,58581,57855,58742,59930,60036,63388,63758,64863,63715,63994,63908,65260,66109,67526,68930,69947,70581,71675,71189,73852,72510,73737,76754,77040,76998,77084,77817,76835,76918,76736,73826,72202,73284,73859,75195,76859,76073,75231,74466
-2019F,MO,MGTXP,40807,40903,42095,42995,43386,45015,46863,47886,51076,53401,56041,58707,61213,62431,61500,62342,65111,66596,67945,63350,58966,58581,57855,58742,59930,60036,63388,63758,64863,63715,63994,63908,65260,66109,67526,68930,69947,70581,71675,71189,73852,72510,73737,76754,77040,76998,77084,77817,76835,76918,76736,73826,72202,73284,73859,75195,76859,76073,75231,74466
-2019F,MO,MSICP,509,569,624,330,330,322,359,336,374,349,311,96,98,121,156,210,1138,1287,1119,1036,982,868,761,682,586,590,565,568,689,634,570,212,139,132,147,135,64,71,86,81,86,68,74,69,62,62,83,82,87,93,97,101,99,124,132,136,138,165,165,150
-2019F,MO,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,NGACP,7964,7595,7863,7863,8452,8925,8590,10539,9355,9467,12743,9984,9619,9169,8940,7490,5253,4656,4419,7062,5578,5600,4552,3737,5050,4264,3516,1981,4901,5164,5302,2563,2309,9846,2902,7155,7499,7499,5568,6834,7657,2030,2671,3143,3395,2634,2474,2777,7274,3895,5827,7055,4979,5668,6413,6457,6829,7095,9765,8212
-2019F,MO,NGCCP,32682,33665,39025,40087,46753,40988,65946,82524,79821,79019,87644,89534,97506,91038,90291,90719,98435,93323,98680,94629,76054,68455,69913,66106,67218,60345,61890,58205,63839,63039,59387,63191,60963,69670,66196,65086,72802,69829,61995,63100,62673,64924,61897,61516,61755,60369,56722,59224,64993,61433,61194,62304,54736,64522,72919,61389,56968,57903,69381,67930
-2019F,MO,NGEIP,30251,34139,34598,41469,46837,47552,44681,46756,43810,57600,62971,67779,58897,54782,48119,26320,25422,25799,27269,20383,15329,7661,4441,2806,2501,1466,1182,1379,1623,1242,3532,12709,2351,4891,4351,12830,5202,7465,16034,19428,30481,32805,29911,21778,24574,31831,32480,41067,43009,29807,40216,37626,50538,37119,35127,38633,52480,46973,62977,67538
-2019F,MO,NGICP,78932,84076,88647,93248,99295,114137,102824,87529,93796,100833,109597,108424,99111,118275,109702,89913,90950,89114,69524,63975,78064,73236,64559,59307,59502,65702,54508,54326,54243,53938,54538,57186,58467,60982,70521,68925,71247,70865,64284,64402,68496,67846,66965,61545,64483,66350,65627,67868,66758,63431,65554,63053,62516,63212,67115,65691,63630,63158,66744,65452
-2019F,MO,NGRCP,111112,115012,119349,120408,123857,129542,129727,133355,138764,151778,156571,153384,160082,153543,152832,155178,160198,154078,159013,161208,143425,128562,135984,126604,130683,128123,120564,116050,128317,129144,115950,120680,116655,134172,122566,125110,137225,127625,110779,112042,115466,116188,114185,114547,109738,106856,95394,101601,114025,106301,107389,102545,83106,106446,115512,95503,87264,86865,113938,110611
-2019F,MO,NGTCP,260941,274487,289482,303075,325194,341144,351768,360703,365546,398697,429526,429105,425215,426807,409884,369620,380258,366970,358905,347257,318450,283514,279449,258560,264954,259900,241660,231941,252923,252527,238709,256329,240745,279562,266536,279106,293974,283284,258658,265806,284772,283793,275628,262529,263945,268040,252697,272536,296059,264867,280180,272583,255875,276967,297086,267673,267171,261994,322805,319743
-2019F,MO,NGTPP,60.3,63.1,66.4,69,73.2,76.4,77.8,79.5,80,85.9,91.6,90.8,89.4,89.2,85.5,76.9,78.6,75.5,73.4,70.7,64.7,57.5,56.7,52.3,53.3,52,48.1,45.9,49.8,49.6,46.5,49.6,46.1,53,50.1,51.9,54.1,51.7,46.8,47.8,50.8,50.3,48.6,46,45.9,46.3,43.3,46.3,50,44.4,46.7,45.3,42.5,45.8,49,44.1,43.9,42.9,52.7,52.1
-2019F,MO,NGTXP,230690,240348,254884,261606,278357,293592,307087,313947,321736,341097,366555,361326,366318,372025,361765,343300,354836,341171,331636,326874,303121,275853,275008,255754,262453,258434,240478,230562,251300,251285,235177,243620,238394,274670,262185,266276,288772,275819,242625,246378,254291,250988,245717,240751,239371,236209,220217,231470,253050,235060,239964,234957,205337,239848,261959,229040,214691,215021,259828,252205
-2019F,MO,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,8030,7170,6284,8935,8344,7998,9979,8084,8381,10006,8242,8890,8955,8517,8587,9992,8384,8390,9700,7831,8031,10117,9372,9379,10247,8996,9371,10718,8367,9276,10440,9430,8304,10655,9190
-2019F,MO,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,8030,7170,6284,8935,8344,7998,9979,8084,8381,10006,8242,8890,8955,8517,8587,9992,8384,8390,9700,7831,8031,10117,9372,9379,10247,8996,9371,10718,8367,9276,10440,9430,8304,10655,9190
-2019F,MO,OPICP,1665,1669,1776,1552,2677,2887,2811,2695,2874,3008,3006,2855,3181,3285,3288,3101,3921,4038,4165,3953,3806,3507,2471,2647,3021,2601,1962,2100,2041,1933,1865,759,770,775,688,630,706,680,909,1125,814,702,824,688,510,579,498,504,521,339,292,271,240,777,814,768,739,586,569,555
-2019F,MO,OPTCP,1665,1669,1776,1552,2677,2887,2811,2695,2874,3008,3006,2855,3181,3285,3288,3101,3921,4038,4165,3953,3806,3507,2471,2647,3021,2601,1962,2100,2041,1933,1865,759,770,775,688,630,706,680,909,1125,814,702,824,688,510,579,498,504,521,339,292,271,240,777,814,768,739,586,569,555
-2019F,MO,OPTXP,1665,1669,1776,1552,2677,2887,2811,2695,2874,3008,3006,2855,3181,3285,3288,3101,3921,4038,4165,3953,3806,3507,2471,2647,3021,2601,1962,2100,2041,1933,1865,759,770,775,688,630,706,680,909,1125,814,702,824,688,510,579,498,504,521,339,292,271,240,777,814,768,739,586,569,555
-2019F,MO,P1ICP,6556,6725,7028,6706,7820,8356,8639,9009,9306,9896,9822,10115,10389,11692,11192,10060,10495,11329,11989,10657,9281,8759,7541,7298,8569,8359,8236,8812,10063,8675,8522,6766,7228,6909,8804,8235,8492,6711,8116,10046,7892,11012,9863,9941,12724,12143,12453,10650,9240,7373,6014,5728,5448,4898,5121,5780,3519,2961,3476,4129
-2019F,MO,P1TCP,10815,10141,11380,10883,12086,12382,11107,10488,11010,11371,11238,11625,11668,13271,12685,11259,11852,12794,13656,12429,10705,10336,9209,8406,9717,9471,9297,9943,11206,9900,9640,7778,8251,8854,11085,10411,9567,7870,9297,11181,9054,13070,11699,11042,14012,13374,13464,11665,10132,8249,6783,6415,6059,5524,5762,6471,4185,3569,4059,4694
-2019F,MO,P1TXP,10815,10141,11380,10883,12086,12382,11107,10488,11010,11371,11238,11625,11668,13263,12654,11244,11852,12703,13418,12220,10604,10336,9209,8396,9717,9471,9297,9943,11204,9884,9640,7778,8251,7940,9882,9297,9567,7870,9297,11181,9054,12151,10933,10952,13791,13261,13464,11665,10129,8178,6764,6415,6059,5524,5762,6471,4185,3569,4059,4694
-2019F,MO,PAACP,45943,46485,50142,51333,53055,55191,55401,58138,64962,67056,70349,73335,77097,77948,76780,77698,81737,84120,86414,81742,75272,73316,74379,75523,77310,79017,82918,84831,87269,88249,87019,87059,90076,92119,96002,98928,103484,105694,114648,113179,101894,102738,105471,109516,106612,109206,110014,111907,106873,105342,108151,105440,102350,103239,104735,104749,106863,106069,105523,105911
-2019F,MO,PACCP,5200,4675,4263,4332,4210,4839,4925,4845,5257,5489,5448,5202,4880,4826,4616,4554,4904,4998,4948,4810,3135,2604,3035,3465,3212,2768,2950,3457,3036,2524,2329,2574,2623,2678,2594,2688,3321,3067,2548,2999,2857,4080,2946,2719,2666,1700,1607,1478,2319,1806,1539,1378,1564,1798,2049,3199,2995,3112,3474,3118
-2019F,MO,PAEIP,328,249,249,234,183,168,201,196,180,200,291,402,800,722,617,1100,1292,1891,2906,1455,668,323,383,464,239,219,240,232,341,274,215,287,209,1305,1486,1410,256,300,714,703,592,1233,987,330,375,355,138,139,143,226,254,145,134,121,193,158,155,125,194,209
-2019F,MO,PAICP,17419,17101,17064,17262,17366,18810,20164,20453,21966,22525,21073,20708,21411,24211,22320,21486,22720,23873,25430,27021,19814,17841,18457,13545,15162,15471,13606,15045,17351,15954,15022,12983,13602,14789,16472,17351,17303,14862,15224,20495,16220,19046,21067,21395,26422,24937,23583,22507,16871,14209,13026,12260,11451,10890,11553,12696,10802,10298,10807,10523
-2019F,MO,PARCP,5970,6370,6633,7349,6600,6957,8630,9069,9333,9900,9769,9887,10497,10369,10050,10409,10352,10218,10041,8444,5989,5852,5777,6158,3917,4224,4588,4620,4356,5304,4378,5619,5581,5957,5764,5952,7747,7067,5136,6791,5996,8926,6714,6435,5325,4802,4239,4764,6030,5181,4957,4367,3364,3980,4488,3759,3650,3173,4329,5151
-2019F,MO,PATCP,74860,74880,78350,80510,81414,85966,89322,92701,101698,105170,106930,109534,114684,118077,114384,115247,121004,125101,129739,123471,104877,99937,102032,99155,99841,101698,104301,108186,112352,112305,108963,108523,112091,116847,122318,126329,132110,130989,138270,144167,127559,136024,137185,140394,141400,141000,139582,140795,132237,126765,127927,123590,118863,120027,123018,124561,124467,122779,124326,124912
-2019F,MO,PATPP,17.3,17.2,18,18.3,18.3,19.2,19.7,20.4,22.3,22.7,22.8,23.2,24.1,24.7,23.9,24,25,25.7,26.5,25.1,21.3,20.3,20.7,20.1,20.1,20.3,20.8,21.4,22.1,22,21.2,21,21.5,22.2,23,23.5,24.3,23.9,25,25.9,22.7,24.1,24.2,24.6,24.6,24.4,23.9,23.9,22.3,21.3,21.3,20.6,19.7,19.9,20.3,20.5,20.4,20.1,20.3,20.3
-2019F,MO,PATXP,74532,74631,78102,80276,81230,85797,89121,92505,101518,104970,106638,109132,113885,117355,113766,114147,119713,123209,126833,122016,104209,99614,101648,98692,99602,101479,104062,107954,112011,112031,108748,108236,111883,115542,120832,124918,131854,130689,137556,143464,126967,134791,136197,140065,141026,140644,139444,140656,132094,126538,127673,123445,118729,119906,122825,124403,124311,122653,124132,124702
-2019F,MO,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,8,31,15,0,90,237,209,101,0,0,9,0,1,0,0,2,16,0,0,0,915,1204,1114,0,0,0,0,0,919,766,89,221,113,0,0,3,71,19,0,0,0,0,0,0,0,0,0
-2019F,MO,PCICP,542,542,527,507,588,580,553,595,610,632,602,929,1042,1042,844,993,1193,1421,1115,800,716,1362,1122,586,910,831,1045,1673,1691,1497,1495,1308,1994,1437,1737,1643,1731,1206,2582,3222,2197,4247,3659,3827,5635,5222,6165,5457,5278,3778,3536,2332,2764,1724,1922,2729,425,0,664,1423
-2019F,MO,PCTCP,542,542,527,507,588,580,553,595,610,632,602,929,1042,1050,875,1007,1193,1511,1352,1009,817,1362,1122,595,910,832,1045,1673,1693,1513,1495,1308,1994,2351,2941,2758,1731,1206,2582,3222,2197,5167,4425,3916,5856,5335,6165,5457,5281,3849,3555,2332,2764,1724,1922,2729,425,0,664,1423
-2019F,MO,PCTXP,542,542,527,507,588,580,553,595,610,632,602,929,1042,1042,844,993,1193,1421,1115,800,716,1362,1122,586,910,831,1045,1673,1691,1497,1495,1308,1994,1437,1737,1643,1731,1206,2582,3222,2197,4247,3659,3827,5635,5222,6165,5457,5278,3778,3536,2332,2764,1724,1922,2729,425,0,664,1423
-2019F,MO,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,73,63,62,54,53,50,7,36,26
-2019F,MO,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,946,863,866,1043,1192,944,823,1020,1326,1122
-2019F,MO,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1779,1777,1713,1702,1915,1485,1223,1577,1181,1085
-2019F,MO,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4862,4299,3313,3932,4439,3726,3620,3153,4301,5131
-2019F,MO,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7660,7011,5955,6739,7600,6208,5716,5757,6844,7365
-2019F,MO,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7660,7011,5955,6739,7600,6208,5716,5757,6844,7365
-2019F,MO,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MO,RFACP,34,180,223,224,182,154,30,236,245,157,163,26,53,53,83,141,129,61,23,142,142,6,113,23,12,38,28,0,87,69,34,0,17,34,22,21,18,15,4,5,6,4,10,13,18,14,9,3,0,5,0,0,0,0,0,0,0,0,0,0
-2019F,MO,RFCCP,1366,1032,726,779,948,1508,1225,1447,1461,1660,1654,1320,934,903,897,764,979,1193,1120,1220,554,29,31,235,157,121,129,119,101,35,60,29,3,8,19,1,6,33,34,26,31,29,30,22,16,17,9,6,1,1,4,0,0,0,0,0,0,0,0,0
-2019F,MO,RFEIP,150,113,113,107,84,77,92,89,82,91,133,268,542,424,306,375,602,866,1183,601,29,18,24,64,20,16,20,26,35,36,8,42,24,22,27,13,28,25,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,RFICP,1630,1449,1158,1321,1261,1710,1418,1680,1649,1829,1620,1311,1201,1494,1279,1242,1331,1538,1390,1549,703,615,563,277,185,557,375,535,531,417,519,473,614,1002,458,319,309,180,182,109,72,108,71,84,126,79,51,29,42,25,23,19,6,4,2,2,17,3,0,0
-2019F,MO,RFTCP,3179,2775,2220,2432,2475,3449,2765,3452,3438,3737,3570,2923,2731,2874,2565,2521,3041,3658,3716,3512,1427,667,730,598,373,732,551,680,754,556,620,545,659,1066,526,354,360,253,233,140,109,141,112,118,161,110,70,38,43,31,28,19,6,4,2,2,18,3,0,0
-2019F,MO,RFTXP,3029,2661,2106,2325,2391,3372,2673,3363,3356,3646,3437,2656,2189,2449,2259,2147,2438,2792,2533,2912,1398,650,706,534,354,715,532,654,719,520,613,503,635,1043,499,341,332,228,220,140,109,141,111,118,161,110,70,38,43,31,28,19,6,4,2,2,18,3,0,0
-2019F,MO,SGICP,767,716,805,837,840,931,942,1040,1074,1120,1075,1084,1309,1305,1279,1262,1219,1219,1271,1186,1137,1287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,SNICP,0,0,0,0,1142,1237,1120,933,1000,1095,1162,1256,1345,1360,1349,1160,1022,1066,1282,1298,1248,1292,1203,1413,1889,1453,852,950,748,704,703,392,466,466,361,315,466,451,670,908,608,452,590,463,294,360,271,302,328,179,101,88,57,583,619,579,546,358,329,341
-2019F,MO,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,13,26,64,86,93,108,112,135
-2019F,MO,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,16,31,55,90,99
-2019F,MO,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,4,6
-2019F,MO,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,25,48,59,75,97,118,153
-2019F,MO,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,21,51,122,162,200,261,324,393
-2019F,MO,TPOPP,4326,4349,4357,4392,4442,4467,4523,4539,4568,4640,4688,4726,4759,4783,4796,4808,4839,4863,4889,4912,4922,4932,4929,4944,4975,5000,5023,5057,5082,5096,5129,5171,5217,5271,5324,5378,5432,5481,5522,5562,5607,5641,5675,5709,5748,5790,5843,5888,5924,5961,5996,6011,6026,6043,6059,6075,6091,6111,6126,6140
-2019F,MO,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,WXICP,389,384,347,333,315,335,320,316,356,374,376,308,317,407,399,356,424,354,365,358,349,648,507,551,546,559,544,582,604,595,592,156,165,177,180,180,176,158,153,136,120,182,161,155,154,157,144,120,105,67,94,83,84,70,63,53,55,62,76,64
-2019F,MO,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,499,925,1178,1245,1167,1131,1033,1122,2032,2835,2858
-2019F,MO,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MO,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,499,925,1178,1245,1167,1131,1033,1122,2032,2835,2858
-2019F,MO,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,21,3,0,19,3,0,-5,1,1,0,1,1,27,23,30,39,17,26,16,25,33,32,45,37,3,7,0,-3,-1,0,0,-2,-1,-1,-1,-1,-6,-5
-2019F,MS,ARICP,762,915,943,1352,1253,1144,1281,1464,1389,1355,1748,2450,2819,3244,3041,2589,2354,2201,2647,2726,2036,1770,1718,1704,3561,2054,1904,2174,2627,1975,2509,2531,2171,1945,2110,2430,2608,3041,3223,3308,2885,1930,2002,2940,3153,3330,4173,4296,2827,1696,1772,2135,1394,1383,1242,1594,1653,1652,1719,844
-2019F,MS,ARTCP,762,915,943,1352,1253,1144,1281,1464,1389,1355,1748,2450,2819,3244,3041,2589,2354,2201,2647,2726,2036,1770,1718,1704,3561,2054,1904,2174,2627,1975,2509,2531,2171,1945,2110,2430,2608,3041,3223,3308,2885,1930,2002,2940,3153,3330,4173,4296,2827,1696,1772,2135,1394,1383,1242,1594,1653,1652,1719,844
-2019F,MS,ARTXP,762,915,943,1352,1253,1144,1281,1464,1389,1355,1748,2450,2819,3244,3041,2589,2354,2201,2647,2726,2036,1770,1718,1704,3561,2054,1904,2174,2627,1975,2509,2531,2171,1945,2110,2430,2608,3041,3223,3308,2885,1930,2002,2940,3153,3330,4173,4296,2827,1696,1772,2135,1394,1383,1242,1594,1653,1652,1719,844
-2019F,MS,AVACP,170,168,320,421,386,463,295,326,406,386,318,334,338,344,240,203,173,159,147,115,206,142,106,113,121,108,137,113,129,153,132,110,94,85,72,100,61,66,99,80,98,106,79,69,114,45,109,108,98,73,74,69,67,62,53,47,43,47,62,43
-2019F,MS,AVTCP,170,168,320,421,386,463,295,326,406,386,318,334,338,344,240,203,173,159,147,115,206,142,106,113,121,108,137,113,129,153,132,110,94,85,72,100,61,66,99,80,98,106,79,69,114,45,109,108,98,73,74,69,67,62,53,47,43,47,62,43
-2019F,MS,AVTXP,170,168,320,421,386,463,295,326,406,386,318,334,338,344,240,203,173,159,147,115,206,142,106,113,121,108,137,113,129,153,132,110,94,85,72,100,61,66,99,80,98,106,79,69,114,45,109,108,98,73,74,69,67,62,53,47,43,47,62,43
-2019F,MS,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,4,9,29,83,113,97,103,83,283,360,638,500,614,944,816,867,780
-2019F,MS,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,4,9,29,83,113,97,103,83,283,360,638,500,614,944,816,867,780
-2019F,MS,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,CLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,CLCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,0,6,2,1,2,4,10,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,CLEIP,8,5,7,10,8,9,5,7,250,556,500,505,527,1197,1457,1416,1711,1582,1655,2482,3072,3334,4055,3802,4076,4267,4208,4562,4859,3566,3888,3570,3237,3767,3989,4319,5558,6035,5684,6022,6232,8334,7869,9545,9950,9760,10378,9895,9497,8424,8589,6203,5240,5867,6550,4830,4522,3865,4506,3833
-2019F,MS,CLICP,21,21,21,20,21,31,31,31,40,39,48,54,54,49,49,24,114,108,73,69,53,112,103,153,219,251,244,280,264,263,271,242,247,263,296,287,233,238,213,184,155,154,149,146,160,121,150,148,134,110,124,114,113,123,110,111,0,0,0,19
-2019F,MS,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,CLOCP,21,21,21,20,21,31,31,31,40,39,48,54,54,49,49,24,114,108,73,69,53,112,103,153,219,251,244,280,264,263,271,242,247,263,296,287,233,238,213,184,155,154,149,146,160,121,150,148,134,110,124,114,113,123,110,111,0,0,0,19
-2019F,MS,CLRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,CLTCP,30,26,28,30,29,40,35,38,291,595,549,559,581,1247,1506,1440,1825,1690,1732,2555,3127,3446,4158,3962,4297,4519,4454,4846,5136,3831,4159,3812,3485,4030,4285,4606,5791,6273,5897,6206,6386,8488,8018,9691,10110,9882,10528,10043,9632,8533,8713,6317,5354,5989,6660,4941,4522,3865,4506,3852
-2019F,MS,CLTXP,22,21,21,20,21,31,31,31,40,39,49,54,54,50,49,24,114,108,77,72,55,112,103,160,221,252,246,284,277,265,271,242,248,263,296,287,233,238,213,184,155,154,149,146,160,121,150,148,134,110,124,114,113,123,110,111,0,0,0,19
-2019F,MS,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,DFACP,882,640,1334,1582,1651,1136,1106,1226,2656,2994,2690,3663,4039,5123,5372,4696,5594,6232,6942,5885,6020,6836,6779,7279,7594,8830,9093,9287,10957,9891,8920,9265,9486,9863,10198,9825,10506,11629,12458,13260,12927,12909,14436,16379,16700,16664,18333,18590,17752,17685,16685,16229,16071,15321,15863,17423,18139,17775,18422,18453
-2019F,MS,DFCCP,28,34,21,32,38,39,49,53,58,97,108,113,151,177,202,239,304,373,387,178,24,138,114,896,709,755,327,498,381,605,400,458,385,275,379,318,397,330,366,260,261,332,262,445,207,193,200,1137,636,654,586,658,635,578,699,651,676,725,671,546
-2019F,MS,DFEIP,1,0,0,1,0,0,0,0,1,3,5,24,50,66,116,266,359,442,341,49,70,82,60,39,45,61,45,37,57,86,50,79,28,35,50,41,89,51,61,62,53,49,31,35,44,90,28,69,40,23,22,30,26,23,30,29,32,24,47,24
-2019F,MS,DFICP,1441,1263,1355,1241,1613,1590,1914,2070,2335,2584,3100,3332,3246,3686,3966,4455,5501,6851,7513,4776,3527,6387,4878,4934,3905,3814,3312,3462,3496,3521,3851,3640,3274,3137,3622,3881,3858,4643,4051,3926,3275,3700,3497,3344,4175,3188,2845,3113,2857,2080,2426,2320,3234,3457,3293,2513,2307,2823,2683,2725
-2019F,MS,DFRCP,23,28,17,26,31,32,40,44,48,80,89,93,124,146,166,196,250,307,319,146,7,2,0,5,4,1,2,10,3,5,1,1,1,2,1,0,1,0,1,2,1,5,1,1,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,DFTCP,2375,1966,2729,2882,3333,2796,3110,3394,5098,5759,5991,7225,7610,9199,9822,9852,12009,14206,15503,11034,9648,13444,11830,13152,12257,13461,12779,13294,14894,14108,13221,13443,13174,13312,14250,14065,14851,16654,16937,17510,16517,16995,18228,20205,21131,20143,21407,22909,21285,20441,19719,19237,19966,19379,19886,20617,21155,21346,21823,21748
-2019F,MS,DFTXP,2374,1965,2728,2881,3333,2796,3110,3394,5097,5756,5986,7201,7561,9132,9706,9586,11650,13764,15162,10985,9578,13362,11770,13113,12212,13400,12734,13257,14837,14022,13171,13364,13146,13277,14200,14024,14762,16603,16876,17448,16465,16946,18196,20170,21087,20053,21379,22840,21245,20418,19697,19207,19940,19356,19855,20588,21123,21322,21776,21724
-2019F,MS,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10792,11109,14274,13212,12410,13647,13231,11254,13075,14606,13214,-4432,7705,10562,8019,6092,5997,3895,5055,2575,503,2883,-868,1098,-743,-11045,-8816,-7130,-8365,-12476
-2019F,MS,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,97,54,6,0,0,0,0,0,0,0,0,33,30,97,802,2010,4112,3844,3844,3918,4109,4181,4236,4158,3794,3818
-2019F,MS,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,4,4,3,47,49,48,46,45
-2019F,MS,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,1,1,2,9,23,66,64,59,67,58,41,39,40,38,36
-2019F,MS,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,98,55,6,0,0,0,0,0,0,0,0,34,32,99,812,2035,4182,3911,3907,3988,4170,4270,4324,4246,3878,3899
-2019F,MS,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,ESCCP,1278,1351,1551,1677,1807,1968,2100,2270,2504,2719,3019,3288,3684,4056,4005,3982,4199,4451,4771,4850,5110,5838,5923,5989,5864,6131,6335,6374,6550,7101,7407,7478,7328,7320,7729,8210,8615,10649,11519,11923,12287,12163,12588,12593,12750,12666,12948,13400,13233,13013,13805,13738,13585,14188,14175,14392,14523,14256,14530,14239
-2019F,MS,ESICP,2004,2298,2491,2811,3144,3517,3847,4124,4465,4766,5101,5474,5594,5797,5880,6814,7534,7939,8154,8221,8184,7928,7374,8052,9015,9147,9329,9683,10115,10958,12454,13024,13491,14229,15256,15477,16043,14622,14599,15735,15856,15268,15021,15281,15702,15282,15712,16187,16195,14940,15707,16263,16810,16132,16312,15739,16069,16129,16549,15994
-2019F,MS,ESRCP,2089,2152,2635,2941,3309,3705,4128,4504,5331,6013,6880,7416,8349,9386,9094,8091,8233,8979,9362,9103,9964,9611,9677,9659,10124,10447,10868,11129,11415,11516,12266,12518,12422,13200,13642,14181,14965,14817,16392,16321,17193,16856,17844,17670,17580,17953,18276,18566,18294,18095,20175,19336,17993,18462,18922,18561,18459,17444,19311,18718
-2019F,MS,ESRPP,957,976,1175,1311,1476,1650,1839,2022,2403,2709,3099,3274,3619,3995,3824,3372,3389,3651,3763,3631,3946,3785,3785,3762,3927,4037,4190,4299,4424,4474,4756,4817,4735,4971,5073,5209,5445,5336,5844,5771,6036,5908,6242,6160,6085,6178,6291,6340,6206,6116,6791,6491,6029,6175,6324,6207,6172,5833,6474,6285
-2019F,MS,ESTCP,5371,5800,6676,7429,8260,9191,10076,10898,12301,13498,15000,16178,17627,19238,18980,18887,19966,21369,22287,22174,23258,23377,22974,23699,25003,25726,26532,27186,28080,29574,32127,33019,33241,34749,36627,37868,39622,40089,42510,43980,45336,44287,45452,45544,46033,45901,46936,48153,47721,46049,49687,49338,48388,48782,49409,48692,49050,47829,50390,48951
-2019F,MS,ESTPP,2462,2629,2976,3311,3686,4092,4488,4891,5543,6080,6757,7141,7640,8188,7980,7871,8217,8689,8958,8845,9210,9207,8985,9230,9698,9940,10230,10502,10882,11488,12458,12706,12669,13088,13621,13909,14418,14436,15156,15549,15917,15523,15900,15878,15934,15796,16157,16444,16189,15564,16726,16561,16212,16316,16514,16284,16401,15993,16893,16436
-2019F,MS,ESTXP,5371,5800,6676,7429,8260,9191,10076,10898,12301,13498,15000,16178,17627,19238,18980,18887,19966,21369,22287,22174,23258,23377,22974,23699,25003,25726,26532,27186,28080,29574,32127,33019,33241,34749,36627,37868,39622,40089,42510,43980,45336,44287,45452,45544,46033,45901,46936,48153,47721,46049,49687,49338,48388,48782,49409,48692,49050,47829,50390,48951
-2019F,MS,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,FSICP,0,0,0,99,96,113,126,141,143,145,306,402,358,253,285,343,364,347,407,256,312,157,160,211,297,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,HLACP,220,253,291,344,355,233,295,285,393,456,472,525,559,535,510,464,535,570,623,8,152,184,259,307,289,232,192,158,135,112,131,109,92,106,158,72,64,58,7,341,114,24,72,46,43,45,32,30,78,56,77,52,66,62,37,42,30,1,29,8
-2019F,MS,HLCCP,695,732,786,826,884,812,926,960,1211,1433,1454,1452,1586,1514,1412,1200,1242,1301,1190,642,624,593,564,671,455,543,481,569,590,644,612,528,494,624,612,552,680,635,602,660,1134,1174,834,744,637,469,575,514,556,574,559,548,480,567,574,503,488,478,368,429
-2019F,MS,HLICP,1118,1115,1229,1383,1483,1117,1173,1083,1469,2089,2139,2089,2516,2598,2696,2739,2972,3179,2658,3301,2952,1898,1881,1416,2347,2187,1476,1176,1344,2131,4423,3803,4060,3520,3807,4448,6061,397,280,2232,1727,2631,2113,3840,1251,960,1369,891,545,520,496,493,463,542,629,559,609,553,769,766
-2019F,MS,HLRCP,2187,2306,2474,2601,2785,2558,2918,3022,3814,4513,4580,4574,4996,4767,4447,3778,3912,4099,3747,2021,1965,1867,1776,2113,1433,1710,1514,1791,1858,2028,1927,1663,1557,1964,1928,1737,2140,2000,1897,2079,3570,3697,2627,2042,1941,1723,1637,1646,1984,2048,2016,1739,1250,1452,1762,1418,1363,1255,1442,1530
-2019F,MS,HLTCP,4220,4406,4780,5154,5507,4720,5313,5350,6888,8491,8645,8641,9658,9414,9065,8180,8662,9150,8217,5972,5694,4541,4481,4507,4524,4672,3663,3694,3927,4915,7093,6103,6203,6214,6505,6810,8945,3091,2787,5312,6545,7526,5647,6672,3872,3198,3614,3080,3162,3197,3148,2832,2259,2623,3002,2522,2490,2286,2608,2733
-2019F,MS,HLTXP,4220,4406,4780,5154,5507,4720,5313,5350,6888,8491,8645,8641,9658,9414,9065,8180,8662,9150,8217,5972,5694,4541,4481,4507,4524,4672,3663,3694,3927,4915,7093,6103,6203,6214,6505,6810,8945,3091,2787,5312,6545,7526,5647,6672,3872,3198,3614,3080,3162,3197,3148,2832,2259,2623,3002,2522,2490,2286,2608,2733
-2019F,MS,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,HYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,HYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,JFACP,1465,1489,1602,1652,1742,1460,1526,1705,2036,1858,1614,1669,1600,1513,1538,1475,1425,1498,1361,1451,1530,1734,3336,2963,2334,4111,4914,7657,8006,6567,6922,8080,11006,8328,6750,7573,7157,7916,7690,9658,9004,8411,7223,9193,6119,5902,7097,4366,4104,4853,479,451,429,619,455,471,453,493,475,543
-2019F,MS,JFTCP,1465,1489,1602,1652,1742,1460,1526,1705,2036,1858,1614,1669,1600,1513,1538,1475,1425,1498,1361,1451,1530,1734,3336,2963,2334,4111,4914,7657,8006,6567,6922,8080,11006,8328,6750,7573,7157,7916,7690,9658,9004,8411,7223,9193,6119,5902,7097,4366,4104,4853,479,451,429,619,455,471,453,493,475,543
-2019F,MS,JFTXP,1465,1489,1602,1652,1742,1460,1526,1705,2036,1858,1614,1669,1600,1513,1538,1475,1425,1498,1361,1451,1530,1734,3336,2963,2334,4111,4914,7657,8006,6567,6922,8080,11006,8328,6750,7573,7157,7916,7690,9658,9004,8411,7223,9193,6119,5902,7097,4366,4104,4853,479,451,429,619,455,471,453,493,475,543
-2019F,MS,KSCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,127,102,12,39,19,6,4,5,6,6,9,6,3,7,6,13,7,44,8,10,8,44,9,8,6,4,2,1,1,1,0,0,1,0,1,0,1,1
-2019F,MS,KSICP,385,201,163,161,296,319,618,2579,2393,2702,2571,1944,2114,3565,1491,1307,1126,1628,2002,730,198,57,152,145,25,20,29,44,57,37,35,33,15,35,29,19,21,31,52,40,24,27,18,24,58,51,41,30,18,3,0,0,0,0,0,0,1,0,0,0
-2019F,MS,KSRCP,13,13,10,17,16,27,20,21,38,78,75,60,71,191,150,127,106,146,191,10,44,29,51,112,19,27,38,28,28,23,12,23,14,25,20,20,22,21,24,21,35,32,9,11,15,17,14,13,4,13,11,6,2,3,5,2,3,1,1,1
-2019F,MS,KSTCP,398,214,173,178,312,346,639,2599,2432,2779,2646,2004,2185,3756,1641,1434,1232,1775,2193,740,242,100,330,359,56,86,85,78,88,65,53,61,38,66,51,47,49,65,83,104,67,69,35,79,82,76,61,48,24,17,13,7,3,3,6,3,5,2,2,2
-2019F,MS,KSTXP,398,214,173,178,312,346,639,2599,2432,2779,2646,2004,2185,3756,1641,1434,1232,1775,2193,740,242,100,330,359,56,86,85,78,88,65,53,61,38,66,51,47,49,65,83,104,67,69,35,79,82,76,61,48,24,17,13,7,3,3,6,3,5,2,2,2
-2019F,MS,LUACP,292,284,392,392,412,312,324,253,277,278,283,322,344,312,299,307,341,314,338,353,315,302,275,288,307,286,280,317,305,313,322,288,294,299,313,307,298,315,330,333,328,301,297,275,278,277,270,279,259,233,351,327,311,312,324,376,366,330,310,303
-2019F,MS,LUICP,99,96,104,104,109,157,163,177,194,238,242,211,226,363,348,374,415,340,366,383,341,327,298,312,333,310,303,343,330,339,349,312,318,324,339,333,323,341,357,361,355,326,322,298,301,300,292,302,280,252,179,173,157,154,158,164,154,143,136,129
-2019F,MS,LUTCP,391,380,496,496,521,469,488,429,471,515,525,532,570,675,647,681,756,655,703,736,655,628,573,600,640,596,583,659,636,652,671,600,612,623,651,640,621,656,687,694,684,626,619,572,580,577,562,580,539,484,531,500,468,466,481,540,520,473,446,432
-2019F,MS,LUTXP,391,380,496,496,521,469,488,429,471,515,525,532,570,675,647,681,756,655,703,736,655,628,573,600,640,596,583,659,636,652,671,600,612,623,651,640,621,656,687,694,684,626,619,572,580,577,562,580,539,484,531,500,468,466,481,540,520,473,446,432
-2019F,MS,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1062,-838,-631,-329,-955,-1312,-600,-275,265,248,-122,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,MGACP,15279,15520,16209,16902,17215,17842,19148,20086,21409,22768,23914,24969,27180,27846,27854,27489,28647,30278,30498,29177,26585,27454,26301,26517,26300,26701,27703,28470,28658,28301,28337,29043,29725,31475,32301,33540,33690,34858,36290,37644,36391,35355,36801,37402,37753,38188,38582,39874,38906,37388,38750,37200,38378,38037,39550,40130,40878,39950,38800,40148
-2019F,MS,MGCCP,79,83,86,84,83,88,90,90,89,90,91,93,95,100,103,105,106,106,107,106,122,131,135,173,152,134,217,266,187,160,165,81,172,49,149,49,57,47,49,44,45,40,33,34,38,194,32,32,37,32,32,32,36,38,33,455,473,466,473,478
-2019F,MS,MGICP,738,745,819,710,644,610,550,489,395,333,311,308,263,302,218,218,203,181,161,140,73,73,0,0,448,751,628,629,633,562,578,669,638,383,418,427,430,488,370,733,758,1086,1176,1239,1415,1383,1483,628,427,435,620,621,592,646,562,392,377,380,384,376
-2019F,MS,MGTCP,16096,16348,17114,17696,17942,18539,19789,20664,21893,23191,24316,25371,27539,28248,28176,27811,28957,30566,30766,29424,26781,27658,26436,26691,26900,27586,28548,29365,29479,29023,29080,29794,30535,31907,32868,34017,34178,35393,36708,38422,37193,36481,38010,38676,39206,39765,40097,40534,39371,37856,39402,37853,39007,38721,40145,40977,41727,40796,39657,41001
-2019F,MS,MGTXP,16096,16348,17114,17696,17942,18539,19789,20664,21893,23191,24316,25371,27539,28248,28176,27811,28957,30566,30766,29424,26781,27658,26436,26691,26900,27586,28548,29365,29479,29023,29080,29794,30535,31907,32868,34017,34178,35393,36708,38422,37193,36481,38010,38676,39206,39765,40097,40534,39371,37856,39402,37853,39007,38721,40145,40977,41727,40796,39657,41001
-2019F,MS,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,46,43,38,96,63,60,67,61,58,64,78,73,78,60,64,60,54,54,21,21,22,24,25,26,25,38,41,42,43,62,61,56
-2019F,MS,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,NGACP,31385,31019,32395,38179,39439,45265,47665,48738,51776,56258,59335,59448,57883,57376,50308,38352,30523,30963,31654,42066,39274,40563,37038,28005,32518,25309,28652,32416,34511,34007,37735,34645,33276,37500,39170,41685,49202,45037,36341,31607,30910,30286,27016,26026,21895,21502,22134,27320,28680,28959,28120,28829,48498,23688,20623,21927,20367,19562,26559,26164
-2019F,MS,NGCCP,15171,17164,18593,19920,20912,12407,15753,16547,18297,17667,23846,25853,24604,23701,25504,23922,20214,19304,21312,27224,20886,19267,17213,17158,17860,16591,16891,17922,18108,17568,17548,17743,17942,19199,19232,19904,22225,22070,21358,20208,21673,21585,21221,22933,22130,20882,19425,20774,20181,19095,21179,20247,17834,19483,22195,19727,18135,17643,21039,19935
-2019F,MS,NGEIP,34358,33873,37512,46938,50249,56360,57327,75625,84293,89932,99710,104197,100723,60224,42092,31507,32809,39080,43246,64183,95073,74559,83196,49773,62682,53579,47613,41119,33261,44927,65168,62409,54180,39979,82610,111309,83332,73170,76447,106302,100643,149432,163664,96081,107432,135562,139918,182996,167345,183344,235250,244051,291341,234274,236533,330718,367040,340862,367855,361185
-2019F,MS,NGICP,76578,79234,80301,88277,104654,105419,127890,115105,127999,132075,140849,148627,155442,141269,129395,106742,88992,82393,77120,83906,78812,80274,104168,115371,126740,105470,96386,90526,100010,102811,108058,109207,107557,104996,89617,88033,84470,87619,82350,124055,120393,103367,105532,94213,106456,99254,104347,110751,114958,109492,127032,116108,116773,117964,119973,125735,118737,130349,137008,134439
-2019F,MS,NGRCP,24029,22856,23847,24824,26802,24112,29741,26145,29526,30233,36642,40196,39334,31422,28900,29530,26584,25949,30387,36987,29485,28324,27516,27552,28760,25714,25282,26599,26889,26312,25045,25756,26487,28347,27086,26960,30157,27626,24847,24562,27033,27920,26457,26589,24136,24464,21481,22227,23843,23433,27152,24303,19572,25185,28261,23248,20185,18446,24426,22118
-2019F,MS,NGTCP,181521,184146,192648,218138,242056,243563,278376,282160,311891,326165,360382,378321,377986,313992,276199,230053,199122,197689,203719,254366,263530,242987,269131,237859,268560,226663,214824,208582,212779,225625,253554,249761,239442,230020,257714,287892,269387,255522,241343,306734,300653,332590,343890,265842,282050,301664,307305,364068,355007,364323,438733,433538,494018,420594,427585,521355,544464,526862,576887,563841
-2019F,MS,NGTPP,83.2,83.5,85.9,97.2,108,108.4,124,126.6,140.6,146.9,162.3,167,163.8,133.6,116.1,95.9,82,80.4,81.9,101.5,104.4,95.7,105.3,92.6,104.2,87.6,82.8,80.6,82.5,87.6,98.3,96.1,91.3,86.6,95.8,105.7,98,92,86,108.4,105.6,116.6,120.3,92.7,97.6,103.8,105.8,124.3,120.4,123.1,147.7,145.5,165.5,140.7,142.9,174.4,182.1,176.2,193.4,189.3
-2019F,MS,NGTXP,147163,150273,155136,171200,191807,187203,221049,206535,227598,236233,260672,274124,277263,253768,234107,198546,166313,158609,160473,190183,168457,168428,185935,188086,205878,173084,167211,167463,179518,180698,188386,187351,185262,190041,175104,176583,186054,182352,164896,200432,200010,183158,180226,169761,174618,166101,167387,181072,187662,180979,203483,189487,202677,186320,191052,190637,177424,186000,209032,202656
-2019F,MS,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,4332,4087,7717,9582,7826,7422,9133,8174,7904,9615,8013,9225,10813,9191,8428,10695,9924,10059,10902,10233,10078,10419,9359,9397,10999,9643,10337,7296,10865,10252,11715,5897,7365,6919,11033
-2019F,MS,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,4332,4087,7717,9582,7826,7422,9133,8174,7904,9615,8013,9225,10813,9191,8428,10695,9924,10059,10902,10233,10078,10419,9359,9397,10999,9643,10337,7296,10865,10252,11715,5897,7365,6919,11033
-2019F,MS,OPICP,350,338,353,1749,1737,1834,1816,2220,2327,2473,4301,4389,4615,3941,3853,4246,4217,4203,4588,4360,4436,2558,2461,3418,3758,3106,2983,3719,4660,4815,4741,4070,5110,4524,4503,4249,5257,5210,4347,4461,3955,5048,5186,5660,5491,5791,6006,5823,5165,5075,5485,5588,5709,5492,5052,5104,5414,5678,5630,5726
-2019F,MS,OPTCP,350,338,353,1749,1737,1834,1816,2220,2327,2473,4301,4389,4615,3941,3853,4246,4217,4203,4588,4360,4436,2558,2461,3418,3758,3106,2983,3719,4660,4815,4741,4070,5110,4524,4503,4249,5257,5210,4347,4461,3955,5048,5186,5660,5491,5791,6006,5823,5165,5075,5485,5588,5709,5492,5052,5104,5414,5678,5630,5726
-2019F,MS,OPTXP,350,338,353,1749,1737,1834,1816,2220,2327,2473,4301,4389,4615,3941,3853,4246,4217,4203,4588,4360,4436,2558,2461,3418,3758,3106,2983,3719,4660,4815,4741,4070,5110,4524,4503,4249,5257,5210,4347,4461,3955,5048,5186,5660,5491,5791,6006,5823,5165,5075,5485,5588,5709,5492,5052,5104,5414,5678,5630,5726
-2019F,MS,P1ICP,2475,2430,2495,3978,4391,4430,4866,7485,7452,7837,10006,9988,10714,11853,9717,9176,9093,9568,10632,9743,8566,5397,5390,6397,8568,6480,6198,7241,8733,8183,8736,8023,8796,8191,7931,7962,9181,9594,8931,9118,8178,8274,8452,9835,9931,10350,11666,11638,9379,8160,8642,9070,8443,8109,7458,7888,8277,8431,8381,7601
-2019F,MS,P1TCP,2950,2895,3217,4809,5205,5232,5506,8084,8175,8579,10682,10704,11467,12701,10407,9813,9713,10188,11308,10221,9130,5883,5949,7012,9027,6940,6671,7705,9200,8676,9209,8450,9207,8606,8339,8397,9568,10009,9391,9596,8648,8722,8845,10234,10347,10697,12065,12042,9742,8479,9080,9473,8825,8486,7841,8314,8689,8810,8755,7950
-2019F,MS,P1TXP,2950,2895,3217,4809,5205,5232,5506,8084,8175,8579,10682,10704,11467,12701,10407,9813,9713,10188,11308,10221,9130,5883,5949,7012,9027,6940,6671,7705,9200,8676,9209,8450,9207,8606,8339,8397,9568,10009,9391,9596,8648,8722,8845,10234,10347,10697,12065,12042,9742,8479,9080,9473,8825,8486,7841,8314,8689,8810,8755,7950
-2019F,MS,PAACP,18320,18441,20322,21534,22037,21747,22768,23933,27430,28767,29293,31481,34213,36101,36543,35817,37917,40405,41896,39691,40163,39737,39466,39237,38675,41379,44082,47815,49941,46531,46296,50811,53286,53351,53325,53937,53451,56094,57913,62232,60228,58397,60133,64185,62689,61721,65127,63931,61852,61002,57193,55200,56383,55105,56425,58977,60487,59226,58311,59744
-2019F,MS,PACCP,819,865,914,949,1015,971,1092,1168,1425,1724,1699,1694,2064,2283,2446,2441,2829,3367,3197,6616,4175,3622,968,1842,1328,1482,1135,1362,1177,1426,1183,1074,1061,954,1143,926,1140,1025,1023,1008,1447,1605,1137,1270,899,864,814,1688,1231,1261,1178,1239,1152,1183,1308,1609,1638,1669,1513,1453
-2019F,MS,PAEIP,65,31,38,86,19,7,29,37,100,273,420,1002,3232,5842,8665,9469,12872,17053,20117,10428,5149,2872,426,206,166,169,1420,188,1166,1363,1228,681,651,5538,1733,48,1792,4086,8376,4978,4585,8396,54,2635,4493,2478,678,719,150,35,137,65,26,23,30,29,32,24,47,24
-2019F,MS,PAICP,5990,5766,6145,7874,8637,7896,8581,11222,11828,13121,15795,15824,17465,19407,17340,17366,18672,20951,22047,21534,17290,15536,14806,13172,15552,13321,12846,12572,14879,15463,18534,16371,16956,15487,15949,16799,19643,15153,13785,16021,13945,15885,15359,18427,17082,16175,17427,16384,13331,11248,12203,12552,12765,12771,11942,11358,11570,12186,12217,11469
-2019F,MS,PARCP,2223,2347,2501,2644,2832,2617,2979,3087,3900,4671,4744,4728,5192,5105,4763,4101,4268,4552,4257,2177,2016,1898,1827,2229,1455,1738,1554,1829,1888,2055,1940,1687,1572,1991,1949,1758,2163,2022,1922,2102,3607,3734,2637,2054,1961,1749,1652,1659,1988,2061,2027,1745,1252,1455,1767,1420,1366,1255,1444,1532
-2019F,MS,PATCP,27417,27450,29920,33087,34540,33237,35449,39447,44684,48556,51951,54730,62166,68738,69756,69194,76559,86328,91514,80447,68793,63665,57494,56685,57175,58088,61037,63766,69052,66838,69182,70623,73526,77321,74099,73468,78189,78379,83019,86340,83813,88018,79321,88572,87124,82987,85698,84380,78552,75606,72739,70800,71578,70537,71473,73394,75092,74360,73531,74222
-2019F,MS,PATPP,12.6,12.4,13.3,14.7,15.4,14.8,15.8,17.7,20.1,21.9,23.4,24.2,26.9,29.3,29.3,28.8,31.5,35.1,36.8,32.1,27.2,25.1,22.5,22.1,22.2,22.4,23.5,24.6,26.8,26,26.8,27.2,28,29.1,27.6,27,28.5,28.2,29.6,30.5,29.4,30.9,27.7,30.9,30.2,28.6,29.5,28.8,26.6,25.6,24.5,23.8,24,23.6,23.9,24.5,25.1,24.9,24.7,24.9
-2019F,MS,PATXP,27353,27419,29882,33001,34521,33230,35420,39410,44583,48283,51531,53728,58934,62896,61091,59725,63687,69276,71397,70019,63645,60793,57067,56479,57009,57919,59617,63578,67886,65475,67954,69943,72876,71783,72367,73420,76397,74293,74644,81362,79228,79621,79267,85936,82631,80509,85020,83661,78402,75571,72602,70735,71552,70515,71443,73365,75060,74336,73484,74198
-2019F,MS,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,PCICP,879,879,932,612,997,977,987,1047,1150,1070,1145,995,940,740,985,660,980,1195,1030,1544,1555,685,761,819,891,989,978,962,1059,1017,1102,1077,1182,1363,951,931,972,972,952,948,959,944,924,913,927,878,1153,1187,1090,1134,1205,1175,1183,1079,1007,1026,1056,957,895,903
-2019F,MS,PCTCP,879,879,932,612,997,977,987,1047,1150,1070,1145,995,940,740,985,660,980,1195,1030,1544,1555,685,761,819,891,989,978,962,1059,1017,1102,1077,1182,1363,951,931,972,972,952,948,959,944,924,913,927,878,1153,1187,1090,1134,1205,1175,1183,1079,1007,1026,1056,957,895,903
-2019F,MS,PCTXP,879,879,932,612,997,977,987,1047,1150,1070,1145,995,940,740,985,660,980,1195,1030,1544,1555,685,761,819,891,989,978,962,1059,1017,1102,1077,1182,1363,951,931,972,972,952,948,959,944,924,913,927,878,1153,1187,1090,1134,1205,1175,1183,1079,1007,1026,1056,957,895,903
-2019F,MS,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,77,52,66,62,37,42,30,1,29,8
-2019F,MS,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,559,548,480,567,574,503,488,478,368,429
-2019F,MS,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,496,493,463,542,629,559,609,553,769,766
-2019F,MS,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2016,1739,1250,1452,1762,1418,1363,1255,1442,1530
-2019F,MS,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3148,2832,2259,2623,3002,2522,2490,2286,2608,2733
-2019F,MS,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3148,2832,2259,2623,3002,2522,2490,2286,2608,2733
-2019F,MS,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MS,RFACP,11,88,173,241,276,301,73,54,252,27,3,0,152,428,729,1184,1201,1354,1987,2701,5355,3086,2410,1768,1729,1110,1763,1813,1750,1194,1532,3915,2589,3196,3534,2519,1675,1251,1040,916,1366,1291,1224,821,1681,600,703,684,654,714,777,872,1061,692,144,488,578,628,214,246
-2019F,MS,RFCCP,18,15,22,8,9,33,26,65,68,105,45,35,231,492,728,898,1177,1586,1513,5690,3405,2747,28,0,0,11,91,23,16,13,0,1,0,0,0,0,0,0,0,0,0,50,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,RFEIP,64,31,37,85,18,6,28,37,99,270,415,979,3182,5776,8549,9203,12513,16611,19775,10379,5078,2790,366,167,121,108,1374,152,1109,1277,1179,602,623,5503,1683,7,1703,4035,8314,4916,4533,8348,23,2600,4449,2388,650,650,110,12,116,34,0,0,0,0,0,0,0,0
-2019F,MS,RFICP,218,214,246,562,506,149,78,94,177,277,240,107,726,968,743,778,902,1171,1083,3574,2172,1781,2656,425,284,89,1233,64,672,1066,947,237,190,255,170,81,112,31,153,11,7,195,121,169,310,294,66,115,123,53,19,47,33,17,0,6,0,0,0,0
-2019F,MS,RFTCP,311,347,479,895,810,489,205,250,595,678,703,1122,4292,7663,10748,12063,15794,20722,24359,22344,16010,10404,5461,2361,2134,1319,4461,2051,3547,3550,3658,4754,3401,8953,5388,2607,3491,5317,9507,5843,5906,9883,1368,3592,6448,3282,1418,1449,887,779,912,953,1094,709,145,493,578,629,214,246
-2019F,MS,RFTXP,247,317,441,810,792,483,177,213,496,408,288,143,1110,1887,2200,2861,3281,4111,4583,11965,10932,7614,5094,2193,2013,1210,3086,1899,2438,2273,2479,4152,2779,3451,3705,2600,1787,1282,1193,927,1373,1535,1345,992,2000,894,769,799,777,767,796,919,1094,709,145,493,578,629,214,246
-2019F,MS,SGICP,343,331,347,1643,1635,1715,1690,2078,2183,2328,3995,3904,4169,3598,3479,3826,3770,3770,4076,3998,4023,4397,4204,4413,4955,4979,5675,5753,6021,6082,5948,5869,6068,6027,5326,5244,5287,5197,5008,4930,4951,5037,5389,5573,5528,5531,5544,5377,5152,5239,5272,5282,5395,5260,5155,4998,5220,5281,5400,5125
-2019F,MS,SNICP,0,0,0,0,0,0,0,0,0,0,0,83,89,90,89,77,83,87,104,106,102,171,159,187,250,192,49,54,43,40,40,37,45,45,35,30,179,174,258,349,234,106,139,109,69,85,110,123,133,73,41,36,23,99,105,98,93,37,34,35
-2019F,MS,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,6,7,8
-2019F,MS,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,326,322
-2019F,MS,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1
-2019F,MS,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,3,4,6
-2019F,MS,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,6,96,337,336
-2019F,MS,TPOPP,2182,2206,2243,2244,2241,2246,2245,2228,2219,2220,2220,2265,2307,2350,2378,2399,2430,2459,2488,2507,2525,2539,2557,2568,2578,2588,2594,2589,2580,2574,2579,2599,2624,2655,2689,2723,2748,2777,2805,2828,2848,2853,2859,2868,2889,2906,2905,2928,2948,2959,2971,2979,2985,2990,2992,2990,2991,2991,2983,2978
-2019F,MS,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1127,-1246,-765,-1415,-1442,-1469,-1527,-1169,-1616,-1535,-1908,-1533,-1719,-1064,-1223,-428,-381,-1127,-1017,-1413,-267,-515,-188,-278,11,259,236,-194,-288,103,205,225,59,-282,-61,30,275,112,490
-2019F,MS,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,WXICP,7,7,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,104,112,113,113,130,117,114,100,89,86,76,74,73,75,70,58,51,33,45,40,41,37,34,28,29,24,30,25
-2019F,MS,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MS,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,1,0,7,1,0,-2,0,0,0,0,0,11,10,13,17,8,13,8,13,16,16,22,18,1,4,0,-2,-1,0,0,-1,0,-1,-1,0,-3,-3
-2019F,MT,ARICP,865,823,786,900,1328,1003,974,1066,1221,1189,1347,1337,1489,1397,1222,924,1283,1133,942,1054,1020,1035,884,1130,1215,1463,1989,1642,1473,1749,1487,1350,1309,1707,1964,1293,1702,1448,1594,2625,2151,903,1040,319,929,730,1486,937,818,1538,1641,1950,1865,1539,1525,1535,1491,1617,1438,1401
-2019F,MT,ARTCP,865,823,786,900,1328,1003,974,1066,1221,1189,1347,1337,1489,1397,1222,924,1283,1133,942,1054,1020,1035,884,1130,1215,1463,1989,1642,1473,1749,1487,1350,1309,1707,1964,1293,1702,1448,1594,2625,2151,903,1040,319,929,730,1486,937,818,1538,1641,1950,1865,1539,1525,1535,1491,1617,1438,1401
-2019F,MT,ARTXP,865,823,786,900,1328,1003,974,1066,1221,1189,1347,1337,1489,1397,1222,924,1283,1133,942,1054,1020,1035,884,1130,1215,1463,1989,1642,1473,1749,1487,1350,1309,1707,1964,1293,1702,1448,1594,2625,2151,903,1040,319,929,730,1486,937,818,1538,1641,1950,1865,1539,1525,1535,1491,1617,1438,1401
-2019F,MT,AVACP,1006,1427,473,499,340,312,198,131,65,38,43,42,94,110,105,79,94,92,87,122,159,177,92,102,77,91,105,82,107,95,111,108,75,64,75,78,99,71,102,121,134,109,115,101,42,47,87,69,90,75,47,44,41,37,55,57,49,44,49,46
-2019F,MT,AVTCP,1006,1427,473,499,340,312,198,131,65,38,43,42,94,110,105,79,94,92,87,122,159,177,92,102,77,91,105,82,107,95,111,108,75,64,75,78,99,71,102,121,134,109,115,101,42,47,87,69,90,75,47,44,41,37,55,57,49,44,49,46
-2019F,MT,AVTXP,1006,1427,473,499,340,312,198,131,65,38,43,42,94,110,105,79,94,92,87,122,159,177,92,102,77,91,105,82,107,95,111,108,75,64,75,78,99,71,102,121,134,109,115,101,42,47,87,69,90,75,47,44,41,37,55,57,49,44,49,46
-2019F,MT,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,3,4,3,10,9,10,9,8,12,5,6,7
-2019F,MT,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,3,4,3,10,9,10,9,8,12,5,6,7
-2019F,MT,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,CLACP,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,CLCCP,12,12,12,11,11,10,10,10,8,8,5,10,7,9,8,7,6,2,12,9,11,7,7,6,5,6,17,6,7,42,46,37,17,9,3,9,4,74,4,3,3,3,3,2,97,133,127,2,11,10,7,9,5,2,1,2,2,2,3,2
-2019F,MT,CLEIP,187,262,295,285,294,296,323,326,399,577,723,672,769,893,854,1089,2374,3197,3184,3461,3352,3338,2596,2356,5113,5480,7438,7530,10410,10208,9573,10460,11028,9121,10781,9641,8075,9465,10896,10903,10385,10838,9746,11032,11322,11588,11302,11929,12012,10151,12005,9758,9057,9562,10180,10277,9328,8944,8733,9275
-2019F,MT,CLICP,36,45,49,44,62,52,45,31,32,25,28,40,49,44,56,50,124,186,190,213,154,276,222,169,164,225,319,192,215,197,220,281,251,367,572,622,130,105,145,168,166,159,92,93,92,89,89,110,90,60,74,81,238,262,281,279,261,252,235,197
-2019F,MT,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,CLOCP,36,45,49,44,62,52,45,31,32,25,28,40,49,44,56,50,124,186,190,213,154,276,222,169,164,225,319,192,215,197,220,281,251,367,572,622,130,105,145,168,166,159,92,93,92,89,89,110,90,60,74,81,238,262,281,279,261,252,235,197
-2019F,MT,CLRCP,18,17,17,16,15,13,13,14,10,10,7,9,5,5,4,3,2,1,4,2,3,1,2,1,1,2,5,2,2,11,11,8,4,2,1,1,1,9,0,0,0,0,0,0,11,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,CLTCP,253,336,373,357,381,370,392,381,450,619,763,731,830,951,923,1149,2507,3385,3390,3686,3520,3622,2826,2533,5283,5713,7780,7730,10634,10458,9850,10786,11300,9499,11357,10272,8210,9653,11046,11074,10554,11000,9841,11127,11522,11822,11531,12041,12113,10221,12087,9848,9300,9826,10462,10558,9591,9198,8972,9474
-2019F,MT,CLTXP,67,74,79,72,87,74,68,56,51,43,40,59,61,58,69,60,133,188,206,224,168,284,231,177,170,233,341,200,224,250,277,326,272,378,576,632,135,188,149,171,169,162,95,95,200,235,229,112,102,70,82,90,243,263,282,281,263,255,238,199
-2019F,MT,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,DFACP,2839,2721,2675,2520,2705,2676,2961,1941,2356,2649,3020,3116,3408,3834,4266,3835,4101,4049,4451,4791,4759,3834,3866,4106,4082,4132,3930,4080,4149,4115,3993,3856,4339,4457,5100,5390,4886,5718,5350,5536,5812,6200,6018,5050,6237,7597,8122,9013,8055,7454,7475,7931,7247,7754,7209,6666,7068,7368,7507,7456
-2019F,MT,DFCCP,297,380,380,372,354,315,324,223,284,329,283,451,496,562,616,668,734,699,746,766,346,380,183,1104,935,772,373,272,181,192,154,164,140,170,159,102,229,162,114,142,143,197,137,173,294,163,215,175,229,145,105,123,106,104,85,53,129,116,96,87
-2019F,MT,DFEIP,0,0,0,0,0,0,1,0,0,1,0,0,3,26,2,1,4,5,4,17,59,39,31,31,78,38,25,44,63,60,63,45,36,49,44,57,62,50,40,37,41,2,26,28,32,18,25,21,14,17,17,28,14,19,45,12,21,15,24,23
-2019F,MT,DFICP,1500,1841,2159,2174,2331,1693,2123,1033,1222,1373,1274,1750,1863,2073,2413,2494,2926,2890,2375,2787,1925,1943,1396,3173,2686,5192,1968,1607,1473,2623,2778,2868,2141,2404,1917,2283,2569,2422,1955,1982,1904,1907,1842,2507,3237,3519,3673,4474,4323,3800,2149,2372,2568,2591,2416,1658,1418,1448,1543,1854
-2019F,MT,DFRCP,262,335,335,328,312,277,286,196,250,289,249,397,436,495,542,589,646,616,657,675,421,273,352,449,380,309,325,220,213,345,291,287,180,234,159,218,325,685,404,225,170,170,122,196,187,169,196,197,248,115,109,99,93,80,63,70,67,66,59,64
-2019F,MT,DFTCP,4898,5278,5549,5393,5702,4962,5695,3394,4113,4641,4827,5715,6206,6989,7840,7586,8411,8258,8232,9037,7509,6469,5828,8863,8161,10444,6621,6223,6078,7336,7280,7220,6836,7315,7381,8049,8070,9037,7863,7921,8069,8476,8145,7953,9988,11465,12232,13880,12869,11531,9854,10553,10028,10548,9819,8460,8703,9013,9230,9485
-2019F,MT,DFTXP,4898,5278,5549,5393,5702,4962,5694,3394,4113,4640,4826,5715,6203,6963,7837,7585,8408,8253,8229,9020,7450,6431,5797,8832,8083,10406,6596,6179,6016,7275,7217,7176,6800,7266,7336,7992,8009,8987,7823,7885,8028,8474,8120,7925,9955,11447,12207,13859,12855,11514,9837,10525,10014,10529,9773,8448,8682,8998,9205,9461
-2019F,MT,ELEXP,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,3,3,3,0,0,0,0,0,0,0,3,4,35,3,0,0,1,76,100,299,149,489,504,626,410,344,406,1061,311,43,72,549,863
-2019F,MT,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,28,6,18,47,25,17,3,0,0,38,14,27,19,0,0,52,11,40,109,86,95,241,216,250,41,169,58,83,136,167,263,56,70
-2019F,MT,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-11374,-13563,-11179,-9309,-10366,-10857,-11352,-15241,-12684,-16470,-10103,-11564,-11243,-12000,-12206,-12925,-12658,-11994,-12649,-10835,-14602,-15023,-12769,-12312,-14166,-13894,-12802,-12703,-11936,-10727
-2019F,MT,ELNIP,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-2,-2,-2,-2,-2,-2,-2,-2,-3,-2,-3,70,-3,25,3,15,47,25,17,3,0,0,38,11,23,-17,-3,0,52,10,-36,9,-214,-54,-248,-288,-375,-369,-175,-348,-979,-174,124,191,-493,-793
-2019F,MT,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,25,21,14,7,6,1,0,3,13,13,14,0,16,0,0,10,11,13,34,34,29,36,246,293,503,639,739,681,864,954,1009,997,1221,1292,1294,1267,1293
-2019F,MT,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,15,15,16,16,16
-2019F,MT,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,2,2,1,2,14,18,22,20,23,17,22,23,25,24,35,35,35,36,36
-2019F,MT,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,26,23,15,8,6,1,0,3,13,13,15,0,17,0,0,10,11,13,35,35,30,38,261,311,525,660,762,699,888,978,1035,1022,1270,1343,1345,1319,1345
-2019F,MT,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,ESCCP,688,740,789,833,858,925,986,1039,1078,1111,1187,1258,1322,1371,1370,1645,1728,1814,1926,2061,2094,2202,2339,2499,4874,4245,4456,2979,3202,3070,3237,3326,3396,3495,3657,3411,3603,3577,3649,3359,4104,4190,4338,4438,4330,4473,4686,4828,4826,4791,4789,4892,4918,4890,4903,4894,4832,4970,4921,4956
-2019F,MT,ESICP,2951,2973,3114,3191,3544,3939,4657,4282,4982,6208,6029,5999,5858,5034,5929,5160,5922,5759,6106,6111,5815,5848,4759,4217,5631,5841,6150,6304,6438,6535,6529,6622,6414,5837,5961,6368,6306,4537,6774,6258,6568,3370,4463,4267,4574,4784,4735,6163,5831,4773,4239,3983,4168,4229,4230,4488,4416,4515,4720,5057
-2019F,MT,ESRCP,935,982,1041,1077,1139,1216,1261,1291,1373,1462,1534,1633,1757,1812,1873,2143,2261,2440,2754,2957,2916,2906,3178,3097,3375,3614,3214,3139,3301,3456,3358,3459,3286,3598,3567,3640,3911,3804,3722,3664,3908,3886,4031,4120,4053,4221,4394,4542,4669,4790,4743,4913,4778,4926,4969,4825,4853,5225,5198,5308
-2019F,MT,ESRPP,1378,1411,1492,1533,1613,1723,1784,1841,1962,2107,2198,2297,2445,2494,2543,2864,2985,3169,3520,3756,3697,3654,3953,3804,4112,4395,3949,3900,4125,4322,4197,4272,3980,4259,4141,4152,4412,4275,4171,4083,4324,4285,4421,4480,4358,4490,4612,4708,4782,4868,4787,4925,4759,4858,4859,4678,4656,4958,4895,4960
-2019F,MT,ESTCP,4575,4695,4944,5101,5541,6080,6904,6612,7433,8781,8750,8890,8937,8217,9171,8948,9911,10013,10786,11129,10825,10956,10276,9813,13880,13700,13820,12423,12942,13061,13125,13407,13096,12929,13184,13419,13820,11917,14145,13282,14580,11447,12831,12825,12957,13479,13815,15532,15326,14354,13771,13788,13863,14045,14102,14207,14101,14710,14839,15321
-2019F,MT,ESTPP,6737,6746,7083,7256,7848,8612,9765,9432,10619,12653,12536,12507,12435,11306,12454,11959,13087,13005,13787,14136,13724,13775,12782,12055,16908,16660,16983,15431,16173,16334,16402,16558,15860,15305,15307,15308,15593,13392,15850,14798,16132,12621,14075,13945,13932,14338,14501,16100,15697,14587,13900,13822,13806,13849,13790,13773,13530,13958,13975,14317
-2019F,MT,ESTXP,4575,4695,4944,5101,5541,6080,6904,6612,7433,8781,8750,8890,8937,8217,9171,8948,9911,10013,10786,11129,10825,10956,10276,9813,13880,13700,13820,12423,12942,13061,13125,13407,13096,12929,13184,13419,13820,11917,14145,13282,14580,11447,12831,12825,12957,13479,13815,15532,15326,14354,13771,13788,13863,14045,14102,14207,14101,14710,14839,15321
-2019F,MT,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,FSICP,0,0,0,87,84,100,110,104,107,105,124,156,154,138,154,158,164,153,181,113,125,65,71,83,109,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,HLACP,29,31,35,34,26,13,21,60,73,68,36,56,78,65,53,50,50,37,46,18,45,52,29,54,69,51,55,39,48,53,67,48,35,43,58,28,16,8,62,12,11,20,11,13,26,22,18,12,35,10,10,9,8,5,3,3,3,3,5,5
-2019F,MT,HLCCP,107,130,119,106,139,135,160,211,226,227,188,192,232,204,217,206,210,210,270,128,175,107,156,191,91,128,136,150,151,176,172,149,127,116,115,100,110,32,18,73,195,199,204,528,331,414,344,316,428,183,291,303,375,309,395,387,422,359,604,434
-2019F,MT,HLICP,112,104,125,145,128,164,254,356,359,361,246,282,339,302,206,174,202,162,115,364,786,382,551,383,461,814,696,844,626,578,717,178,279,1513,360,333,991,90,108,112,227,275,358,212,164,287,322,676,295,31,82,129,50,83,91,127,65,91,102,152
-2019F,MT,HLRCP,488,594,541,482,632,614,731,959,1030,1034,856,873,1056,931,990,939,958,958,1231,584,799,486,710,869,413,583,618,684,689,801,784,678,577,528,522,456,501,146,83,330,890,907,929,1398,1863,1732,1726,1990,2230,2362,1966,2089,1638,1606,1809,1822,1609,1885,1795,2483
-2019F,MT,HLTCP,737,859,819,766,925,926,1167,1585,1689,1690,1326,1402,1705,1503,1466,1370,1420,1368,1662,1094,1806,1027,1446,1497,1032,1576,1505,1716,1515,1608,1740,1053,1018,2200,1054,918,1618,277,271,527,1324,1400,1502,2151,2384,2455,2409,2993,2989,2586,2349,2530,2071,2003,2297,2338,2098,2338,2507,3074
-2019F,MT,HLTXP,737,859,819,766,925,926,1167,1585,1689,1690,1326,1402,1705,1503,1466,1370,1420,1368,1662,1094,1806,1027,1446,1497,1032,1576,1505,1716,1515,1608,1740,1053,1018,2200,1054,918,1618,277,271,527,1324,1400,1502,2151,2384,2455,2409,2993,2989,2586,2349,2530,2071,2003,2297,2338,2098,2338,2507,3074
-2019F,MT,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,HYEGP,5801,6498,6410,6011,6820,8389,7940,8705,8925,9449,8745,9594,9444,7520,9724,10166,12402,8460,11708,10344,9966,11323,10920,11561,11112,10175,10857,8925,8237,9571,10717,11970,8271,9614,8150,10746,13795,13406,11118,13822,9623,6613,9567,8702,8856,9587,10130,9364,10000,9506,9415,12596,11283,9638,11483,9888,10083,10946,11405,10005
-2019F,MT,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,HYTCP,5801,6498,6410,6011,6820,8389,7940,8705,8925,9449,8745,9594,9444,7520,9724,10166,12402,8460,11708,10344,9966,11323,10920,11561,11112,10175,10857,8925,8237,9571,10717,11970,8271,9614,8150,10746,13795,13406,11118,13822,9623,6613,9567,8702,8856,9587,10130,9364,10000,9506,9415,12596,11283,9638,11483,9888,10083,10946,11405,10005
-2019F,MT,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,JFACP,265,280,311,340,360,384,441,574,697,806,649,767,762,757,780,818,753,772,699,907,920,800,625,652,642,678,867,718,809,750,708,615,864,901,855,1052,999,793,798,836,747,756,768,832,1008,1112,1045,1026,832,792,1103,1095,1122,839,1006,866,1152,1379,1400,1239
-2019F,MT,JFTCP,265,280,311,340,360,384,441,574,697,806,649,767,762,757,780,818,753,772,699,907,920,800,625,652,642,678,867,718,809,750,708,615,864,901,855,1052,999,793,798,836,747,756,768,832,1008,1112,1045,1026,832,792,1103,1095,1122,839,1006,866,1152,1379,1400,1239
-2019F,MT,JFTXP,265,280,311,340,360,384,441,574,697,806,649,767,762,757,780,818,753,772,699,907,920,800,625,652,642,678,867,718,809,750,708,615,864,901,855,1052,999,793,798,836,747,756,768,832,1008,1112,1045,1026,832,792,1103,1095,1122,839,1006,866,1152,1379,1400,1239
-2019F,MT,KSCCP,466,306,262,356,656,227,79,157,111,133,94,78,77,84,64,54,41,51,47,17,0,0,0,0,0,0,7,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,2,3,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,KSICP,11,60,3,3,23,21,38,703,704,524,282,284,306,321,110,68,39,43,48,0,0,26,0,3,1,0,2,7,2,2,7,2,0,0,0,0,0,0,0,0,1,12,9,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,KSRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,7,9,14,1,1,1,1,1,0,7,6,1,1,2,3,1,0,1,1,4,1,1,1,1,3,0,1,1,0,0,1,0,1,0,0,0
-2019F,MT,KSTCP,477,366,265,359,679,248,118,859,815,657,376,362,383,405,174,122,79,93,95,17,0,26,0,18,8,10,22,8,4,3,8,3,1,8,7,1,1,2,3,2,1,12,10,8,6,9,1,1,4,0,1,1,0,0,1,0,1,0,0,0
-2019F,MT,KSTXP,477,366,265,359,679,248,118,859,815,657,376,362,383,405,174,122,79,93,95,17,0,26,0,18,8,10,22,8,4,3,8,3,1,8,7,1,1,2,3,2,1,12,10,8,6,9,1,1,4,0,1,1,0,0,1,0,1,0,0,0
-2019F,MT,LUACP,137,134,141,141,148,148,153,135,148,151,154,145,155,159,152,162,180,196,211,220,196,188,172,180,192,179,175,197,190,195,201,180,183,187,195,192,186,197,206,208,205,188,185,171,174,173,168,174,161,145,129,127,115,123,122,129,124,116,109,105
-2019F,MT,LUICP,23,23,30,30,31,41,43,40,44,45,46,43,46,60,58,46,51,51,55,57,51,49,45,47,50,46,45,51,50,51,52,47,48,49,51,50,48,51,54,54,53,49,48,45,45,45,44,45,42,38,75,75,69,72,76,77,65,61,58,59
-2019F,MT,LUTCP,161,157,171,171,179,189,196,175,192,196,200,188,201,219,210,208,231,247,266,278,247,237,216,227,242,225,220,249,240,246,253,227,231,235,246,242,235,248,259,262,258,237,234,216,219,218,212,219,203,183,204,201,184,195,197,207,189,176,167,164
-2019F,MT,LUTXP,161,157,171,171,179,189,196,175,192,196,200,188,201,219,210,208,231,247,266,278,247,237,216,227,242,225,220,249,240,246,253,227,231,235,246,242,235,248,259,262,258,237,234,216,219,218,212,219,203,183,204,201,184,195,197,207,189,176,167,164
-2019F,MT,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-437,-373,-250,-121,-343,-472,-212,-98,101,95,-46,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,MGACP,5972,5910,6747,6544,6501,6678,7148,7178,7708,8155,8407,8797,9267,10179,9922,9682,10668,10240,12064,10320,9705,10024,9671,9940,9831,9439,9445,9604,9789,9602,9630,9687,10100,10421,10479,10669,11070,10782,11145,11334,11139,11079,11290,11246,11295,11117,11251,11563,11250,11471,11596,11424,11598,11839,11981,12276,12488,12466,12279,12306
-2019F,MT,MGCCP,135,146,121,141,127,144,123,135,133,107,220,127,168,136,125,174,163,157,167,179,92,110,127,76,61,72,76,80,76,77,84,63,55,12,15,13,19,12,14,14,14,14,15,15,15,15,16,15,17,15,15,15,14,15,14,148,149,150,152,153
-2019F,MT,MGICP,816,923,685,796,746,887,681,791,745,476,635,570,702,568,503,774,774,703,578,663,619,663,632,509,558,677,637,574,575,631,615,611,572,567,603,646,663,686,437,420,406,546,566,585,681,638,694,501,359,357,295,296,274,290,284,348,339,341,347,342
-2019F,MT,MGTCP,6922,6979,7553,7481,7374,7709,7953,8104,8585,8737,9262,9494,10137,10883,10550,10630,11605,11100,12809,11162,10416,10797,10429,10525,10451,10188,10158,10258,10441,10310,10328,10360,10727,10999,11097,11328,11753,11480,11596,11768,11559,11640,11871,11846,11991,11770,11960,12079,11626,11844,11906,11735,11887,12144,12279,12771,12976,12957,12778,12801
-2019F,MT,MGTXP,6922,6979,7553,7481,7374,7709,7953,8104,8585,8737,9262,9494,10137,10883,10550,10630,11605,11100,12809,11162,10416,10797,10429,10525,10451,10188,10158,10258,10441,10310,10328,10360,10727,10999,11097,11328,11753,11480,11596,11768,11559,11640,11871,11846,11991,11770,11960,12079,11626,11844,11906,11735,11887,12144,12279,12771,12976,12957,12778,12801
-2019F,MT,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,NGACP,485,1313,1293,1213,1290,426,395,776,562,607,708,760,1050,1663,1721,1764,1465,1469,1552,2303,2839,2087,2309,1645,1881,2248,2068,2011,2245,2415,2051,2323,3028,3726,3554,3946,3436,3469,3780,6010,7698,7536,7773,8410,8298,7960,7594,7811,7329,5048,7443,6888,6979,6770,4129,4495,4614,3789,4308,3305
-2019F,MT,NGCCP,11885,12207,12370,12638,13131,14110,14068,15516,13651,16593,18564,18109,19151,19143,16602,18654,17831,16706,17766,17396,14265,13725,15987,13534,14256,14820,12536,10989,12041,13141,12164,12846,11557,13880,12981,13489,14823,13911,12952,12088,13533,13245,14704,15119,13407,13136,13181,13223,14340,23575,20459,22336,19205,20971,21549,19502,21314,23374,26308,27790
-2019F,MT,NGEIP,341,356,3712,3303,2450,1992,2977,502,631,1519,2529,1075,1218,2322,1111,1059,709,953,909,2320,4182,2069,337,335,360,468,407,478,286,336,418,268,220,270,632,388,470,420,522,291,192,161,116,259,195,213,544,1000,513,656,705,4681,5370,7273,5662,6558,5363,4688,5129,5495
-2019F,MT,NGICP,26060,28185,28912,32043,33651,34288,34914,28488,28343,38101,41196,42948,39116,42179,38885,33946,30841,30232,29478,25207,20142,17326,13586,13768,11924,10358,9315,9949,10354,11669,11686,11553,14089,15069,16183,20373,20504,21043,23416,24068,26419,23963,25229,24249,25021,27212,33111,32066,32655,24757,22543,22603,22776,23842,25391,25575,24647,26706,28671,27708
-2019F,MT,NGRCP,16918,17180,17172,17369,18895,19908,19690,19756,19711,21463,24794,25379,23787,24923,21590,24097,23525,21596,22944,22579,19296,17245,19989,16967,18443,19371,16822,15359,16900,18195,16850,18413,16673,20360,18714,19640,22175,21002,19172,19676,20116,20147,21710,20436,19907,19834,19449,19722,21585,21765,20875,21710,19069,20813,21379,18912,19100,21481,22619,23932
-2019F,MT,NGTCP,55689,59241,63459,66566,69417,70724,72044,65038,62898,78283,87791,88271,84322,90230,79909,79520,74371,70956,72649,69805,60724,52452,52208,46249,46864,47265,41148,38786,41826,45756,43169,45402,45567,53305,52065,57836,61408,59844,59842,62133,67959,65052,69532,68473,66829,68355,73879,73822,76422,75801,72024,78218,73399,79669,78110,75042,75038,80038,87035,88230
-2019F,MT,NGTPP,82,85.1,90.9,94.7,98.3,100.2,101.9,92.8,89.9,112.8,125.8,124.2,117.3,124.1,108.5,106.3,98.2,92.2,92.9,88.7,77,66,64.9,56.8,57.1,57.5,50.6,48.2,52.3,57.2,53.9,56.1,55.2,63.1,60.4,66,69.3,67.3,67.1,69.2,75.2,71.7,76.3,74.5,71.9,72.7,77.5,76.5,78.3,77,72.7,78.4,73.1,78.6,76.4,72.8,72,75.9,82,82.4
-2019F,MT,NGTXP,55348,58885,59747,63263,66967,68732,69067,64536,62267,76764,85262,87196,83104,87908,78798,78461,73662,70003,71740,67485,56542,50383,51871,45914,46504,46797,40741,38308,41540,45420,42751,45135,45347,53035,51433,57448,60938,59424,59321,61842,67767,64891,69416,68215,66634,68142,73335,72822,75909,75145,71320,73537,68029,72396,72448,68484,69675,75350,81906,82735
-2019F,MT,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,OPICP,1099,1147,1210,1525,1520,1611,1595,1637,1731,1794,1739,1667,1947,2104,2036,1920,1866,1815,1991,1882,1738,983,1025,1277,1287,1046,1043,1284,1621,1794,1797,1451,1840,1621,1818,1715,2139,2138,1764,1901,1769,2578,2421,2691,2630,2777,2911,2889,2549,2549,2770,2828,2912,2755,2524,2761,2852,2925,2866,3039
-2019F,MT,OPTCP,1099,1147,1210,1525,1520,1611,1595,1637,1731,1794,1739,1667,1947,2104,2036,1920,1866,1815,1991,1882,1738,983,1025,1277,1287,1046,1043,1284,1621,1794,1797,1451,1840,1621,1818,1715,2139,2138,1764,1901,1769,2578,2421,2691,2630,2777,2911,2889,2549,2549,2770,2828,2912,2755,2524,2761,2852,2925,2866,3039
-2019F,MT,OPTXP,1099,1147,1210,1525,1520,1611,1595,1637,1731,1794,1739,1667,1947,2104,2036,1920,1866,1815,1991,1882,1738,983,1025,1277,1287,1046,1043,1284,1621,1794,1797,1451,1840,1621,1818,1715,2139,2138,1764,1901,1769,2578,2421,2691,2630,2777,2911,2889,2549,2549,2770,2828,2912,2755,2524,2761,2852,2925,2866,3039
-2019F,MT,P1ICP,2624,3019,3139,3637,4037,3901,4032,4900,5509,5497,5047,5020,5705,5797,5097,4810,4813,4927,4750,4536,4229,3733,3326,3508,3905,4022,4543,4936,5149,5418,5205,4601,5364,4954,5654,4936,6009,5356,6212,7893,6258,4364,5402,4581,5206,5115,6137,6667,6081,5596,5483,5886,5850,5502,5209,5499,5452,5721,5483,5597
-2019F,MT,P1TCP,4234,4885,4015,4632,5180,4587,4463,5323,5833,5819,5338,5285,6031,6151,5418,5105,5127,5266,5095,4896,4585,4099,3590,3804,4181,4301,4843,5218,5448,5709,5518,4890,5623,5212,5930,6428,7421,6780,7698,9551,7953,6090,6948,6046,6760,6601,7672,8155,7501,7165,6799,7378,7350,6985,6594,7144,6992,7266,6878,7026
-2019F,MT,P1TXP,4234,4885,4015,4632,5180,4587,4463,5323,5833,5819,5338,5285,6031,6151,5418,5105,5127,5266,5095,4896,4585,4099,3590,3804,4181,4301,4843,5218,5448,5709,5518,4890,5623,5212,5930,5207,6295,5625,6523,8224,6596,4661,5704,4859,5426,5343,6393,6912,6337,5816,5661,6058,6006,5662,5386,5686,5626,5880,5642,5748
-2019F,MT,PAACP,10624,11119,10852,10488,10387,10536,11319,10360,11292,12106,12428,13010,13827,15149,15400,14786,15987,15522,17692,16403,15786,15075,14454,15036,14894,14569,14576,14720,15093,14811,14709,14493,15597,16072,16762,17409,17256,17569,17664,18047,18047,18353,18388,17413,18782,20069,20722,21858,20424,19946,20361,20629,20130,20597,20375,19998,20884,21374,21351,21158
-2019F,MT,PACCP,1007,966,886,978,1279,822,689,726,755,796,786,849,973,987,1024,1105,1151,1121,1233,1102,620,597,471,1543,1192,1098,629,515,417,458,421,379,325,304,294,218,361,207,147,231,353,410,357,718,644,600,574,506,675,376,412,445,496,430,497,588,700,625,852,674
-2019F,MT,PAEIP,0,0,1,1,4,1,82,6,23,105,26,0,17,169,14,54,81,195,98,147,59,39,31,31,78,38,25,44,63,60,63,45,36,49,44,1278,1187,1205,1215,1363,1397,1431,1270,1215,1366,1276,1303,1264,1178,1366,1154,1348,1358,1342,1253,1470,1386,1401,1260,1301
-2019F,MT,PAICP,6737,7846,8684,9189,9228,7559,8071,7962,9077,8919,8324,8797,9998,10317,10346,10215,11019,10857,10088,13959,11577,9216,7508,8705,8302,10712,7854,7971,8035,9417,9522,8400,8440,10113,8900,8432,10410,8715,8818,10426,8795,7094,8206,7891,9331,9665,10920,12318,11059,9811,8009,8683,8742,8466,8000,7632,7273,7600,7476,7945
-2019F,MT,PARCP,750,929,875,809,944,891,1017,1156,1281,1324,1106,1270,1492,1426,1532,1528,1604,1574,1888,1259,1220,759,1062,1333,799,901,957,905,904,1147,1077,966,757,770,687,674,827,833,489,557,1060,1077,1052,1598,2050,1902,1923,2187,2481,2477,2075,2189,1731,1686,1873,1892,1678,1951,1854,2547
-2019F,MT,PATCP,19118,20861,21298,21465,21842,19809,21177,20211,22427,23250,22670,23926,26308,28048,28316,27687,29843,29270,30999,32869,29262,25686,23525,26648,25266,27320,24041,24156,24513,25893,25792,24284,25156,27308,26687,28011,30041,28528,28333,30624,29652,28365,29274,28835,32173,33511,35443,38133,35817,33977,32012,33295,32458,32520,31998,31579,31921,32952,32792,33625
-2019F,MT,PATPP,28.2,30,30.5,30.5,30.9,28.1,30,28.8,32,33.5,32.5,33.7,36.6,38.6,38.5,37,39.4,38,39.6,41.7,37.1,32.3,29.3,32.7,30.8,33.2,29.5,30,30.6,32.4,32.2,30,30.5,32.3,31,32,33.9,32.1,31.7,34.1,32.8,31.3,32.1,31.4,34.6,35.6,37.2,39.5,36.7,34.5,32.3,33.4,32.3,32.1,31.3,30.6,30.6,31.3,30.9,31.4
-2019F,MT,PATXP,19118,20861,21297,21464,21838,19808,21095,20205,22404,23145,22644,23926,26291,27878,28302,27634,29762,29074,30901,32722,29203,25647,23494,26617,25187,27281,24017,24112,24450,25833,25729,24239,25120,27258,26642,26733,28854,27324,27117,29261,28255,26935,28003,27620,30807,32235,34139,36869,34638,32611,30858,31947,31099,31178,30745,30110,30535,31551,31532,32324
-2019F,MT,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1222,1126,1155,1175,1327,1356,1429,1245,1187,1334,1258,1279,1244,1164,1348,1138,1320,1344,1323,1208,1458,1365,1386,1236,1278
-2019F,MT,PCICP,626,965,1111,1179,1134,1224,1382,1455,1809,1945,1633,1690,1917,1914,1671,1851,1574,1885,1715,1542,1421,1640,1373,1051,1352,1466,1464,1952,2003,1821,1862,1752,2167,1578,1820,1878,2120,1719,2801,3312,2285,823,1883,1525,1600,1563,1696,2796,2672,1471,998,1034,1004,1136,1084,1126,1043,1117,1121,1098
-2019F,MT,PCTCP,626,965,1111,1179,1134,1224,1382,1455,1809,1945,1633,1690,1917,1914,1671,1851,1574,1885,1715,1542,1421,1640,1373,1051,1352,1466,1464,1952,2003,1821,1862,1752,2167,1578,1820,3100,3245,2874,3976,4639,3641,2252,3128,2711,2934,2820,2975,4039,3836,2819,2136,2353,2348,2459,2292,2584,2408,2503,2357,2376
-2019F,MT,PCTXP,626,965,1111,1179,1134,1224,1382,1455,1809,1945,1633,1690,1917,1914,1671,1851,1574,1885,1715,1542,1421,1640,1373,1051,1352,1466,1464,1952,2003,1821,1862,1752,2167,1578,1820,1878,2120,1719,2801,3312,2285,823,1883,1525,1600,1563,1696,2796,2672,1471,998,1034,1004,1136,1084,1126,1043,1117,1121,1098
-2019F,MT,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,9,8,5,3,3,3,3,5,5
-2019F,MT,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,291,303,375,309,395,387,422,359,604,434
-2019F,MT,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,82,129,50,83,91,127,65,91,102,152
-2019F,MT,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1966,2089,1638,1606,1809,1822,1609,1885,1795,2483
-2019F,MT,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2349,2530,2071,2003,2297,2338,2098,2338,2507,3074
-2019F,MT,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2349,2530,2071,2003,2297,2338,2098,2338,2507,3074
-2019F,MT,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,MT,RFACP,377,617,471,410,307,325,396,342,243,238,119,87,63,44,122,160,141,136,134,24,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,RFCCP,2,3,4,4,3,1,1,1,1,1,1,1,1,1,2,2,3,3,4,11,7,0,5,172,105,126,37,13,9,13,11,3,4,5,3,3,2,1,1,2,1,0,0,1,0,0,0,0,0,32,1,4,0,1,3,0,0,0,0,0
-2019F,MT,RFEIP,0,0,1,1,4,1,81,6,23,104,26,0,15,143,12,53,78,191,94,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,RFICP,1684,1960,2575,2438,1986,914,980,882,1242,1212,1123,1174,1390,1577,2126,1963,2303,2176,2270,5609,4018,2494,1603,1132,692,7,10,10,212,168,207,142,85,675,365,233,178,161,106,18,0,2,39,6,42,106,95,0,0,27,0,0,0,0,0,0,0,0,0,0
-2019F,MT,RFTCP,2063,2580,3052,2852,2300,1241,1459,1231,1509,1556,1268,1262,1469,1765,2262,2178,2525,2506,2502,5773,4025,2494,1608,1306,798,133,47,23,221,180,218,145,88,680,369,236,181,162,106,20,1,2,39,6,42,106,125,0,0,59,1,4,0,1,3,0,0,0,0,0
-2019F,MT,RFTXP,2063,2580,3051,2852,2297,1241,1378,1224,1487,1452,1243,1262,1454,1622,2250,2125,2448,2315,2407,5643,4025,2494,1608,1306,798,133,47,23,221,180,218,145,88,680,369,236,181,162,106,20,1,2,39,6,42,106,125,0,0,59,1,4,0,1,3,0,0,0,0,0
-2019F,MT,SGICP,1099,1147,1210,1438,1436,1512,1485,1533,1624,1688,1615,1511,1794,1966,1882,1762,1702,1662,1810,1769,1613,1810,1871,1745,1818,1787,2043,2037,2135,2305,2292,2219,2279,2267,2258,2223,2313,2289,2266,2380,2464,2708,2659,2768,2746,2753,2780,2764,2648,2700,2717,2722,2795,2725,2671,2796,2836,2781,2812,2776
-2019F,MT,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3,3,4,6,7
-2019F,MT,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,34,29
-2019F,MT,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,6,9,9,6,8,11,14,17
-2019F,MT,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,2,3,3,8,11,11,8,11,29,54,54
-2019F,MT,TPOPP,679,696,698,703,706,706,707,701,700,694,698,711,719,727,736,748,757,770,782,787,789,795,804,814,821,822,814,805,800,800,800,810,826,845,861,877,886,890,892,898,904,907,912,920,930,940,953,965,976,984,991,998,1004,1014,1023,1031,1042,1054,1062,1070
-2019F,MT,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-464,-554,-302,-519,-518,-529,-541,-415,-612,-591,-721,-576,-647,-451,-518,-187,-168,-510,-491,-703,-143,-254,-94,-138,5,130,122,-100,-149,53,106,117,31,-146,-34,16,145,58,266
-2019F,MT,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,496,593,821,930,1265,1262,1755,1974,1965,2140,2155,2153,2373
-2019F,MT,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,MT,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,496,593,821,930,1265,1262,1755,1974,1965,2140,2155,2153,2373
-2019F,MT,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,ARICP,2617,2676,3153,2625,2716,2699,3265,3475,3493,3616,3621,3779,4124,4610,3919,3049,2989,3542,3554,3509,3089,2160,2209,3216,3850,3450,4533,4022,4490,3766,4207,3821,4250,4645,4824,6426,4046,4163,4422,4587,4924,5262,5076,5252,6049,5704,5430,5645,4487,3282,4229,3618,4750,3773,3811,3490,5019,5593,5744,4372
-2019F,NC,ARTCP,2617,2676,3153,2625,2716,2699,3265,3475,3493,3616,3621,3779,4124,4610,3919,3049,2989,3542,3554,3509,3089,2160,2209,3216,3850,3450,4533,4022,4490,3766,4207,3821,4250,4645,4824,6426,4046,4163,4422,4587,4924,5262,5076,5252,6049,5704,5430,5645,4487,3282,4229,3618,4750,3773,3811,3490,5019,5593,5744,4372
-2019F,NC,ARTXP,2617,2676,3153,2625,2716,2699,3265,3475,3493,3616,3621,3779,4124,4610,3919,3049,2989,3542,3554,3509,3089,2160,2209,3216,3850,3450,4533,4022,4490,3766,4207,3821,4250,4645,4824,6426,4046,4163,4422,4587,4924,5262,5076,5252,6049,5704,5430,5645,4487,3282,4229,3618,4750,3773,3811,3490,5019,5593,5744,4372
-2019F,NC,AVACP,692,622,742,679,740,714,347,304,296,286,151,201,245,285,237,219,155,228,256,237,215,268,185,188,167,174,227,218,236,231,213,170,154,118,136,139,148,159,138,187,140,151,91,141,108,128,107,96,118,68,157,147,142,122,84,90,93,98,102,108
-2019F,NC,AVTCP,692,622,742,679,740,714,347,304,296,286,151,201,245,285,237,219,155,228,256,237,215,268,185,188,167,174,227,218,236,231,213,170,154,118,136,139,148,159,138,187,140,151,91,141,108,128,107,96,118,68,157,147,142,122,84,90,93,98,102,108
-2019F,NC,AVTXP,692,622,742,679,740,714,347,304,296,286,151,201,245,285,237,219,155,228,256,237,215,268,185,188,167,174,227,218,236,231,213,170,154,118,136,139,148,159,138,187,140,151,91,141,108,128,107,96,118,68,157,147,142,122,84,90,93,98,102,108
-2019F,NC,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,3,10,29,39,34,36,29,98,81,405,391,466,832,877,491,385
-2019F,NC,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,3,10,29,39,34,36,29,98,81,405,391,466,832,877,491,385
-2019F,NC,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,CLACP,42,12,10,10,9,8,8,6,5,4,4,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,CLCCP,408,332,364,314,275,233,274,256,242,238,192,191,202,255,271,259,205,171,183,120,135,113,128,108,97,152,119,125,159,121,125,80,167,188,223,195,181,171,178,132,101,114,116,113,317,137,106,40,250,206,191,163,125,134,150,145,119,105,78,58
-2019F,NC,CLEIP,5488,6055,6685,7645,8317,9595,11535,12885,14706,16273,17709,18142,18763,19900,20014,18206,20981,21235,18998,21138,23920,24950,23540,21913,20306,19610,20542,17255,17766,20842,19444,19786,22858,24822,22680,23774,27272,28509,28235,27838,29496,28649,29478,29403,29922,31303,30456,32412,31116,26427,29455,24591,20876,19170,19539,15666,14802,13461,12599,12352
-2019F,NC,CLICP,2421,2558,2499,2606,2473,2563,2741,2640,2479,2179,2267,1872,1535,1549,1529,1479,1356,1512,1581,1661,1375,1729,1661,1876,1992,2247,2545,2548,2536,2570,2989,2702,2860,2476,2396,2437,2336,2158,1883,1751,1762,1704,1597,1590,1448,1408,1225,1148,1066,869,883,764,661,663,592,552,526,454,398,361
-2019F,NC,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,CLOCP,2421,2558,2499,2606,2473,2563,2741,2640,2479,2179,2267,1872,1535,1549,1529,1479,1356,1512,1581,1661,1375,1729,1661,1876,1992,2247,2545,2548,2536,2570,2989,2702,2860,2476,2396,2437,2336,2158,1883,1751,1762,1704,1597,1590,1448,1408,1225,1148,1066,869,883,764,661,663,592,552,526,454,398,361
-2019F,NC,CLRCP,587,477,524,433,380,309,363,339,309,303,244,183,152,150,128,111,84,67,55,30,36,25,26,21,23,43,36,37,45,32,31,18,37,41,39,29,25,21,22,18,12,14,16,17,35,12,10,4,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,CLTCP,8947,9433,10082,11007,11455,12707,14921,16125,17741,18996,20417,20391,20653,21856,21943,20055,22625,22985,20816,22949,25466,26816,25356,23918,22417,22052,23242,19965,20506,23565,22590,22585,25921,27527,25338,26434,29813,30859,30319,29738,31371,30481,31208,31124,31723,32860,31797,33606,32432,27502,30529,25518,21662,19967,20282,16364,15447,14020,13075,12771
-2019F,NC,CLTXP,3458,3378,3397,3363,3137,3113,3386,3241,3035,2723,2707,2248,1890,1956,1928,1849,1644,1750,1818,1811,1546,1867,1816,2005,2111,2442,2700,2710,2740,2723,3145,2799,3064,2705,2658,2660,2541,2350,2083,1901,1875,1832,1729,1720,1800,1557,1341,1193,1316,1075,1075,927,786,797,742,698,645,559,476,419
-2019F,NC,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,DFACP,3187,3049,3335,4213,4595,4458,4907,4763,5432,5859,6301,6164,6550,9031,8963,8207,8969,10012,10437,13090,10707,10598,10883,12716,13232,13827,15078,15721,18655,15435,15804,15672,16805,16931,19201,19855,20539,21909,22240,21635,24918,24827,25061,25823,27964,27724,27801,27561,23559,24568,25417,25061,23297,24726,26032,26220,26365,26781,28623,28796
-2019F,NC,DFCCP,1156,1164,1358,1310,1292,1307,1538,1527,1588,1547,1701,1619,1760,1748,1473,1426,1596,1679,1456,1853,1673,1343,885,2932,3449,2958,2696,3352,3534,2614,2302,2108,1906,2012,2179,2345,2824,2861,2584,2162,2679,3096,1992,2190,1680,1669,1471,1502,1359,1812,1636,1522,1490,957,1227,1281,1182,1202,1287,1309
-2019F,NC,DFEIP,60,48,41,47,69,53,63,27,133,529,1432,939,883,573,601,93,228,859,639,163,561,480,330,464,335,443,349,435,458,560,390,375,318,406,468,533,597,509,657,672,1169,879,813,1158,649,548,473,525,477,484,528,381,342,392,879,791,477,472,1205,344
-2019F,NC,DFICP,3155,3276,4058,3760,3811,4710,6186,6122,4394,4234,4514,4618,4913,4905,4163,4271,5294,6175,4688,4894,4131,3289,3171,2951,3471,3613,5111,4349,4255,3962,3467,3446,3726,3347,3467,4640,4372,4019,4822,3935,4207,4676,3411,3537,3483,4272,3914,3923,3369,2952,3010,3000,2915,3359,3219,3370,3776,3854,3731,3857
-2019F,NC,DFRCP,5887,5928,6917,6672,6581,6654,7829,7774,8086,7876,8663,8243,8960,8899,7502,7261,8126,8551,7414,9434,7044,5516,4910,5582,6565,5449,5551,6492,6566,5198,4225,3706,4071,3947,3624,4023,4257,3426,2993,2968,3238,3118,2808,3057,2868,2228,2030,1972,1823,1271,1424,1031,797,857,845,1571,1303,701,760,704
-2019F,NC,DFTCP,13445,13465,15709,16002,16349,17182,20522,20213,19632,20045,22612,21583,23065,25157,22703,21259,24212,27276,24634,29434,24116,21225,20179,24644,27052,26290,28785,30349,33469,27768,26189,25308,26826,26643,28939,31396,32589,32724,33296,31371,36210,36595,34084,35766,36644,36441,35689,35483,30586,31088,32015,30995,28839,30291,32202,33234,33103,33010,35607,35011
-2019F,NC,DFTXP,13385,13417,15668,15955,16280,17129,20459,20186,19500,19516,21180,20644,22182,24584,22102,21165,23985,26417,23995,29271,23555,20746,19849,24180,26716,25847,28436,29914,33011,27208,25799,24933,26509,26237,28470,30863,31992,32214,32639,30700,35042,35717,33271,34608,35996,35892,35216,34957,30110,30604,31486,30613,28497,29900,31323,32443,32626,32538,34402,34666
-2019F,NC,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0
-2019F,NC,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15817,14024,16466,17104,11094,11531,9452,6731,5507,11963,12100,14235,13131,7515,14744,13289,15761,14630,17694,20741,19730,23879,22692,15081,15948,16479,14439,13173,14041,14875
-2019F,NC,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0
-2019F,NC,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,17,7,74,223,0,0,0,0,0,119,77,77,294,28,778,787,962,828,934,1272,1567,2045,2180,598,856,1270,6862,8757,9108,9157,9437,9751,9533,9618,10206,10496,10792,10987
-2019F,NC,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,3,2,4,3,3,3,4,24,31,11,13,14,80,164,86,34,34,31,33,234,256,228,239,240
-2019F,NC,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,1,1,3,0,9,9,10,6,8,27,31,34,42,11,16,17,69,94,145,154,150,159,119,120,121,125,132,130
-2019F,NC,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,18,7,76,228,0,0,0,0,0,121,78,78,298,28,790,798,975,836,945,1303,1602,2103,2253,620,886,1301,7011,9015,9338,9345,9622,9941,9684,9971,10582,10849,11163,11357
-2019F,NC,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,7,7,7,7,9,9,6,4,13,19
-2019F,NC,ESCCP,2667,2927,3258,3545,4065,5360,5958,6627,7670,8638,9697,10634,11517,12812,12383,11679,12298,13188,13631,13655,14258,15681,15760,16357,18264,19163,20858,22110,23117,24273,25516,26411,26912,28547,29275,31104,32563,33344,35720,37202,39067,39895,41451,41672,42864,44161,44585,46807,46540,46240,47932,46467,46510,46649,47510,48236,48604,47890,49298,49173
-2019F,NC,ESICP,8773,8843,9801,10423,12096,10707,11606,12935,14320,15458,16099,17147,18448,20259,20083,20875,22721,23698,24075,25229,25254,24700,22575,24623,26474,26272,27072,28993,30211,31152,31265,31514,32522,33488,33307,34063,34142,35095,34986,34165,34252,32931,31381,30314,31075,30101,29263,28978,27773,25100,26316,26555,26896,26872,26965,27701,27337,27393,27354,27391
-2019F,NC,ESRCP,5796,6344,6682,7269,7864,8601,9541,10337,11759,13198,14660,15787,16578,18480,18591,18999,19987,21851,22648,22614,24377,24928,24007,25237,26930,26852,29506,31507,32212,32784,33144,34391,34761,37742,37207,39506,41592,40611,42890,43648,46537,46201,49854,49349,51717,54073,52851,56095,55751,56311,62160,58056,54672,56251,58650,57902,58457,56134,61622,59853
-2019F,NC,ESRPP,1267,1360,1420,1533,1638,1769,1949,2087,2350,2623,2876,3034,3127,3429,3398,3425,3564,3843,3932,3883,4132,4185,3989,4153,4369,4294,4667,4920,4971,4993,4974,5069,5040,5359,5177,5379,5545,5304,5492,5491,5758,5627,5988,5859,6047,6211,5927,6152,5989,5959,6492,6011,5606,5713,5902,5769,5753,5463,5930,5700
-2019F,NC,ESTCP,17236,18114,19741,21237,24025,24668,27105,29899,33749,37294,40456,43568,46542,51552,51057,51553,55006,58737,60354,61498,63889,65309,62343,66218,71667,72287,77436,82610,85540,88209,89924,92316,94195,99778,99789,104673,108296,109050,113596,115015,119855,119027,122686,121335,125657,128335,126699,131881,130069,127658,136415,131085,128085,129780,133133,133848,134404,131421,138287,136436
-2019F,NC,ESTPP,3769,3885,4194,4479,5003,5073,5536,6038,6744,7413,7936,8373,8780,9565,9332,9293,9809,10331,10479,10560,10831,10964,10358,10896,11627,11559,12249,12900,13199,13435,13494,13607,13657,14167,13884,14252,14438,14242,14547,14468,14831,14498,14735,14406,14691,14742,14208,14464,13972,13509,14248,13571,13134,13180,13397,13335,13226,12789,13308,12992
-2019F,NC,ESTXP,17236,18114,19741,21237,24025,24668,27105,29899,33749,37294,40456,43568,46542,51552,51057,51553,55006,58737,60354,61498,63889,65309,62343,66218,71667,72287,77436,82610,85540,88209,89924,92316,94195,99778,99789,104673,108296,109050,113596,115015,119855,119027,122686,121335,125657,128335,126699,131881,130069,127658,136415,131085,128085,129780,133133,133848,134404,131421,138287,136436
-2019F,NC,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,FSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,11,12,14,9,10,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,HLACP,5,7,11,13,11,17,22,24,33,47,65,80,98,110,115,108,119,137,156,74,50,139,144,171,207,183,170,125,148,153,160,186,143,155,278,141,131,122,211,72,98,58,134,138,138,1247,1173,900,1528,1135,91,90,84,79,56,55,63,15,23,19
-2019F,NC,HLCCP,523,518,615,683,735,829,861,818,808,906,972,947,1005,840,745,726,777,764,902,862,921,901,816,970,1023,1033,1029,1254,1162,1560,1384,1550,1740,1796,1801,1893,2166,2156,2057,2080,2250,2316,2158,2381,2462,1943,1901,1940,2562,1971,2092,1836,1794,1781,2228,2015,1739,2131,2016,1793
-2019F,NC,HLICP,730,726,861,987,1105,1156,1313,1440,1513,1748,1891,1849,2163,2885,3009,3695,4079,3446,4271,4665,4581,4118,3832,3284,2868,3606,3378,4105,3490,3480,3700,4487,4623,5184,5503,5115,5908,7827,5409,4221,5820,5368,4581,3084,2830,4264,5052,4440,2807,3077,4181,4076,3944,2641,3161,2797,2256,2169,2452,2265
-2019F,NC,HLRCP,1378,1367,1622,1801,1937,2186,2270,2156,2130,2389,2561,2496,2650,2215,1965,1915,2047,2013,2378,2272,2427,2375,2150,2557,2698,2724,2712,3307,3063,4114,3648,4085,4586,4735,4749,4990,5711,5684,5423,5484,5933,6105,5689,6342,6692,5738,4936,4795,6304,6042,6372,5321,3843,4211,4895,4506,3862,3704,4871,4593
-2019F,NC,HLTCP,2635,2618,3109,3484,3789,4188,4467,4438,4484,5090,5489,5372,5916,6050,5834,6445,7022,6360,7706,7873,7979,7533,6943,6981,6797,7546,7289,8791,7863,9308,8892,10308,11092,11870,12331,12137,13917,15789,13100,11858,14101,13847,12562,11945,12122,13192,13062,12074,13201,12225,12737,11324,9665,8713,10339,9373,7920,8018,9362,8671
-2019F,NC,HLTXP,2635,2618,3109,3484,3789,4188,4467,4438,4484,5090,5489,5372,5916,6050,5834,6445,7022,6360,7706,7873,7979,7533,6943,6981,6797,7546,7289,8791,7863,9308,8892,10308,11092,11870,12331,12137,13917,15789,13100,11858,14101,13847,12562,11945,12122,13192,13062,12074,13201,12225,12737,11324,9665,8713,10339,9373,7920,8018,9362,8671
-2019F,NC,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,12,16,15,13,16,13,10,10,2,8,6,17,18,12,7,8,14,12,10,11,15,14,11,14,10,13,14
-2019F,NC,HYEGP,4951,4676,5450,4329,5951,5349,4351,5011,4703,4936,4363,5910,6428,7107,6887,7050,5650,5282,5478,7913,5483,2927,5405,6139,6366,4091,2518,5098,2890,6996,6792,5823,5741,4973,5246,3871,4198,3914,4062,2500,2192,1861,2421,6329,4731,4656,3333,2975,3024,5155,4743,3882,3342,6005,4742,4731,4403,3808,6592,6172
-2019F,NC,HYICP,48,45,42,34,38,37,28,25,20,19,10,7,9,6,3,5,2,5,4,3,3,3,3,3,3,3,3,3,3,0,3,3,3,2,1931,1636,1741,1697,1663,1174,936,733,1062,866,688,722,494,2,2,2,2,1,375,881,0,0,0,0,0,0
-2019F,NC,HYTCP,4998,4721,5491,4363,5989,5385,4379,5036,4722,4955,4374,5917,6438,7113,6890,7055,5652,5287,5482,7917,5486,2930,5408,6142,6369,4094,2521,5101,2893,6996,6819,5850,5768,4987,7192,5521,5952,5626,5738,3684,3138,2596,3492,7201,5435,5397,3839,2984,3034,5171,4757,3893,3728,6901,4756,4742,4417,3818,6605,6186
-2019F,NC,HYTXP,48,45,42,34,38,37,28,25,20,19,10,7,9,6,3,5,2,5,4,3,3,3,3,3,3,3,3,3,3,0,27,27,27,14,1946,1650,1754,1712,1676,1184,946,735,1071,872,705,740,506,9,10,16,13,11,386,895,14,11,14,10,13,14
-2019F,NC,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,JFACP,3401,3474,3854,4048,4154,3649,3896,4497,5259,4952,4702,4740,4144,3914,3907,3809,3715,4087,4338,4332,5209,5319,5747,6404,6413,6668,7123,7749,8318,7689,5567,4384,4684,4897,4359,4947,9127,7156,6761,6802,7277,6051,4825,5246,5397,7366,5323,7161,5225,1854,11372,11440,11894,12891,13400,13509,14174,14957,15062,15788
-2019F,NC,JFTCP,3401,3474,3854,4048,4154,3649,3896,4497,5259,4952,4702,4740,4144,3914,3907,3809,3715,4087,4338,4332,5209,5319,5747,6404,6413,6668,7123,7749,8318,7689,5567,4384,4684,4897,4359,4947,9127,7156,6761,6802,7277,6051,4825,5246,5397,7366,5323,7161,5225,1854,11372,11440,11894,12891,13400,13509,14174,14957,15062,15788
-2019F,NC,JFTXP,3401,3474,3854,4048,4154,3649,3896,4497,5259,4952,4702,4740,4144,3914,3907,3809,3715,4087,4338,4332,5209,5319,5747,6404,6413,6668,7123,7749,8318,7689,5567,4384,4684,4897,4359,4947,9127,7156,6761,6802,7277,6051,4825,5246,5397,7366,5323,7161,5225,1854,11372,11440,11894,12891,13400,13509,14174,14957,15062,15788
-2019F,NC,KSCCP,248,279,287,274,247,251,252,250,264,250,239,227,193,164,129,117,126,117,105,74,118,45,33,94,135,245,172,137,257,176,78,93,46,50,340,147,178,205,261,185,234,192,95,269,168,162,100,71,37,30,65,27,9,10,22,10,15,7,7,6
-2019F,NC,KSICP,1413,1370,1794,1781,1592,1919,1902,1178,1871,1360,1328,1285,1216,586,517,814,770,1286,1275,486,394,372,274,241,591,537,445,315,467,184,139,170,146,158,84,115,165,160,145,46,69,36,75,12,40,58,40,9,5,7,15,14,4,2,5,5,5,2,1,1
-2019F,NC,KSRCP,10429,11715,12042,11517,10379,10547,10571,10493,11064,10476,10045,9539,8119,6904,5434,4901,5295,4924,4427,3106,2747,1939,2025,1214,4213,3994,3324,3210,4079,3012,1408,1674,1834,1888,1308,2098,2546,2603,2988,1985,1979,2022,1223,1786,1892,1755,1194,849,435,384,552,270,106,105,170,150,218,119,125,149
-2019F,NC,KSTCP,12091,13364,14122,13573,12219,12717,12726,11921,13198,12086,11612,11051,9528,7655,6081,5832,6191,6327,5808,3666,3259,2356,2332,1549,4938,4775,3941,3662,4803,3372,1625,1937,2026,2097,1732,2360,2890,2968,3394,2216,2282,2250,1392,2067,2100,1975,1334,929,477,421,633,311,118,118,197,165,238,128,133,156
-2019F,NC,KSTXP,12091,13364,14122,13573,12219,12717,12726,11921,13198,12086,11612,11051,9528,7655,6081,5832,6191,6327,5808,3666,3259,2356,2332,1549,4938,4775,3941,3662,4803,3372,1625,1937,2026,2097,1732,2360,2890,2968,3394,2216,2282,2250,1392,2067,2100,1975,1334,929,477,421,633,311,118,118,197,165,238,128,133,156
-2019F,NC,LUACP,545,530,542,541,569,578,600,485,533,514,523,529,566,575,550,498,553,634,681,713,635,609,555,581,620,578,565,638,616,631,650,581,593,604,631,620,602,636,665,672,662,607,600,554,562,559,544,562,522,469,713,675,602,644,670,742,715,660,641,623
-2019F,NC,LUICP,179,174,203,203,213,258,268,250,275,322,328,386,413,505,484,446,495,571,613,641,571,548,499,523,558,520,508,574,554,568,585,523,533,543,568,558,541,572,599,605,596,546,539,499,505,503,490,506,469,422,813,774,640,680,655,704,649,603,570,527
-2019F,NC,LUTCP,724,704,745,745,782,835,868,735,807,835,851,915,979,1080,1034,944,1048,1205,1294,1354,1206,1156,1054,1104,1177,1097,1073,1213,1170,1200,1235,1104,1126,1147,1198,1178,1143,1207,1264,1277,1258,1153,1139,1053,1067,1061,1034,1068,991,891,1527,1448,1242,1324,1325,1446,1364,1263,1211,1150
-2019F,NC,LUTXP,724,704,745,745,782,835,868,735,807,835,851,915,979,1080,1034,944,1048,1205,1294,1354,1206,1156,1054,1104,1177,1097,1073,1213,1170,1200,1235,1104,1126,1147,1198,1178,1143,1207,1264,1277,1258,1153,1139,1053,1067,1061,1034,1068,991,891,1527,1448,1242,1324,1325,1446,1364,1263,1211,1150
-2019F,NC,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,0,0,0,0,-5,-2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,MGACP,34580,36762,37248,38993,40090,41551,44029,46242,48924,52168,54989,57331,62105,64638,65110,65739,68849,71270,74159,70168,64918,65227,64731,66151,67471,69392,72542,75173,77511,76412,75937,75811,76054,80528,82476,85383,86832,89716,92908,96454,96699,96436,98410,99788,101987,102026,102895,105333,111718,103597,104624,101446,99571,101533,101820,104458,108232,108443,108384,110842
-2019F,NC,MGCCP,206,225,235,256,265,278,293,309,326,332,355,366,377,400,399,414,431,434,447,457,790,801,689,664,1524,633,647,723,682,625,782,375,323,59,78,61,312,176,347,311,330,263,275,1163,1461,1939,1604,1153,1304,1936,983,379,362,319,352,2538,2709,2358,2397,2418
-2019F,NC,MGICP,1089,1128,1168,1275,1278,1315,1291,1304,1314,1073,1004,983,908,850,855,782,750,591,591,529,514,488,434,386,926,832,815,822,739,837,807,860,819,845,890,977,1003,1041,923,657,804,2019,1957,1666,1966,1831,1941,1385,1131,1115,1662,1702,1585,1659,1271,1299,1280,1294,1324,1316
-2019F,NC,MGTCP,35875,38114,38651,40524,41633,43144,45613,47855,50564,53573,56348,58679,63390,65888,66364,66935,70030,72296,75198,71154,66222,66515,65854,67201,69921,70856,74004,76719,78933,77874,77525,77046,77196,81432,83445,86421,88147,90933,94177,97421,97833,98717,100642,102618,105414,105796,106440,107871,114153,106647,107268,103528,101518,103511,103443,108294,112222,112095,112105,114576
-2019F,NC,MGTXP,35875,38114,38651,40524,41633,43144,45613,47855,50564,53573,56348,58679,63390,65888,66364,66935,70030,72296,75198,71154,66222,66515,65854,67201,69921,70856,74004,76719,78933,77874,77525,77046,77196,81432,83445,86421,88147,90933,94177,97421,97833,98717,100642,102618,105414,105796,106440,107871,114153,106647,107268,103528,101518,103511,103443,108294,112222,112095,112105,114576
-2019F,NC,MSICP,94,105,116,61,61,60,81,76,84,79,70,71,72,90,115,155,274,310,270,250,237,209,183,164,141,142,305,306,371,342,307,326,214,202,226,207,475,522,635,598,636,475,510,479,431,429,585,574,610,653,682,708,694,415,443,458,464,442,440,401
-2019F,NC,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,NGACP,2438,0,3458,3832,4151,4272,4059,4353,4829,5815,6151,6235,6071,5992,4496,3546,2784,2197,2599,5017,5868,6273,6647,5787,5626,4744,5032,5153,5200,5683,6283,6208,6449,5965,5766,6118,7396,7310,6700,6594,7217,6619,6092,6174,5056,4323,4681,5000,5332,7933,8010,7352,5466,4100,4014,4481,2802,3294,4272,4242
-2019F,NC,NGCCP,3706,4173,4913,5950,6633,7271,9539,17100,20624,24524,21532,26331,24200,23044,21002,21615,20042,18303,20366,23916,26172,26367,24891,24705,26174,25029,25474,30010,32464,33145,31277,34313,36418,37370,38940,37362,40467,38021,36427,38019,43113,38583,40198,44262,45383,47696,46321,45434,48567,51303,56225,49898,48951,55271,59945,55114,55876,53726,57989,57310
-2019F,NC,NGEIP,4660,2109,2537,2823,2213,2895,2606,2063,4172,8339,21126,20927,16812,7748,1072,101,6,1,4,591,1702,902,76,163,121,595,1137,1162,1068,1704,2827,4099,4321,3272,1525,5648,3590,5917,13685,12412,12942,16247,31877,14350,21423,27009,28374,40154,35963,39916,73072,89799,150866,201489,205740,269354,293272,278240,330119,303694
-2019F,NC,NGICP,26080,34730,33951,35881,41541,46720,52111,53049,60538,70189,75065,76640,83771,95652,86817,62094,44616,19749,23948,69116,85611,85901,78927,74696,79527,74808,72475,76425,74874,82629,86184,84863,90984,92309,94838,106731,104124,111513,106497,107284,106547,88844,98306,88445,90133,86821,87150,88401,89317,82253,92321,99110,102151,109662,107904,105103,105504,107373,116776,119114
-2019F,NC,NGRCP,8558,9511,11514,13810,13995,14587,18438,21416,24646,27784,27353,30434,33043,28435,26830,27466,33727,32277,35072,32244,33963,33053,31588,31228,32405,28649,31701,35903,38384,38658,35003,37976,42588,47104,47451,49379,58812,52894,50786,52853,63899,56815,58904,65410,62800,63865,56506,58365,63912,65642,74520,61644,56511,69654,75178,64523,64547,59933,73262,67948
-2019F,NC,NGTCP,45442,50523,56373,62296,68533,75745,86753,97981,114809,136651,151227,160567,163897,160871,140217,114822,101175,72527,81989,130884,153316,152496,142129,136579,143853,133825,135819,148653,151990,161818,161574,167459,180759,186020,188520,205237,214388,215655,214095,217162,233717,207108,235376,218642,224796,229715,223032,237354,243091,247047,304148,307803,363945,440176,452781,498575,522001,502566,582418,552308
-2019F,NC,NGTPP,9.9,10.8,12,13.1,14.3,15.6,17.7,19.8,22.9,27.2,29.7,30.9,30.9,29.8,25.6,20.7,18,12.8,14.2,22.5,26,25.6,23.6,22.5,23.3,21.4,21.5,23.2,23.5,24.6,24.2,24.7,26.2,26.4,26.2,27.9,28.6,28.2,27.4,27.3,28.9,25.2,28.3,26,26.3,26.4,25,26,26.1,26.1,31.8,31.9,37.3,44.7,45.6,49.7,51.4,48.9,56,52.6
-2019F,NC,NGTXP,40782,48414,53836,59473,66320,72850,84147,95918,110637,128312,130101,139640,147085,153123,139145,114721,101169,72526,81985,130293,151614,151594,142053,136416,143732,133230,134682,147491,150922,160115,158746,163360,176438,182747,186995,199589,210798,209738,200411,204750,220775,190861,203499,204292,203373,202706,194658,197200,207128,207131,231076,218004,213079,238687,247041,229221,228729,224326,252299,248614
-2019F,NC,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,2511,5664,9917,6809,5775,6246,9126,12363,20232,19303,20286,28600,29146,29212,25905,30312,22754,23759,32346,35910,33718,32453,38778,37524,39127,37775,39627,40907,40091,39982,39963,40045,39776,40848,40740,40527,39386,40242,40967,42097,42786,42374,42077,41916
-2019F,NC,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,2511,5664,9917,6809,5775,6246,9126,12363,20232,19303,20286,28600,29146,29212,25905,30312,22754,23759,32346,35910,33718,32453,38778,37524,39127,37775,39627,40907,40091,39982,39963,40045,39776,40848,40740,40527,39386,40242,40967,42097,42786,42374,42077,41916
-2019F,NC,OPICP,105,116,125,70,300,318,455,394,428,453,464,667,708,910,769,720,1050,1105,1178,1155,1111,944,868,934,1128,931,967,1069,1018,959,924,957,935,941,859,793,1263,1259,1558,1696,1433,1289,1452,1265,1017,1097,1265,1273,1334,1060,994,981,916,1232,1287,1235,1207,1316,1268,1240
-2019F,NC,OPTCP,105,116,125,70,300,318,455,394,428,453,464,667,708,910,769,720,1050,1105,1178,1155,1111,944,868,934,1128,931,967,1069,1018,959,924,957,935,941,859,793,1263,1259,1558,1696,1433,1289,1452,1265,1017,1097,1265,1273,1334,1060,994,981,916,1232,1287,1235,1207,1316,1268,1240
-2019F,NC,OPTXP,105,116,125,70,300,318,455,394,428,453,464,667,708,910,769,720,1050,1105,1178,1155,1111,944,868,934,1128,931,967,1069,1018,959,924,957,935,941,859,793,1263,1259,1558,1696,1433,1289,1452,1265,1017,1097,1265,1273,1334,1060,994,981,916,1232,1287,1235,1207,1316,1268,1240
-2019F,NC,P1ICP,4396,4657,5643,5090,5163,5538,6217,5984,6669,6467,6273,6747,7199,7258,6214,5612,5830,7234,7232,6230,5536,4822,4482,5244,6627,5981,6899,6774,7412,6230,6614,6202,6923,6903,6799,8331,6478,6476,7534,7936,7705,8463,7922,7028,7611,7362,7224,7433,6295,4771,6052,5387,6309,5687,5758,5434,6880,7513,7583,6140
-2019F,NC,P1TCP,16310,17803,19255,18103,17098,17629,17987,17516,18825,17993,17232,17243,16322,15187,12564,11347,11959,13136,12702,10360,9251,7683,7280,7322,11762,10971,11186,10977,12599,10280,8962,8720,9550,9563,9214,11336,9953,10086,11685,10964,10720,11435,9930,9778,10341,9966,9170,9011,7408,5722,7540,6505,7168,6569,6705,6426,7921,8397,8458,7027
-2019F,NC,P1TXP,16310,17803,19255,18103,17098,17629,17987,17516,18825,17993,17232,17243,16322,15187,12564,11347,11959,13136,12702,10360,9251,7683,7280,7322,11762,10971,11186,10977,12599,10280,8962,8720,9550,9563,9214,11336,9953,10080,11586,10964,10720,11435,9930,9778,10341,9966,9170,9011,7408,5722,7540,6505,7168,6569,6705,6426,7921,8397,8458,7027
-2019F,NC,PAACP,42905,45534,46234,48884,50596,51548,54508,56809,60766,64173,67077,69199,73838,78734,79072,78844,82567,86487,90115,88743,81834,82581,82485,86253,88152,90917,95835,100273,105900,101215,98844,97547,99085,103655,107290,111384,117707,119973,123071,125953,129923,128234,129919,132472,136557,139472,138036,142202,143399,132383,142766,139152,135593,139995,142062,145083,149662,150983,152863,156218
-2019F,NC,PACCP,2255,2299,2591,2612,2640,2786,3077,3047,3113,3197,3446,3441,3698,3456,3025,2917,3313,3444,3258,3617,3992,3191,2608,4829,6362,5191,4785,5530,5917,5200,4769,4243,4126,4202,4662,4631,5701,5567,5362,4837,5606,5994,4594,6212,6048,5942,5237,4696,5308,5752,4777,3765,3654,3069,3835,5845,5647,5697,5709,5526
-2019F,NC,PAEIP,79,63,54,62,91,70,83,36,174,693,1877,2037,4995,6640,5413,330,853,1188,1955,398,561,480,331,464,336,443,349,435,458,560,390,375,318,406,468,533,601,515,755,672,1169,879,813,1158,649,548,473,525,477,484,528,381,342,392,879,791,477,472,1205,344
-2019F,NC,PAICP,13336,13370,14825,13928,14525,16724,19409,19570,18105,18863,19492,23071,26447,25239,22660,21404,27528,31233,27387,27579,23230,17816,17249,17456,21526,19845,22170,21619,21317,19086,19708,20209,22773,23557,22485,24842,24041,24917,23309,20881,23265,23916,20970,19229,21123,22646,22000,20317,16445,13999,16652,15082,15207,13544,13574,12975,14249,14913,15171,13634
-2019F,NC,PARCP,17693,19010,20581,19990,18898,19388,20670,20422,21280,20741,21269,20278,19728,18019,14901,14078,15468,15488,14219,14812,12219,9830,9085,9352,13476,12167,11587,13009,13708,12324,9281,9464,10492,10570,9681,11110,12515,11714,11404,10437,11149,11245,9719,11185,11451,9720,8161,7617,8562,7697,8348,6622,4745,5174,5910,6227,5384,4524,5756,5446
-2019F,NC,PATCP,76268,80276,84283,85476,86749,90515,97748,99883,103437,107667,113161,118026,128706,132089,125071,117572,129729,137840,136933,135150,121836,113897,111758,118354,129851,128563,134726,140865,147301,138386,132992,131838,136793,142389,144587,152500,160564,162686,163902,162781,171111,170268,166015,170257,175828,178329,173907,175357,174191,160315,173072,165002,159541,162174,166259,170921,175419,176589,180704,181170
-2019F,NC,PATPP,16.7,17.2,17.9,18,18.1,18.6,20,20.2,20.7,21.4,22.2,22.7,24.3,24.5,22.9,21.2,23.1,24.2,23.8,23.2,20.7,19.1,18.6,19.5,21.1,20.6,21.3,22,22.7,21.1,20,19.4,19.8,20.2,20.1,20.8,21.4,21.2,21,20.5,21.2,20.7,19.9,20.2,20.6,20.5,19.5,19.2,18.7,17,18.1,17.1,16.4,16.5,16.7,17,17.3,17.2,17.4,17.3
-2019F,NC,PATXP,76190,80213,84229,85414,86658,90446,97665,99848,103263,106974,111284,115989,123712,125448,119658,117242,128876,136651,134978,134751,121275,113417,111427,117890,129514,128120,134377,140430,146843,137825,132602,131463,136476,141983,144118,151967,159963,162171,163147,162109,169943,169389,165202,169099,175179,177780,173433,174831,173715,159831,172543,164621,159200,161782,165380,170130,174942,176117,179499,180825
-2019F,NC,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,PCICP,81,321,367,411,341,345,327,688,602,717,533,631,738,646,524,584,526,729,611,439,372,799,632,330,501,543,445,793,883,752,759,731,1058,615,465,440,463,322,810,1002,683,1330,781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,PCTCP,81,321,367,411,341,345,327,688,602,717,533,631,738,646,524,584,526,729,611,439,372,799,632,330,501,543,445,793,883,752,759,731,1058,615,465,440,463,328,909,1002,683,1330,781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,PCTXP,81,321,367,411,341,345,327,688,602,717,533,631,738,646,524,584,526,729,611,439,372,799,632,330,501,543,445,793,883,752,759,731,1058,615,465,440,463,322,810,1002,683,1330,781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,91,90,84,79,56,55,63,15,23,19
-2019F,NC,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2092,1836,1794,1781,2228,2015,1739,2131,2016,1793
-2019F,NC,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4181,4076,3944,2641,3161,2797,2256,2169,2452,2265
-2019F,NC,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6372,5321,3843,4211,4895,4506,3862,3704,4871,4593
-2019F,NC,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12737,11324,9665,8713,10339,9373,7920,8018,9362,8671
-2019F,NC,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12737,11324,9665,8713,10339,9373,7920,8018,9362,8671
-2019F,NC,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NC,RFACP,494,1090,502,396,437,581,708,495,290,348,345,154,132,181,191,263,206,119,88,130,99,421,240,41,42,97,130,648,415,664,513,742,652,423,210,299,328,277,148,132,128,104,798,782,401,421,193,590,730,693,391,293,3,0,0,9,21,28,27,43
-2019F,NC,RFCCP,122,113,95,88,100,120,134,143,127,163,179,282,363,304,277,233,384,450,347,371,491,102,185,169,230,322,241,63,282,225,223,117,111,284,264,185,220,169,114,100,113,128,74,208,276,229,161,30,45,3,1,1,0,2,6,1,2,0,1,0
-2019F,NC,RFEIP,19,15,13,15,21,16,20,8,41,164,445,1098,4111,6067,4812,237,626,329,1316,236,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,RFICP,3967,3584,3095,2816,3167,4005,4402,4719,4215,5340,5809,8874,11264,9341,8419,7045,11574,13787,10605,11261,8468,5098,5330,5591,7633,5814,5967,5569,5421,4576,5121,5214,6683,7278,5826,5779,6280,5554,4622,4132,4729,3391,3099,3914,5233,4918,3869,3136,2843,2084,1748,916,454,198,164,74,56,83,82,55
-2019F,NC,RFTCP,4603,4801,3705,3314,3726,4723,5262,5365,4673,6015,6778,10409,15870,15892,13699,7779,12790,14685,12355,11997,9058,5621,5756,5802,7906,6233,6338,6281,6119,5465,5857,6073,7446,7985,6299,6263,6832,5999,4884,4364,4969,3623,3972,4904,5910,5568,4223,3756,3618,2779,2139,1211,458,199,170,85,79,111,110,98
-2019F,NC,RFTXP,4584,4786,3692,3300,3705,4707,5243,5357,4631,5851,6332,9310,11758,9825,8887,7542,12165,14356,11039,11762,9058,5621,5755,5802,7906,6233,6338,6281,6119,5465,5857,6073,7446,7985,6299,6263,6828,5999,4884,4364,4969,3623,3972,4904,5910,5568,4223,3756,3618,2779,2139,1211,458,199,170,85,79,111,110,98
-2019F,NC,SGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,114,136,139,136,130,0,39,0,0,0,0,47,49,50,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,SNICP,0,0,0,0,230,250,330,275,295,323,343,533,571,577,573,493,496,517,622,630,606,593,552,648,867,666,543,605,477,449,448,408,485,485,376,329,417,405,600,814,545,527,687,540,342,419,470,524,570,310,175,152,99,679,720,674,635,787,722,750
-2019F,NC,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,5,6,15,40,106,139,143,238,229,228,233
-2019F,NC,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,11,17,138,297,652,1296,3296,4996,5999,7342
-2019F,NC,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,7,7,7
-2019F,NC,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,3,5,11,19,51,67,89,143
-2019F,NC,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,12,20,35,181,409,803,1460,3589,5300,6323,7725
-2019F,NC,TPOPP,4573,4663,4707,4742,4802,4863,4896,4952,5004,5031,5098,5204,5301,5390,5471,5547,5608,5686,5759,5823,5899,5957,6019,6077,6164,6254,6322,6404,6481,6565,6664,6784,6897,7043,7187,7345,7501,7657,7809,7949,8082,8210,8326,8423,8553,8705,8917,9118,9309,9450,9575,9659,9752,9847,9937,10037,10162,10276,10391,10501
-2019F,NC,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-12,0,0,0,0,-12,-10,-13,-13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,WXICP,11,11,10,9,9,9,43,43,48,51,51,63,65,83,81,73,155,130,134,131,128,142,111,121,120,123,119,128,133,131,130,222,236,254,257,257,370,333,323,285,252,288,255,246,244,249,210,176,154,98,137,121,123,138,124,103,108,87,106,89
-2019F,NC,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,471,543,523
-2019F,NC,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NC,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,471,543,523
-2019F,NC,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,1,0,3,0,0,-1,0,0,0,0,0,5,4,5,7,3,5,3,4,5,5,7,6,0,1,0,-1,0,0,0,0,0,0,0,0,-1,-1
-2019F,ND,ARICP,1123,852,803,1149,940,795,920,1393,1308,1335,1402,1716,1211,1514,1335,1054,1095,911,1143,919,753,745,761,1090,996,1047,877,884,956,924,814,778,1465,915,1252,791,911,1241,1440,2097,1108,1331,1111,665,1025,1366,1829,567,526,944,996,1500,1053,1727,1676,1066,748,1017,929,742
-2019F,ND,ARTCP,1123,852,803,1149,940,795,920,1393,1308,1335,1402,1716,1211,1514,1335,1054,1095,911,1143,919,753,745,761,1090,996,1047,877,884,956,924,814,778,1465,915,1252,791,911,1241,1440,2097,1108,1331,1111,665,1025,1366,1829,567,526,944,996,1500,1053,1727,1676,1066,748,1017,929,742
-2019F,ND,ARTXP,1123,852,803,1149,940,795,920,1393,1308,1335,1402,1716,1211,1514,1335,1054,1095,911,1143,919,753,745,761,1090,996,1047,877,884,956,924,814,778,1465,915,1252,791,911,1241,1440,2097,1108,1331,1111,665,1025,1366,1829,567,526,944,996,1500,1053,1727,1676,1066,748,1017,929,742
-2019F,ND,AVACP,66,63,156,138,163,165,142,130,128,92,95,113,96,93,92,85,85,79,97,102,64,47,35,24,31,4,37,29,32,31,28,28,28,62,43,65,50,33,43,39,34,86,58,70,64,66,43,37,38,34,43,48,25,21,42,40,39,41,47,48
-2019F,ND,AVTCP,66,63,156,138,163,165,142,130,128,92,95,113,96,93,92,85,85,79,97,102,64,47,35,24,31,4,37,29,32,31,28,28,28,62,43,65,50,33,43,39,34,86,58,70,64,66,43,37,38,34,43,48,25,21,42,40,39,41,47,48
-2019F,ND,AVTXP,66,63,156,138,163,165,142,130,128,92,95,113,96,93,92,85,85,79,97,102,64,47,35,24,31,4,37,29,32,31,28,28,28,62,43,65,50,33,43,39,34,86,58,70,64,66,43,37,38,34,43,48,25,21,42,40,39,41,47,48
-2019F,ND,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,5,10,35,102,138,118,125,101,345,388,688,689,444,519,529,501,383
-2019F,ND,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,5,10,35,102,138,118,125,101,345,388,688,689,444,519,529,501,383
-2019F,ND,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,CLACP,9,2,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,CLCCP,228,213,208,169,145,133,140,121,100,81,63,63,59,62,115,107,91,133,210,149,113,139,177,199,203,154,136,80,108,138,108,111,99,112,118,96,129,125,105,113,119,119,128,147,226,239,94,236,104,97,90,89,73,88,74,72,58,54,58,53
-2019F,ND,CLEIP,1014,1131,1102,956,1065,964,1730,2415,2878,2900,3519,4486,4896,4830,5200,4377,6423,7404,8746,10138,11618,12358,14100,15386,16953,17354,17291,17434,21686,20538,21579,22174,23192,23290,23248,22680,23640,22754,24278,24540,25048,24795,25247,25173,23915,25317,24298,24639,24893,24593,23113,22056,22795,22289,22289,22786,21807,22210,23102,21329
-2019F,ND,CLICP,521,430,360,372,421,444,464,453,359,510,523,439,435,342,326,570,372,484,688,774,585,491,664,566,2452,5407,6120,6563,6204,6688,6400,6287,6988,6875,6976,7447,6724,6465,6664,6608,6719,6595,6592,6628,5913,6467,6671,6440,6379,6493,6657,6447,6555,6133,6452,6619,6505,6540,6599,5810
-2019F,ND,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,CLOCP,521,430,360,372,421,444,464,453,359,510,523,439,435,342,326,570,372,484,688,774,585,491,664,566,2452,5407,6120,6563,6204,6688,6400,6287,6988,6875,6976,7447,6724,6465,6664,6608,6719,6595,6592,6628,5913,6467,6671,6440,6379,6493,6657,6447,6555,6133,6452,6619,6505,6540,6599,5810
-2019F,ND,CLRCP,328,307,299,233,201,177,185,160,128,103,80,60,44,37,54,46,37,52,63,37,30,30,36,38,48,43,40,24,31,37,27,24,22,25,21,14,18,15,13,15,15,15,17,22,25,21,9,26,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,CLTCP,2100,2082,1971,1732,1834,1719,2520,3150,3466,3595,4186,5049,5434,5272,5696,5100,6924,8073,9706,11099,12346,13018,14977,16190,19656,22958,23587,24101,28029,27401,28114,28597,30301,30302,30363,30237,30511,29360,31060,31276,31902,31524,31984,31970,30079,32044,31073,31340,31376,31183,29861,28592,29423,28510,28816,29477,28370,28804,29760,27192
-2019F,ND,CLTXP,1086,951,869,776,769,755,790,735,587,695,666,562,538,441,496,723,501,669,960,961,728,660,877,803,2703,5604,6296,6667,6343,6863,6535,6423,7109,7012,7115,7557,6871,6605,6782,6736,6853,6729,6737,6797,6164,6727,6775,6702,6482,6590,6748,6536,6628,6221,6527,6691,6563,6593,6658,5863
-2019F,ND,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,DFACP,592,665,1072,1020,1028,916,1320,1459,1634,1527,1441,1744,1861,2050,1812,1880,1962,2536,2662,3376,3795,3168,3222,3060,3025,3009,2803,3036,3122,2956,2990,3194,3159,3435,3837,4014,4241,4409,3728,4386,4158,4632,4733,4870,5037,5380,5489,7338,5887,5128,6133,8201,10130,10700,11774,10260,8631,9516,10376,9991
-2019F,ND,DFCCP,198,197,218,225,214,288,325,317,322,309,250,202,230,184,183,176,148,100,102,362,642,392,210,423,519,502,330,266,162,217,175,159,156,144,175,148,208,257,269,234,232,262,142,183,180,141,149,160,229,198,421,1058,899,1125,1208,306,218,326,315,232
-2019F,ND,DFEIP,4,4,3,2,1,1,0,3,6,3,7,5,8,4,2,2,18,21,26,145,68,91,88,98,163,74,57,50,46,72,57,69,58,69,112,99,155,153,89,81,95,64,65,95,74,70,78,96,81,80,69,81,64,64,52,49,59,69,74,68
-2019F,ND,DFICP,2104,1970,2228,2335,2360,2696,2819,2748,2715,2711,2174,2080,2091,1701,1614,1613,1296,999,991,2844,2460,2973,2816,2371,2912,2890,3247,2834,2597,3242,3016,3056,2917,2962,2945,3027,2912,2613,2563,2362,2756,3420,2839,2881,3532,3747,3787,3871,5018,3942,6091,8660,9609,11118,12363,7875,5656,7638,7992,7677
-2019F,ND,DFRCP,874,867,963,992,942,1269,1432,1397,1419,1363,1103,891,1016,811,809,776,655,441,448,1596,1173,1065,912,915,1124,1162,1112,986,1016,1064,981,900,637,754,667,717,818,602,532,485,564,492,424,517,582,460,462,470,670,319,255,193,140,171,155,129,132,137,129,142
-2019F,ND,DFTCP,3773,3703,4484,4573,4545,5170,5896,5924,6096,5913,4975,4923,5206,4750,4421,4446,4079,4097,4229,8323,8139,7689,7248,6867,7743,7637,7548,7172,6943,7550,7219,7377,6926,7363,7736,8005,8334,8034,7181,7548,7805,8869,8202,8548,9405,9798,9966,11934,11885,9668,12968,18193,20842,23178,25552,18618,14696,17686,18886,18109
-2019F,ND,DFTXP,3769,3699,4481,4571,4544,5169,5896,5921,6091,5910,4968,4917,5198,4746,4419,4444,4062,4075,4203,8178,8071,7599,7160,6769,7581,7563,7491,7122,6897,7477,7162,7309,6868,7294,7624,7906,8179,7881,7091,7467,7709,8805,8137,8452,9331,9728,9887,11838,11804,9587,12900,18112,20777,23114,25500,18569,14637,17616,18811,18041
-2019F,ND,ELEXP,0,0,0,0,1,1,1,1,1,1,3,3,1,4,2,7,255,854,43,0,194,674,495,71,39,59,22,186,437,195,230,90,7,232,124,54,60,152,424,341,790,940,1238,1664,1409,459,1251,328,606,610,478,381,217,127,158,36,10,25,150,951
-2019F,ND,ELIMP,0,0,0,0,0,0,0,0,0,0,296,687,845,989,1357,1173,703,428,2222,3273,3045,3689,5097,5723,4781,2704,999,1569,827,249,250,254,682,1300,1095,785,927,270,224,181,1436,1510,1414,1251,1513,2162,2008,1660,1414,1349,1597,1672,1557,1961,1869,2018,2076,2160,1164,1310
-2019F,ND,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-19156,-19716,-21420,-21357,-21513,-20862,-22437,-20688,-21290,-21012,-21404,-20045,-20107,-19261,-18234,-21553,-19125,-19491,-19965,-21160,-21797,-21517,-21534,-19538,-18577,-19644,-20019,-22095,-21598,-18543
-2019F,ND,ELNIP,0,0,0,0,-1,-1,-1,-1,-1,-1,293,684,844,985,1355,1166,448,-426,2180,3273,2850,3015,4602,5651,4743,2645,977,1383,390,55,20,163,675,1067,972,731,868,118,-200,-160,647,570,175,-414,104,1702,756,1332,808,740,1120,1292,1341,1833,1711,1982,2066,2135,1014,360
-2019F,ND,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,13,9,11,60,125,134,96,98,76,115,135,135,159,151,113,112,108,117,141,168,213,254,222,491,470,583,714,757,947,941,1011,1061,1108,1113,1046,1036,1029,1054
-2019F,ND,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,2,2,10,10,11,11,11
-2019F,ND,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,1,1,8,15,18,11,11,8,12,13,12,14,13,8,6,7,6,8,11,15,18,20,38,41,42,39,41,31,31,28,30,26,42,38,38,38,37
-2019F,ND,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,15,10,12,69,142,153,108,110,85,127,148,147,174,164,122,119,116,123,149,179,228,273,243,530,512,626,755,800,981,974,1041,1093,1136,1165,1095,1085,1077,1102
-2019F,ND,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,ESCCP,304,356,374,401,419,443,589,601,611,661,696,667,723,812,835,805,871,897,1118,1146,1145,1243,1347,1264,1950,2026,2005,1970,1987,1989,2300,2397,2273,2318,2427,2728,2877,2769,2761,2793,2992,3577,3920,3800,3843,3994,4127,4215,4460,4558,4714,4866,5109,5685,5403,6279,6346,6530,6836,7035
-2019F,ND,ESICP,121,134,161,198,220,241,421,466,565,614,720,849,1023,1222,1210,1007,1049,1175,1418,1572,1576,1677,1736,1773,1839,1988,1890,1839,2070,2013,1760,1762,1835,1905,2011,1771,1835,2076,2187,3013,3031,2753,2636,2954,3010,3050,3266,3624,3697,3641,3850,4319,5124,5309,7479,6988,7433,8762,8700,9399
-2019F,ND,ESRCP,728,710,755,800,847,911,1087,1131,1214,1294,1399,1472,1598,1623,1739,1901,2050,2148,2399,2516,2456,2651,2900,2702,2953,3012,2954,2788,3050,3060,2954,3096,3020,3209,3243,3384,3602,3437,3272,3307,3390,3480,3664,3707,3663,3796,3853,4067,4259,4449,4393,4552,4485,5039,5358,4863,4741,4848,5133,5125
-2019F,ND,ESRPP,1148,1108,1185,1242,1305,1404,1679,1807,1954,2083,2257,2348,2533,2565,2740,2975,3175,3306,3683,3854,3753,4019,4335,3992,4340,4449,4412,4217,4654,4735,4632,4870,4732,5005,5029,5223,5538,5290,5053,5133,5280,5445,5741,5804,5681,5875,5933,6230,6477,6691,6510,6640,6386,6968,7252,6436,6271,6407,6754,6711
-2019F,ND,ESTCP,1153,1201,1290,1399,1486,1596,2097,2198,2389,2569,2815,2988,3344,3656,3784,3712,3970,4220,4935,5234,5177,5571,5983,5739,6743,7026,6849,6597,7107,7062,7014,7255,7128,7432,7681,7883,8314,8282,8220,9112,9413,9810,10219,10461,10516,10840,11245,11906,12416,12649,12956,13737,14717,16033,18240,18129,18520,20140,20670,21559
-2019F,ND,ESTPP,1818,1874,2026,2172,2290,2459,3240,3512,3847,4137,4541,4768,5299,5779,5963,5811,6148,6495,7577,8017,7911,8448,8943,8481,9909,10378,10230,9978,10845,10925,10999,11412,11169,11590,11912,12168,12784,12748,12695,14144,14662,15350,16014,16376,16312,16778,17316,18237,18882,19021,19202,20039,20958,22171,24690,23995,24494,26614,27194,28229
-2019F,ND,ESTXP,1153,1201,1290,1399,1486,1596,2097,2198,2389,2569,2815,2988,3344,3656,3784,3712,3970,4220,4935,5234,5177,5571,5983,5739,6743,7026,6849,6597,7107,7062,7014,7255,7128,7432,7681,7883,8314,8282,8220,9112,9413,9810,10219,10461,10516,10840,11245,11906,12416,12649,12956,13737,14717,16033,18240,18129,18520,20140,20670,21559
-2019F,ND,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,FSICP,0,0,0,35,35,41,50,47,46,45,53,67,56,46,57,62,65,61,72,48,56,27,28,36,47,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,HLACP,29,30,41,49,31,22,44,58,71,26,3,3,3,2,2,2,3,4,7,7,12,120,162,193,20,11,23,14,16,18,14,15,16,18,20,13,21,12,4,9,5,8,10,25,33,23,19,19,33,54,4,4,2,3,3,3,3,1,2,5
-2019F,ND,HLCCP,152,153,158,165,146,146,168,171,211,240,247,243,254,231,226,228,245,228,261,149,99,126,72,86,25,33,120,123,145,162,126,188,209,147,134,149,182,293,210,278,339,387,347,211,191,343,329,365,488,418,276,403,463,834,525,597,621,627,352,565
-2019F,ND,HLICP,257,299,273,390,284,240,244,198,262,267,206,224,278,198,204,189,168,199,360,797,690,563,842,737,306,340,973,1010,706,743,644,862,483,455,480,830,1093,734,691,972,1283,3057,1279,719,1286,1180,1031,1230,674,894,761,462,572,1006,900,767,691,1050,859,1205
-2019F,ND,HLRCP,774,781,808,842,746,746,854,873,1078,1223,1261,1240,1297,1176,1152,1161,1247,1163,1333,759,502,642,369,439,126,166,613,627,739,824,642,960,1063,750,682,762,929,1494,1070,1416,1727,1973,1770,1820,1801,1825,1386,1408,1652,1583,1508,1655,1336,1494,1676,1422,1352,1352,1656,2139
-2019F,ND,HLTCP,1212,1264,1280,1446,1208,1154,1310,1300,1622,1755,1719,1709,1832,1607,1584,1580,1663,1594,1962,1711,1302,1451,1446,1455,477,549,1730,1773,1606,1747,1426,2025,1771,1369,1316,1754,2226,2534,1976,2675,3354,5426,3406,2775,3311,3370,2766,3023,2847,2950,2549,2524,2373,3337,3104,2789,2666,3030,2870,3915
-2019F,ND,HLTXP,1212,1264,1280,1446,1208,1154,1310,1300,1622,1755,1719,1709,1832,1607,1584,1580,1663,1594,1962,1711,1302,1451,1446,1455,477,549,1730,1773,1606,1747,1426,2025,1771,1369,1316,1754,2226,2534,1976,2675,3354,5426,3406,2775,3311,3370,2766,3023,2847,2950,2549,2524,2373,3337,3104,2789,2666,3030,2870,3915
-2019F,ND,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,HYEGP,1060,1407,1293,1483,1878,2497,1929,2771,2499,2939,2815,3235,3095,2382,2729,3345,3272,1994,3034,2736,2513,2250,2553,2377,2362,2173,2326,1982,1884,1893,1711,1757,1699,1415,1856,2457,3151,3320,2296,2609,2123,1332,1593,1724,1546,1342,1521,1305,1253,1475,2042,2580,2477,1852,2531,2094,1912,2582,3180,3179
-2019F,ND,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,HYTCP,1060,1407,1293,1483,1878,2497,1929,2771,2499,2939,2815,3235,3095,2382,2729,3345,3272,1994,3034,2736,2513,2250,2553,2377,2362,2173,2326,1982,1884,1893,1711,1757,1699,1415,1856,2457,3151,3320,2296,2609,2123,1332,1593,1724,1546,1342,1521,1305,1253,1475,2042,2580,2477,1852,2531,2094,1912,2582,3180,3179
-2019F,ND,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,JFACP,2103,2138,2308,2375,2455,2069,2151,2385,2795,2513,2074,2225,2044,1857,1941,1855,1800,1905,1837,1824,1702,1629,1583,1495,1707,1682,1646,1254,1315,1336,1178,964,1405,1254,846,333,246,189,211,405,413,751,528,558,1093,646,735,710,613,687,375,394,418,478,562,577,559,533,494,541
-2019F,ND,JFTCP,2103,2138,2308,2375,2455,2069,2151,2385,2795,2513,2074,2225,2044,1857,1941,1855,1800,1905,1837,1824,1702,1629,1583,1495,1707,1682,1646,1254,1315,1336,1178,964,1405,1254,846,333,246,189,211,405,413,751,528,558,1093,646,735,710,613,687,375,394,418,478,562,577,559,533,494,541
-2019F,ND,JFTXP,2103,2138,2308,2375,2455,2069,2151,2385,2795,2513,2074,2225,2044,1857,1941,1855,1800,1905,1837,1824,1702,1629,1583,1495,1707,1682,1646,1254,1315,1336,1178,964,1405,1254,846,333,246,189,211,405,413,751,528,558,1093,646,735,710,613,687,375,394,418,478,562,577,559,533,494,541
-2019F,ND,KSCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,1,1,0,1,0,1,1,1,2,1,1,1,1,2,1,1,2,3,3,1,1,1,2,1,0,1,1,1,1,0,0,0
-2019F,ND,KSICP,44,15,10,9,14,12,22,72,11,11,55,55,46,45,80,49,35,48,59,0,10,0,0,2,2,1,8,1,6,1,1,2,0,1,1,0,1,1,1,1,7,2,1,2,2,2,1,5,1,1,1,1,0,0,0,0,0,0,0,0
-2019F,ND,KSRCP,860,828,851,930,910,40,59,120,107,108,190,184,139,91,23,21,27,24,17,0,5,14,22,18,14,14,8,6,8,10,5,7,6,8,6,4,5,5,6,17,3,4,2,3,5,7,3,2,1,3,3,2,1,1,1,1,3,1,1,1
-2019F,ND,KSTCP,904,843,861,939,923,52,81,192,118,119,245,239,185,136,103,70,61,71,76,0,15,14,26,21,17,15,16,8,15,11,6,10,7,10,7,5,8,7,8,19,11,8,4,5,9,11,7,9,3,5,6,3,1,2,3,2,4,2,1,2
-2019F,ND,KSTXP,904,843,861,939,923,52,81,192,118,119,245,239,185,136,103,70,61,71,76,0,15,14,26,21,17,15,16,8,15,11,6,10,7,10,7,5,8,7,8,19,11,8,4,5,9,11,7,9,3,5,6,3,1,2,3,2,4,2,1,2
-2019F,ND,LUACP,158,154,162,162,170,147,152,123,135,135,138,128,137,105,100,137,152,151,163,170,151,145,132,139,148,138,135,152,147,151,155,139,141,144,151,148,144,152,159,160,158,145,143,132,134,133,130,134,125,112,108,128,139,150,163,158,129,125,123,116
-2019F,ND,LUICP,44,43,22,22,23,20,21,22,24,27,28,20,21,54,52,21,23,26,28,29,26,25,23,24,25,24,23,26,25,26,27,24,24,25,26,25,25,26,27,28,27,25,25,23,23,23,22,23,21,19,104,152,207,225,262,217,164,160,183,175
-2019F,ND,LUTCP,202,196,184,184,193,167,173,145,160,163,166,147,158,159,152,158,176,177,190,199,177,170,155,163,173,162,158,179,172,177,182,163,166,169,176,173,168,178,186,188,185,170,168,155,157,156,152,157,146,131,212,280,346,375,425,375,293,284,306,291
-2019F,ND,LUTXP,202,196,184,184,193,167,173,145,160,163,166,147,158,159,152,158,176,177,190,199,177,170,155,163,173,162,158,179,172,177,182,163,166,169,176,173,168,178,186,188,185,170,168,155,157,156,152,157,146,131,212,280,346,375,425,375,293,284,306,291
-2019F,ND,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-180,-145,-107,-52,-152,-210,-94,-43,42,40,-19,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,MGACP,4760,4531,4962,5124,5172,5499,5424,5562,5864,5938,6300,6586,7109,7538,7260,7756,8236,8398,8777,7899,7553,8280,7953,7786,8004,7673,7584,7736,7619,7518,7282,7427,7477,7798,7679,7955,8098,8168,8098,8255,8060,7941,7993,8083,7875,8080,7759,8054,8241,8439,8928,9427,10019,10412,10916,10678,10097,9954,9971,10028
-2019F,ND,MGCCP,32,35,35,33,45,179,194,136,151,106,151,158,114,109,108,95,79,76,81,71,73,80,82,85,20,69,71,73,73,61,70,44,37,10,10,10,10,10,21,22,10,10,10,19,10,10,20,17,17,19,20,13,20,21,19,97,99,101,102,103
-2019F,ND,MGICP,2927,2778,2855,2887,2883,2533,2578,2466,2495,2458,2315,2437,2353,2346,2262,2193,2096,1956,1924,1824,1540,1164,1305,1147,843,1080,924,1028,896,819,799,784,720,674,698,685,575,450,562,434,443,527,550,573,717,626,676,577,445,457,296,314,280,297,259,402,368,370,363,354
-2019F,ND,MGTCP,7719,7343,7852,8044,8100,8212,8196,8164,8510,8502,8766,9182,9575,9993,9630,10044,10411,10430,10782,9795,9167,9523,9340,9017,8867,8822,8580,8837,8588,8398,8151,8255,8233,8482,8387,8650,8683,8628,8681,8711,8512,8478,8554,8675,8603,8716,8455,8648,8703,8915,9244,9753,10319,10731,11194,11177,10564,10425,10437,10485
-2019F,ND,MGTXP,7719,7343,7852,8044,8100,8212,8196,8164,8510,8502,8766,9182,9575,9993,9630,10044,10411,10430,10782,9795,9167,9523,9340,9017,8867,8822,8580,8837,8588,8398,8151,8255,8233,8482,8387,8650,8683,8628,8681,8711,8512,8478,8554,8675,8603,8716,8455,8648,8703,8915,9244,9753,10319,10731,11194,11177,10564,10425,10437,10485
-2019F,ND,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,NGACP,7,6,35,5,2,2,4,11,6,6,5,10,263,14,32,61,79,71,106,102,171,174,482,658,481,704,308,961,1724,1805,1771,2012,2757,4277,4283,4717,4826,5066,456,9560,10627,13629,14298,14192,14128,13309,13024,13318,11485,8870,13746,13576,15620,14931,15446,14303,14390,18663,20583,17332
-2019F,ND,NGCCP,2850,3143,4032,4585,4221,4963,6194,6059,7072,7444,8315,9059,9874,9875,11528,12425,12202,11234,11845,12044,11026,9419,11361,9828,9961,10118,9084,7908,9827,10609,10236,10732,9759,10642,10783,11644,12150,10870,10082,10023,11060,10456,11675,10952,10473,9903,9355,10296,11101,10987,10302,10973,10364,13236,13999,12317,11810,12957,14454,15455
-2019F,ND,NGEIP,103,32,276,50,20,25,22,23,31,75,362,376,328,349,59,157,43,45,21,17,15,20,17,11,10,2,2,3,2,1,2,1,1,1,3,1,3,1,0,0,0,3,1,0,3,1,2,2,1,1,2,0,1,337,1888,6546,11320,7223,9873,14877
-2019F,ND,NGICP,19652,20970,21919,22784,23605,20855,18857,19298,18775,17496,15849,15630,15662,13986,14284,13983,18671,16136,14678,5485,1992,15874,5578,5944,9728,6919,6726,7892,7915,7913,11298,16706,14402,14352,17152,17847,19513,29152,28915,26267,23885,26161,29028,23886,24248,19145,21310,25139,29010,23187,31809,36976,37162,41005,43042,54005,54744,59582,68734,75681
-2019F,ND,NGRCP,3819,4168,4699,4859,5542,6592,6723,6467,7169,7661,8186,8502,10346,8204,9556,10200,10182,10164,12417,11588,9644,8958,10932,9685,9974,10353,9351,8063,9147,9824,9183,10338,9693,10717,10661,11209,12591,11370,10092,10573,10963,10570,11725,11876,11132,10692,9644,10698,11500,11518,10536,10937,9594,12085,12505,10552,10059,11015,12681,13124
-2019F,ND,NGTCP,26431,28319,30961,32283,33390,32437,31800,31858,33053,32682,32717,33577,36473,32428,35459,36826,41177,37650,39067,29236,22848,34445,28370,26126,30154,28096,25471,24827,28615,30152,32490,39789,36612,39988,42882,45418,49084,56460,49545,56423,56533,60819,66726,60907,59986,53050,53336,59453,63096,54564,66394,72462,72741,81594,86881,97723,102323,109440,126325,136469
-2019F,ND,NGTPP,41.7,44.2,48.6,50.1,51.4,50,49.1,50.9,53.2,52.6,52.8,53.6,57.8,51.3,55.9,57.6,63.8,57.9,60,44.8,34.9,52.2,42.4,38.6,44.3,41.5,38,37.6,43.7,46.6,50.9,62.6,57.4,62.4,66.5,70.1,75.5,86.9,76.5,87.6,88.1,95.2,104.6,95.3,93,82.1,82.1,91.1,96,82.1,98.4,105.7,103.6,112.8,117.6,129.3,135.3,144.6,166.2,178.7
-2019F,ND,NGTXP,26328,28287,30685,32233,33370,32412,31778,31835,33022,32607,32355,33201,36145,32079,35400,36669,41134,37605,39046,29219,22833,34425,28353,26115,30144,28094,25469,24824,28613,30152,32488,39788,36611,39987,42879,45417,49081,56458,49545,56423,56533,60816,66726,60907,59982,53050,53334,59451,63096,54562,66393,72462,72740,81257,84992,91177,91003,102217,116452,121592
-2019F,ND,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,OPICP,620,599,600,615,639,662,727,736,746,760,744,717,713,705,759,754,736,730,791,796,774,405,399,547,552,465,464,571,720,745,746,603,764,672,743,701,847,841,673,680,616,842,790,871,852,899,986,961,859,827,882,927,1066,1023,989,1266,1297,1331,1258,1282
-2019F,ND,OPTCP,620,599,600,615,639,662,727,736,746,760,744,717,713,705,759,754,736,730,791,796,774,405,399,547,552,465,464,571,720,745,746,603,764,672,743,701,847,841,673,680,616,842,790,871,852,899,986,961,859,827,882,927,1066,1023,989,1266,1297,1331,1258,1282
-2019F,ND,OPTXP,620,599,600,615,639,662,727,736,746,760,744,717,713,705,759,754,736,730,791,796,774,405,399,547,552,465,464,571,720,745,746,603,764,672,743,701,847,841,673,680,616,842,790,871,852,899,986,961,859,827,882,927,1066,1023,989,1266,1297,1331,1258,1282
-2019F,ND,P1ICP,2005,1683,1582,1958,1817,1702,1921,2471,2328,2333,2456,2741,2301,2720,2554,2219,2220,2016,2332,2035,1836,1451,1479,2022,1949,1896,1767,1878,2112,2104,1979,1790,2664,2037,2430,1923,2190,2508,2542,3233,2179,2602,2335,1967,2287,2700,3227,1924,1758,2152,2362,2967,2735,3365,3277,2913,2585,2881,2737,2546
-2019F,ND,P1TCP,3089,2727,2751,3188,3059,2054,2275,2844,2698,2668,2879,3166,2673,3009,2769,2463,2484,2271,2608,2307,2057,1657,1672,2204,2143,2051,1947,2066,2300,2297,2168,1965,2840,2253,2631,2141,2391,2698,2751,3451,2375,2839,2540,2173,2491,2909,3406,2098,1923,2302,2518,3144,2900,3537,3485,3113,2757,3048,2908,2712
-2019F,ND,P1TXP,3089,2727,2751,3188,3059,2054,2275,2844,2698,2668,2879,3166,2673,3009,2769,2463,2484,2271,2608,2307,2057,1657,1672,2204,2143,2051,1947,2066,2300,2297,2168,1965,2840,2253,2631,2141,2391,2698,2751,3451,2375,2839,2540,2173,2491,2909,3406,2098,1923,2302,2518,3144,2900,3537,3485,3113,2757,3048,2908,2712
-2019F,ND,PAACP,7778,7605,8722,8874,9020,8843,9286,9786,10712,10308,10092,10817,11249,11646,11207,11715,12239,13073,13542,13422,13278,13390,13401,12696,12936,12517,12229,12222,12251,12010,11647,11767,12226,12710,12575,12528,12800,12963,12243,13255,12829,13562,13465,13738,14237,14327,14176,16291,14938,14455,15590,18201,20733,21764,23461,21717,19457,20169,21014,20729
-2019F,ND,PACCP,455,418,424,445,503,822,861,690,703,712,752,674,765,748,1052,992,934,748,837,1012,1214,658,577,733,656,668,600,497,427,467,394,400,414,318,334,328,409,570,517,549,594,698,594,515,402,543,513,570,746,637,721,1494,1398,1983,1754,1001,938,1055,770,900
-2019F,ND,PAEIP,20,20,14,10,4,3,2,15,27,12,32,219,38,14,21,20,47,96,74,207,68,91,88,98,163,74,57,50,46,72,57,69,58,69,112,99,155,153,89,81,95,64,68,95,74,70,78,96,81,80,69,81,64,64,52,49,59,69,74,68
-2019F,ND,PAICP,7823,7234,7429,8098,7921,7804,8046,8302,8292,8184,7710,7834,7604,7629,7255,6792,6322,5707,6072,7875,6842,7209,7049,7645,6923,6646,7209,7071,6614,7175,6742,6789,7059,6506,6877,6610,6899,6482,6386,7048,6726,9639,7007,6183,7867,8463,8815,7670,7976,7506,9548,12441,13203,15786,16801,11957,9301,11939,11951,11782
-2019F,ND,PARCP,2508,2476,2622,2764,2598,2055,2346,2390,2604,2694,2555,2315,2451,2078,1985,1958,1929,1628,1798,2355,1681,1722,1304,1373,1265,1342,1732,1618,1763,1898,1628,1867,1706,1511,1355,1482,1752,2102,1608,1917,2294,2469,2197,2340,2387,2292,1851,1880,2323,1905,1767,1850,1476,1666,1832,1552,1487,1489,1786,2283
-2019F,ND,PATCP,18583,17754,19210,20191,20045,19526,20541,21183,22338,21910,21141,21859,22107,22115,21519,21477,21471,21252,22324,24871,23083,23069,22418,22546,21944,21246,21827,21458,21101,21622,20468,20891,21463,21114,21254,21047,22015,22270,20844,22850,22538,26432,23331,22871,24966,25695,25433,26507,26064,24583,27694,34068,36874,41264,43900,36276,31242,34721,35594,35762
-2019F,ND,PATPP,29.3,27.7,30.2,31.4,30.9,30.1,31.7,33.8,36,35.3,34.1,34.9,35,35,33.9,33.6,33.2,32.7,34.3,38.1,35.3,35,33.5,33.3,32.2,31.4,32.6,32.5,32.2,33.5,32.1,32.9,33.6,32.9,33,32.5,33.8,34.3,32.2,35.5,35.1,41.4,36.6,35.8,38.7,39.8,39.2,40.6,39.6,37,41,49.7,52.5,57.1,59.4,48,41.3,45.9,46.8,46.8
-2019F,ND,PATXP,18563,17734,19196,20181,20041,19523,20539,21168,22311,21898,21109,21641,22069,22102,21498,21457,21423,21156,22250,24664,23015,22979,22330,22447,21781,21173,21770,21408,21055,21550,20411,20822,21405,21046,21142,20948,21860,22117,20755,22769,22443,26368,23263,22776,24893,25625,25355,26411,25983,24503,27626,33987,36810,41200,43848,36227,31183,34651,35520,35694
-2019F,ND,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,PCICP,174,174,147,163,201,213,231,248,239,200,227,233,310,401,328,341,330,302,311,291,274,277,296,360,374,359,395,395,405,408,391,383,410,425,408,406,407,398,401,427,421,402,408,407,385,411,389,368,351,362,379,387,407,390,351,364,376,374,367,347
-2019F,ND,PCTCP,174,174,147,163,201,213,231,248,239,200,227,233,310,401,328,341,330,302,311,291,274,277,296,360,374,359,395,395,405,408,391,383,410,425,408,406,407,398,401,427,421,402,408,407,385,411,389,368,351,362,379,387,407,390,351,364,376,374,367,347
-2019F,ND,PCTXP,174,174,147,163,201,213,231,248,239,200,227,233,310,401,328,341,330,302,311,291,274,277,296,360,374,359,395,395,405,408,391,383,410,425,408,406,407,398,401,427,421,402,408,407,385,411,389,368,351,362,379,387,407,390,351,364,376,374,367,347
-2019F,ND,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,2,3,3,3,3,1,2,5
-2019F,ND,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,276,403,463,834,525,597,621,627,352,565
-2019F,ND,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,761,462,572,1006,900,767,691,1050,859,1205
-2019F,ND,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1508,1655,1336,1494,1676,1422,1352,1352,1656,2139
-2019F,ND,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2549,2524,2373,3337,3104,2789,2666,3030,2870,3915
-2019F,ND,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2549,2524,2373,3337,3104,2789,2666,3030,2870,3915
-2019F,ND,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,ND,RFACP,69,24,21,6,0,25,53,69,85,78,41,18,0,0,0,0,0,0,0,44,0,0,313,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,RFCCP,73,34,12,22,98,209,175,66,18,57,104,71,167,225,534,493,462,344,394,430,400,60,208,139,93,64,78,33,46,27,22,7,12,16,15,19,6,9,16,15,12,36,94,100,18,46,10,26,12,1,2,20,15,2,2,1,0,0,0,0
-2019F,ND,RFEIP,15,15,11,8,4,2,2,11,21,10,25,213,29,10,19,18,30,75,47,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,RFICP,530,504,491,529,577,632,484,419,492,415,558,352,581,665,621,577,541,536,465,375,315,1058,607,1368,913,440,297,322,303,267,304,297,276,378,323,145,129,178,27,46,66,33,4,43,45,210,95,68,80,60,38,39,7,0,1,1,0,0,0,0
-2019F,ND,RFTCP,687,578,536,565,679,868,713,565,616,559,728,654,777,899,1174,1089,1033,955,906,910,716,1119,1129,1508,1006,505,377,355,349,294,326,304,287,394,338,164,135,187,44,61,78,69,101,143,63,256,105,94,92,61,40,59,22,2,2,1,0,0,0,0
-2019F,ND,RFTXP,672,562,524,557,675,866,712,554,595,549,702,441,747,890,1155,1071,1004,880,858,849,716,1119,1129,1508,1006,505,377,355,349,294,326,304,287,394,338,164,135,187,44,61,78,69,98,143,63,256,105,94,92,61,40,59,22,2,2,1,0,0,0,0
-2019F,ND,SGICP,620,599,600,580,603,621,676,689,700,715,691,650,656,659,701,692,671,668,719,749,718,746,729,747,780,795,908,906,948,957,952,921,947,940,923,908,916,900,865,851,858,873,857,886,879,881,883,857,821,835,840,871,1008,1012,1046,1282,1290,1265,1234,1171
-2019F,ND,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,57,62,34,19,17,11,0,0,0,0,0,0,0
-2019F,ND,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-2019F,ND,TPOPP,634,641,637,644,649,649,647,626,621,621,620,627,631,633,635,639,646,650,651,653,654,660,669,677,680,677,670,661,655,646,638,636,638,641,645,648,650,650,648,644,642,639,638,639,645,646,649,653,658,665,675,686,702,723,739,756,756,757,760,764
-2019F,ND,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-191,-216,-129,-223,-230,-235,-240,-184,-254,-246,-300,-239,-268,-184,-212,-74,-66,-195,-176,-245,-46,-82,-30,-44,2,41,38,-31,-46,16,34,42,11,-57,-16,7,66,25,112
-2019F,ND,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,10,10,10,10,10,8,7,4,6,5,6,0,0,0,0,0,0,0
-2019F,ND,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0
-2019F,ND,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,215,220,369,621,1693,2998,4096,5236,5275,5519,6202,6506,8172,11359,10730,11213
-2019F,ND,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,ND,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,215,220,369,621,1693,2998,4096,5236,5275,5519,6202,6506,8172,11359,10733,11213
-2019F,ND,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0
-2019F,NE,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,ARICP,780,702,705,843,654,655,714,606,787,741,1137,1111,889,884,976,754,570,1098,1606,817,719,671,736,668,631,473,954,1241,1262,1130,1388,1418,898,797,1031,929,1771,1450,1400,1867,937,856,803,1336,1301,1216,1053,904,810,1096,1141,1017,1139,922,929,953,875,974,860,772
-2019F,NE,ARTCP,780,702,705,843,654,655,714,606,787,741,1137,1111,889,884,976,754,570,1098,1606,817,719,671,736,668,631,473,954,1241,1262,1130,1388,1418,898,797,1031,929,1771,1450,1400,1867,937,856,803,1336,1301,1216,1053,904,810,1096,1141,1017,1139,922,929,953,875,974,860,772
-2019F,NE,ARTXP,780,702,705,843,654,655,714,606,787,741,1137,1111,889,884,976,754,570,1098,1606,817,719,671,736,668,631,473,954,1241,1262,1130,1388,1418,898,797,1031,929,1771,1450,1400,1867,937,856,803,1336,1301,1216,1053,904,810,1096,1141,1017,1139,922,929,953,875,974,860,772
-2019F,NE,AVACP,371,416,423,428,443,410,362,333,556,233,199,197,89,172,174,141,138,183,207,181,213,214,123,119,107,96,117,90,96,93,83,84,81,72,76,77,75,90,63,71,64,86,93,81,56,82,80,79,66,63,49,46,44,35,38,38,38,36,38,37
-2019F,NE,AVTCP,371,416,423,428,443,410,362,333,556,233,199,197,89,172,174,141,138,183,207,181,213,214,123,119,107,96,117,90,96,93,83,84,81,72,76,77,75,90,63,71,64,86,93,81,56,82,80,79,66,63,49,46,44,35,38,38,38,36,38,37
-2019F,NE,AVTXP,371,416,423,428,443,410,362,333,556,233,199,197,89,172,174,141,138,183,207,181,213,214,123,119,107,96,117,90,96,93,83,84,81,72,76,77,75,90,63,71,64,86,93,81,56,82,80,79,66,63,49,46,44,35,38,38,38,36,38,37
-2019F,NE,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,6,11,38,109,148,127,134,109,370,370,566,516,462,683,578,529,432
-2019F,NE,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,6,11,38,109,148,127,134,109,370,370,566,516,462,683,578,529,432
-2019F,NE,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,CLACP,7,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,CLCCP,89,60,63,45,32,26,20,14,16,31,16,17,24,14,9,6,7,12,18,48,15,13,22,47,73,9,3,3,35,4,3,9,5,4,6,8,1,105,0,0,0,5,6,5,3,3,5,5,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,CLEIP,256,209,388,465,501,486,417,501,534,901,1006,947,1228,1350,1228,1278,2012,2277,2367,3461,4702,5067,5048,5656,6569,6380,5945,6428,7744,7303,8027,8524,7881,9297,8879,10048,10091,10796,11505,11219,11503,12606,12210,12725,12650,12886,12881,12267,13360,14183,14167,15711,14884,15829,15036,14508,13056,12570,14443,13149
-2019F,NE,CLICP,408,449,468,498,447,349,395,254,159,174,240,193,218,312,319,308,604,553,576,538,269,376,325,216,280,261,339,312,268,279,235,324,325,364,414,339,286,296,384,405,407,518,388,385,371,393,420,427,415,392,698,1039,1038,1124,1217,1175,1113,1173,1138,1007
-2019F,NE,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,CLOCP,408,449,468,498,447,349,395,254,159,174,240,193,218,312,319,308,604,553,576,538,269,376,325,216,280,261,339,312,268,279,235,324,325,364,414,339,286,296,384,405,407,518,388,385,371,393,420,427,415,392,698,1039,1038,1124,1217,1175,1113,1173,1138,1007
-2019F,NE,CLRCP,129,87,91,62,44,35,27,19,20,40,20,17,18,8,4,3,3,5,5,12,4,3,5,9,17,3,1,1,10,1,1,2,1,1,1,1,0,13,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,CLTCP,888,808,1012,1073,1026,896,860,789,729,1146,1283,1174,1488,1685,1561,1595,2626,2846,2967,4058,4990,5459,5399,5928,6939,6653,6288,6744,8057,7587,8266,8859,8212,9666,9300,10396,10379,11210,11889,11625,11910,13130,12605,13115,13023,13283,13307,12699,13776,14575,14865,16750,15922,16953,16253,15683,14169,13743,15581,14156
-2019F,NE,CLTXP,633,599,624,608,525,410,443,288,195,245,277,227,260,335,333,317,614,569,600,598,288,392,352,272,370,273,343,316,313,284,239,335,331,369,421,348,287,414,384,405,407,524,395,390,374,397,425,433,415,392,698,1039,1038,1124,1217,1175,1113,1173,1138,1007
-2019F,NE,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,DFACP,1402,1636,1649,1891,1898,1439,1428,1990,3075,3151,3658,3784,4839,5146,4918,4618,5193,6352,7201,6171,5112,4329,5105,6838,6275,6709,6838,7690,8950,7634,7524,7900,8535,8391,8715,9540,11649,11825,13252,13195,9983,8651,8719,9701,10589,10739,11036,10834,10108,11340,15824,15066,14059,13792,14214,14442,14059,14137,15069,15352
-2019F,NE,DFCCP,140,145,130,131,151,112,152,164,167,148,197,190,217,211,183,174,254,229,267,457,181,339,298,832,1022,831,350,390,315,265,287,183,268,307,330,162,230,165,222,219,198,243,92,211,182,206,189,189,295,227,246,198,206,325,328,325,336,316,393,424
-2019F,NE,DFEIP,64,64,85,103,61,71,51,44,53,74,126,140,280,229,251,308,280,278,338,205,86,80,132,80,41,62,50,33,64,49,31,27,25,42,45,61,47,71,83,65,100,62,43,101,45,44,40,54,72,44,57,69,42,94,99,16,16,16,34,41
-2019F,NE,DFICP,2405,2473,2087,2096,2399,1956,2681,2811,2993,2918,3271,3309,3544,3511,3313,3234,4447,3830,4558,5574,3411,3068,3352,3550,4361,4457,4488,4271,4583,4655,4810,4643,4876,4939,5358,4748,4604,4696,5025,4198,4545,5170,5014,5303,5523,5222,5168,6113,5843,4493,4195,4130,5507,4840,4503,4577,4891,4862,4430,4616
-2019F,NE,DFRCP,140,144,129,130,150,111,152,164,167,147,196,189,216,210,182,173,253,228,266,455,360,385,366,248,305,353,297,222,210,290,196,197,144,168,147,88,113,90,65,77,110,81,68,89,96,88,102,53,55,36,28,24,18,20,18,14,13,15,13,12
-2019F,NE,DFTCP,4151,4462,4080,4351,4659,3689,4464,5172,6454,6439,7449,7613,9097,9307,8847,8507,10426,10916,12630,12862,9149,8200,9253,11547,12003,12411,12024,12606,14121,12894,12848,12949,13848,13847,14595,14599,16644,16848,18646,17754,14937,14207,13936,15406,16435,16299,16534,17242,16374,16139,20350,19486,19832,19070,19161,19374,19316,19345,19940,20445
-2019F,NE,DFTXP,4087,4398,3995,4248,4598,3618,4413,5128,6402,6365,7323,7472,8817,9078,8596,8199,10146,10638,12291,12657,9063,8121,9121,11468,11962,12349,11974,12572,14057,12845,12818,12922,13823,13805,14550,14537,16597,16777,18563,17688,14836,14146,13893,15304,16390,16255,16494,17188,16302,16095,20293,19417,19789,18977,19062,19358,19300,19329,19905,20404
-2019F,NE,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,68,0,0,0,0,3,4,1,1,0,0,0,0,0,0,1,0,0,1,48,0
-2019F,NE,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30,27,0,0,0,2,0,0,0,10,0,0,0,0,0,0,1,0,0,5,12,0
-2019F,NE,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1616,-2162,-2413,-1637,306,-1787,-3204,-3140,-2897,-4368,-1812,-3125,-3056,-1670,-2956,-1395,-1319,-1920,-1322,-3421,-4448,-4024,-751,-3860,-6799,-7985,-3932,-2750,-3733,-4762
-2019F,NE,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-48,-42,0,0,0,2,-3,-4,-1,9,0,0,0,0,0,0,0,0,0,5,-36,0
-2019F,NE,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,198,397,440,416,435,544,587,733,667,788,937,775,522,621,402,458,477,569,757,623,787,857,799,409,400,741,1337,1306,1562,1572,1572,1558,1766,1920,1950,1965,1958,1995
-2019F,NE,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,2,4,4,5,5,5,6,5,5,1,1,1,0,1,1,1,11,7,5,4,8,1,2,4,7,6,2,7,6,5,6,37,37,34,35,35
-2019F,NE,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,14,26,25,36,31,41,36,45,37,44,45,31,22,25,17,20,26,20,25,31,41,48,54,27,27,27,31,33,51,54,47,44,40,67,61,62,63,61
-2019F,NE,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,213,426,467,456,470,589,627,784,710,837,987,807,545,647,419,478,504,589,793,661,834,909,861,437,429,773,1375,1345,1614,1632,1625,1607,1812,2025,2048,2062,2055,2091
-2019F,NE,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,ESCCP,1269,1409,1589,1740,1870,2025,1996,2036,2549,3229,3505,3770,3746,3957,3833,3660,3817,3957,3964,4014,4068,4524,4665,4886,5643,5714,5798,5956,6342,6473,6451,6777,6470,6560,7149,7494,7563,8014,8069,7997,8727,8757,9142,8583,8501,8848,9006,9396,9441,9314,9532,9139,9233,9387,9526,9308,9307,9293,9553,9457
-2019F,NE,ESICP,889,937,979,1039,1094,1182,1252,1250,1743,2005,2145,2193,2102,2310,2606,3200,3542,3599,3784,4079,4155,3881,3462,3665,3725,3794,3757,3851,4104,4370,4618,4690,4752,4963,5345,5802,6193,6580,6916,6883,7276,7328,7563,8421,8618,8819,8977,9104,9624,9511,10210,10590,11915,11251,10668,10655,11154,11398,10974,10619
-2019F,NE,ESRCP,1907,2082,2221,2442,2607,2816,2850,2816,3099,3682,4107,4308,4081,4436,4512,4693,4722,4859,5347,5263,5521,5601,5845,6438,6268,6195,6325,6378,6813,6723,6800,7138,6561,7226,7379,7597,7741,7989,8160,7929,8346,8638,8956,8852,8757,9309,9294,9748,9756,9627,10107,9947,9680,10062,10028,9532,9738,9668,10412,10308
-2019F,NE,ESRPP,1346,1440,1517,1654,1759,1914,1958,1933,2113,2498,2760,2864,2687,2900,2932,3041,3045,3121,3419,3358,3511,3548,3695,4064,3945,3909,4017,4072,4336,4269,4299,4473,4071,4445,4502,4585,4625,4737,4812,4651,4870,5023,5182,5091,5006,5285,5243,5466,5431,5311,5524,5403,5222,5393,5334,5038,5108,5043,5407,5334
-2019F,NE,ESTCP,4065,4427,4790,5221,5571,6022,6098,6102,7391,8915,9757,10272,9929,10703,10951,11553,12081,12414,13095,13356,13744,14006,13972,14989,15636,15702,15880,16185,17259,17567,17868,18605,17784,18749,19873,20892,21497,22582,23145,22810,24349,24723,25661,25857,25876,26976,27276,28248,28821,28452,29849,29676,30828,30701,30222,29495,30199,30359,30939,30383
-2019F,NE,ESTPP,2869,3062,3272,3537,3759,4094,4188,4188,5038,6048,6557,6827,6536,6997,7115,7487,7790,7974,8373,8521,8741,8873,8833,9461,9842,9909,10087,10331,10982,11154,11297,11658,11035,11534,12125,12609,12844,13391,13648,13380,14208,14375,14848,14872,14792,15314,15387,15839,16044,15696,16315,16120,16631,16454,16076,15589,15840,15837,16068,15722
-2019F,NE,ESTXP,4065,4427,4790,5221,5571,6022,6098,6102,7391,8915,9757,10272,9929,10703,10951,11553,12081,12414,13095,13356,13744,14006,13972,14989,15636,15702,15880,16185,17259,17567,17868,18605,17784,18749,19873,20892,21497,22582,23145,22810,24349,24723,25661,25857,25876,26976,27276,28248,28821,28452,29849,29676,30828,30701,30222,29495,30199,30359,30939,30383
-2019F,NE,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,FSICP,0,0,0,2,2,3,3,3,3,4,5,6,5,4,5,5,6,5,7,4,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,HLACP,103,96,91,124,106,99,184,235,265,273,217,247,234,234,249,231,275,220,254,175,171,210,173,206,72,57,38,50,51,66,61,64,47,48,72,23,21,71,23,14,26,31,41,45,53,23,34,38,29,22,8,9,7,9,9,6,6,3,17,25
-2019F,NE,HLCCP,152,164,184,222,199,216,225,250,274,322,329,317,338,298,258,266,269,238,243,121,119,111,122,145,65,85,75,103,101,102,83,104,105,99,92,99,133,107,142,145,148,138,167,263,143,152,67,131,131,111,180,141,139,227,191,148,111,119,225,257
-2019F,NE,HLICP,441,353,311,460,382,314,505,559,630,930,823,814,1078,1220,1458,1811,2547,2397,1845,2828,2675,2271,2925,2601,1145,1359,1365,1732,2042,2133,1700,1659,1713,1559,1726,1617,1957,1571,1308,1636,1753,1668,2579,2074,2133,1745,2089,1537,902,1434,863,760,930,1148,916,695,755,820,621,634
-2019F,NE,HLRCP,1955,2118,2368,2867,2568,2779,2903,3218,3537,4145,4246,4089,4356,3841,3324,3431,3461,3067,3127,1559,1535,1432,1569,1866,836,1090,971,1333,1305,1321,1068,1340,1359,1278,1190,1281,1719,1381,1828,1870,1904,1778,2156,1947,1710,1848,1572,1830,2441,2160,2179,2037,1513,1860,1817,1629,1439,1190,1703,2035
-2019F,NE,HLTCP,2650,2730,2953,3672,3255,3407,3818,4262,4705,5669,5616,5468,6006,5593,5289,5740,6552,5922,5469,4682,4499,4023,4788,4818,2118,2590,2449,3218,3500,3622,2912,3167,3225,2984,3080,3020,3831,3130,3300,3665,3830,3615,4943,4328,4039,3768,3762,3537,3503,3727,3230,2947,2589,3244,2933,2477,2312,2132,2567,2951
-2019F,NE,HLTXP,2650,2730,2953,3672,3255,3407,3818,4262,4705,5669,5616,5468,6006,5593,5289,5740,6552,5922,5469,4682,4499,4023,4788,4818,2118,2590,2449,3218,3500,3622,2912,3167,3225,2984,3080,3020,3831,3130,3300,3665,3830,3615,4943,4328,4039,3768,3762,3537,3503,3727,3230,2947,2589,3244,2933,2477,2312,2132,2567,2951
-2019F,NE,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,HYEGP,959,928,975,1013,1002,1115,1162,1163,1254,1237,1370,1359,1372,1371,1294,1213,1276,1221,1187,1246,1336,1197,1212,1346,1345,1441,1678,1567,1350,1158,1140,1045,1075,1002,1312,1426,1602,1672,1683,1719,1501,1124,1097,980,913,871,893,347,346,434,1314,1617,1257,1124,1158,1685,856,1489,1382,1340
-2019F,NE,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,HYTCP,959,928,975,1014,1003,1116,1162,1163,1254,1238,1371,1359,1372,1371,1294,1213,1276,1221,1187,1246,1336,1197,1212,1346,1345,1441,1678,1567,1350,1158,1140,1045,1075,1002,1312,1426,1602,1672,1683,1719,1501,1124,1097,980,913,871,893,347,346,434,1314,1617,1257,1124,1158,1685,856,1489,1382,1340
-2019F,NE,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,JFACP,1202,1309,1463,1491,1530,1371,1510,1849,2124,2038,1783,1812,1721,1665,1797,1679,1692,1771,1989,1900,1588,1466,1453,1482,1385,1357,1353,1373,1505,1488,1501,1192,1198,1157,1259,1001,1007,1075,1081,1564,1231,1113,1527,1205,918,934,1060,968,888,697,605,596,574,702,577,749,603,739,800,838
-2019F,NE,JFTCP,1202,1309,1463,1491,1530,1371,1510,1849,2124,2038,1783,1812,1721,1665,1797,1679,1692,1771,1989,1900,1588,1466,1453,1482,1385,1357,1353,1373,1505,1488,1501,1192,1198,1157,1259,1001,1007,1075,1081,1564,1231,1113,1527,1205,918,934,1060,968,888,697,605,596,574,702,577,749,603,739,800,838
-2019F,NE,JFTXP,1202,1309,1463,1491,1530,1371,1510,1849,2124,2038,1783,1812,1721,1665,1797,1679,1692,1771,1989,1900,1588,1466,1453,1482,1385,1357,1353,1373,1505,1488,1501,1192,1198,1157,1259,1001,1007,1075,1081,1564,1231,1113,1527,1205,918,934,1060,968,888,697,605,596,574,702,577,749,603,739,800,838
-2019F,NE,KSCCP,65,62,65,44,45,87,66,18,85,70,73,87,102,103,79,71,82,72,55,5,21,10,14,6,8,12,8,4,2,3,23,3,1,4,5,4,4,3,3,1,1,3,2,3,7,4,3,1,1,1,1,1,0,0,0,0,0,0,0,0
-2019F,NE,KSICP,275,239,209,185,215,250,311,237,113,94,130,143,138,143,133,111,125,111,112,26,31,48,50,23,24,22,142,87,58,11,14,9,8,9,10,9,12,14,11,4,6,8,2,8,10,7,3,2,1,4,1,1,0,0,1,0,1,0,0,0
-2019F,NE,KSRCP,337,321,336,228,236,453,345,93,440,362,379,450,531,536,411,372,428,376,288,26,10,29,29,46,55,40,19,13,16,8,4,5,10,11,5,4,4,7,10,6,8,10,3,4,5,7,2,6,2,3,3,1,1,1,1,0,1,0,1,1
-2019F,NE,KSTCP,677,622,610,457,496,790,722,348,638,526,582,680,771,782,623,554,635,559,456,57,62,87,93,76,88,74,168,104,76,22,41,17,20,24,21,17,19,23,23,11,15,21,7,16,22,18,8,9,4,7,5,2,1,1,2,1,2,1,1,2
-2019F,NE,KSTXP,677,622,610,457,496,790,722,348,638,526,582,680,771,782,623,554,635,559,456,57,62,87,93,76,88,74,168,104,76,22,41,17,20,24,21,17,19,23,23,11,15,21,7,16,22,18,8,9,4,7,5,2,1,1,2,1,2,1,1,2
-2019F,NE,LUACP,328,319,291,291,306,295,307,291,319,313,319,316,339,344,329,299,332,348,373,391,348,334,304,318,340,317,309,350,337,346,356,319,325,331,346,340,330,348,365,368,363,333,329,304,308,306,298,308,286,257,245,224,203,209,219,237,225,206,200,196
-2019F,NE,LUICP,97,94,91,91,95,130,135,134,148,157,160,129,138,198,190,193,215,41,44,46,41,40,36,38,40,38,37,41,40,41,42,38,39,39,41,40,39,41,43,44,43,39,39,36,36,36,35,37,34,30,120,116,104,104,104,106,99,93,92,85
-2019F,NE,LUTCP,424,413,382,382,401,425,442,425,467,470,479,445,476,542,519,492,547,389,418,437,389,373,340,356,380,354,346,391,377,387,398,356,363,370,387,380,369,390,408,412,406,372,368,340,344,342,334,345,320,288,365,340,307,313,323,343,324,299,293,281
-2019F,NE,LUTXP,424,413,382,382,401,425,442,425,467,470,479,445,476,542,519,492,547,389,418,437,389,373,340,356,380,354,346,391,377,387,398,356,363,370,387,380,369,390,408,412,406,372,368,340,344,342,334,345,320,288,365,340,307,313,323,343,324,299,293,281
-2019F,NE,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,MGACP,12768,12681,13306,13922,13419,13861,14615,14910,15843,16377,17096,17618,19053,20124,18682,18871,19846,20049,20327,18775,17480,16823,16925,16691,16815,16187,16426,16498,17411,17242,17346,16760,17034,17312,17288,18521,18679,18994,19237,19781,19543,19231,19689,19492,19333,18872,18774,19501,19652,19293,19701,19005,19166,19673,20595,20028,20581,20516,20652,20721
-2019F,NE,MGCCP,84,88,90,92,93,95,97,98,103,108,110,114,119,121,119,120,126,130,136,140,149,154,131,120,95,158,142,139,134,126,155,100,92,21,21,21,21,21,21,21,279,209,126,96,203,26,110,115,106,92,22,79,75,59,65,389,386,359,364,366
-2019F,NE,MGICP,2146,2196,2089,1880,1910,1790,1700,1755,1505,1598,1319,1500,1241,703,1611,1644,1608,1631,1612,1563,1471,1356,1205,1094,961,1392,1189,1248,1064,1059,950,940,825,696,734,759,773,810,1047,686,634,953,1031,1086,1304,1250,1279,719,460,485,638,649,572,550,472,704,647,651,660,630
-2019F,NE,MGTCP,14998,14965,15486,15893,15422,15745,16412,16763,17451,18082,18525,19231,20414,20948,20412,20636,21580,21810,22075,20478,19100,18333,18261,17905,17871,17737,17757,17885,18609,18427,18451,17801,17951,18029,18043,19302,19474,19825,20305,20487,20457,20392,20846,20673,20840,20148,20163,20336,20217,19871,20361,19733,19813,20282,21133,21122,21615,21526,21677,21717
-2019F,NE,MGTXP,14998,14965,15486,15893,15422,15745,16412,16763,17451,18082,18525,19231,20414,20948,20412,20636,21580,21810,22075,20478,19100,18333,18261,17905,17871,17737,17757,17885,18609,18427,18451,17801,17951,18029,18043,19302,19474,19825,20305,20487,20457,20392,20846,20673,20840,20148,20163,20336,20217,19871,20361,19733,19813,20282,21133,21122,21615,21526,21677,21717
-2019F,NE,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,25,23,21,0,0,0,0,0,0,0,0,0,0,11,12,11,10,10,19,19,20,21,22,23,23,84,89,92,93,160,160,145
-2019F,NE,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,NGACP,6294,6557,6585,6529,8218,8659,9330,10256,9990,11470,13135,13235,13124,13597,11530,10427,10406,12246,8949,7028,7017,6131,5198,4062,4615,5552,3911,4466,4698,4909,3536,2368,2573,2543,3306,3435,4609,4298,2881,2956,3179,3065,2655,5370,4044,4456,4531,5400,9951,6978,7359,9307,7639,6996,7152,7113,6434,7432,9430,7084
-2019F,NE,NGCCP,21937,22415,21658,22429,24187,25506,29917,41443,41765,46041,46824,47261,45518,38690,42298,43117,48713,46989,40736,43507,43356,40612,43022,39055,41900,39404,36357,34205,39388,37351,36489,40291,34490,34745,38946,40044,40833,33853,28911,27586,28907,27792,28185,28368,29858,27401,28087,30067,34813,31790,31993,32115,26503,32214,32407,29464,26971,29018,35349,35388
-2019F,NE,NGEIP,30973,33099,32341,36476,37661,36269,39503,39478,48568,45170,47641,48843,49154,54139,48040,37725,19618,15623,12844,14009,11850,4560,1553,1581,1495,1284,1713,1743,2046,2593,3766,3689,1903,1876,3061,3059,2311,2687,5080,4582,5522,4290,4947,4593,3340,8066,7787,10908,7230,3331,3949,4223,7696,4604,4189,4255,5791,6167,9196,12037
-2019F,NE,NGICP,36980,37371,40532,40955,46994,48150,64997,43665,49646,52189,56440,56657,56788,72823,71536,73762,64932,61037,52329,51943,51941,43112,37084,37356,38622,33221,20448,30093,32346,30579,25772,24789,26491,38714,37049,44827,36171,44463,53090,45779,46847,40174,40721,38401,39168,41184,53584,65838,76654,81232,85511,86415,85633,88334,86942,85694,91116,89600,89594,89765
-2019F,NE,NGRCP,39497,40235,43158,40706,45107,47631,52904,53819,53376,55163,58295,57678,59978,50383,49403,53803,54965,52909,48193,53526,48915,43907,51381,47236,47834,46674,42303,38871,43502,44804,41499,44671,41414,48256,44397,45054,48989,47105,40771,40588,42510,46663,43826,42190,38600,37963,35896,38596,42357,40143,40132,39717,31286,41229,42147,34663,33050,34069,42379,41639
-2019F,NE,NGTCP,135681,139677,144274,147095,162167,166215,196651,188661,203345,210033,222335,223674,224562,229632,222807,218834,198634,188804,163051,170013,163079,138322,138238,129290,134466,126135,104732,109378,121980,120236,111063,115808,106871,126134,126759,136419,132911,132405,130732,121490,126965,121984,120333,118922,115010,119070,129885,150809,171005,163474,168944,171777,158757,173377,172837,161189,163362,166286,185948,185913
-2019F,NE,NGTPP,95.8,96.6,98.5,99.7,109.4,113,135.1,129.5,138.6,142.5,149.4,148.7,147.8,150.1,144.8,141.8,128.1,121.3,104.3,108.5,103.7,87.6,87.4,81.6,84.6,79.6,66.5,69.8,77.6,76.3,70.2,72.6,66.3,77.6,77.3,82.3,79.4,78.5,77.1,71.3,74.1,70.9,69.6,68.4,65.7,67.6,73.3,84.6,95.2,90.2,92.3,93.3,85.6,92.9,91.9,85.2,85.7,86.7,96.6,96.2
-2019F,NE,NGTXP,104708,106578,111933,110619,124506,129946,157148,149183,154777,164863,174694,174831,175408,175493,174767,181109,179016,173181,150207,156004,151229,133762,136685,127709,132971,124851,103019,107635,119934,117643,107296,112119,104968,124258,123698,133360,130601,129718,125652,116908,121444,117694,115386,114329,111670,111004,122098,139901,163775,160143,164995,167554,151061,168773,168648,156934,157571,160119,176752,173876
-2019F,NE,NUEGP,0,0,0,75,91,-5,0,0,0,0,0,0,0,599,3996,5916,5824,7452,7725,8658,5783,5988,8753,6082,5780,4134,7658,8589,6828,8077,7511,8048,8748,6805,6345,7485,9457,9269,8259,10091,8629,8726,10122,7997,10241,8802,9003,11042,9479,9435,11054,6933,5802,6865,10102,10325,9351,6913,5632,6952
-2019F,NE,NUETP,0,0,0,75,91,-5,0,0,0,0,0,0,0,599,3996,5916,5824,7452,7725,8658,5783,5988,8753,6082,5780,4134,7658,8589,6828,8077,7511,8048,8748,6805,6345,7485,9457,9269,8259,10091,8629,8726,10122,7997,10241,8802,9003,11042,9479,9435,11054,6933,5802,6865,10102,10325,9351,6913,5632,6952
-2019F,NE,OPICP,47,46,46,47,45,50,43,54,55,72,70,108,112,121,118,112,120,110,121,117,114,125,68,74,74,75,94,99,106,103,100,26,28,30,31,31,28,25,24,22,19,41,39,37,36,36,44,40,38,33,39,37,37,104,109,109,110,178,179,163
-2019F,NE,OPTCP,47,46,46,47,45,50,43,54,55,72,70,108,112,121,118,112,120,110,121,117,114,125,68,74,74,75,94,99,106,103,100,26,28,30,31,31,28,25,24,22,19,41,39,37,36,36,44,40,38,33,39,37,37,104,109,109,110,178,179,163
-2019F,NE,OPTXP,47,46,46,47,45,50,43,54,55,72,70,108,112,121,118,112,120,110,121,117,114,125,68,74,74,75,94,99,106,103,100,26,28,30,31,31,28,25,24,22,19,41,39,37,36,36,44,40,38,33,39,37,37,104,109,109,110,178,179,163
-2019F,NE,P1ICP,1214,1095,1065,1165,1009,1086,1203,1031,1129,1102,1530,1520,1309,1382,1448,1208,1064,1396,1909,1022,920,909,891,803,770,608,1226,1468,1466,1285,1545,1492,973,876,1113,1009,1850,1530,1478,1936,1005,945,883,1417,1383,1296,1135,981,883,1163,1301,1171,1281,1131,1143,1168,1084,1246,1132,1020
-2019F,NE,P1TCP,2314,2214,2179,2157,2039,2331,2283,1765,2529,2079,2499,2570,2370,2536,2441,2092,2045,2376,2833,1625,1512,1495,1361,1293,1279,1073,1680,1925,1917,1735,2011,1903,1390,1293,1544,1433,2263,1978,1918,2383,1441,1376,1310,1810,1759,1695,1518,1376,1239,1487,1599,1442,1528,1375,1402,1445,1348,1489,1371,1254
-2019F,NE,P1TXP,2314,2214,2179,2157,2039,2331,2283,1765,2529,2079,2499,2570,2370,2536,2441,2092,2045,2376,2833,1625,1512,1495,1361,1293,1279,1073,1680,1925,1917,1735,2011,1903,1390,1293,1544,1433,2263,1978,1918,2383,1441,1376,1310,1810,1759,1695,1518,1376,1239,1487,1599,1442,1528,1375,1402,1445,1348,1489,1371,1254
-2019F,NE,PAACP,16432,16808,17648,18981,18445,17583,18515,19907,22400,22593,23497,24149,26453,27849,26319,25976,27511,28948,30354,27605,24911,23377,24084,25654,24992,24722,25082,26050,28350,26869,26871,26320,27220,27311,27756,29501,31763,32404,34021,34994,31210,29445,30397,30827,31257,30957,31283,31729,31029,31672,36432,34945,34054,34421,35652,35501,35513,35637,36777,37168
-2019F,NE,PACCP,484,495,543,604,596,593,719,690,879,934,950,921,982,939,875,790,1040,937,904,831,493,631,666,1103,1190,1085,575,637,566,539,568,416,507,450,467,287,389,305,394,389,634,613,388,588,583,411,410,437,575,438,449,418,420,611,586,862,833,796,988,1051
-2019F,NE,PAEIP,160,158,212,258,151,178,127,110,131,186,314,217,455,382,748,967,1279,888,1267,750,262,93,132,80,41,62,103,92,140,110,31,30,25,42,45,61,47,72,93,70,119,62,43,102,47,63,41,76,73,45,57,70,43,94,99,16,16,16,34,41
-2019F,NE,PAICP,6224,6131,5589,5657,5742,5177,6158,6216,6353,6720,7082,7258,7335,6962,7977,8035,9828,9437,10054,11027,8506,7640,8462,8153,7306,7877,8468,8925,9477,9401,9241,8903,8531,8326,9124,8253,9351,8708,8956,8524,8052,8841,9630,10006,10524,9616,9705,9397,8127,7575,6997,6711,8289,7669,7034,7144,7378,7578,6843,6901
-2019F,NE,PARCP,2431,2583,2834,3225,2954,3343,3399,3474,4143,4654,4821,4728,5104,4587,3917,3976,4142,3671,3681,2040,1904,1846,1964,2160,1196,1483,1287,1568,1530,1619,1268,1542,1514,1457,1342,1372,1836,1478,1902,1953,2022,1870,2227,2041,1812,1944,1676,1889,2498,2198,2210,2062,1531,1880,1836,1644,1454,1205,1717,2048
-2019F,NE,PATCP,25731,26176,26827,28725,27888,26875,28917,30397,33907,35087,36665,37273,40329,40719,39836,39745,43800,43882,46260,42254,36076,33588,35308,37150,34726,35229,35515,37273,40063,38539,37980,37211,37797,37586,38734,39475,43386,42966,45366,45930,42038,40831,42685,43564,44222,42990,43115,43528,42302,41928,46145,44205,44337,44674,45207,45167,45194,45232,46360,47209
-2019F,NE,PATPP,18.2,18.1,18.3,19.5,18.8,18.3,19.9,20.9,23.1,23.8,24.6,24.8,26.5,26.6,25.9,25.8,28.2,28.2,29.6,27,22.9,21.3,22.3,23.4,21.9,22.2,22.6,23.8,25.5,24.5,24,23.3,23.5,23.1,23.6,23.8,25.9,25.5,26.8,26.9,24.5,23.7,24.7,25.1,25.3,24.4,24.3,24.4,23.5,23.1,25.2,24,23.9,23.9,24,23.9,23.7,23.6,24.1,24.4
-2019F,NE,PATXP,25572,26017,26614,28467,27737,26697,28791,30288,33776,34901,36351,37056,39874,40337,39088,38778,42521,42994,44993,41503,35814,33495,35176,37070,34684,35168,35412,37180,39923,38429,37949,37181,37772,37543,38688,39413,43339,42895,45273,45860,41919,40769,42642,43462,44175,42927,43074,43452,42229,41883,46087,44135,44294,44580,45108,45151,45178,45216,46326,47167
-2019F,NE,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,PCICP,15,15,14,0,0,0,0,0,25,38,33,30,33,35,32,38,35,36,25,17,16,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,PCTCP,15,15,14,0,0,0,0,0,25,38,33,30,33,35,32,38,35,36,25,17,16,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,PCTXP,15,15,14,0,0,0,0,0,25,38,33,30,33,35,32,38,35,36,25,17,16,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,9,7,9,9,6,6,3,17,25
-2019F,NE,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,180,141,139,227,191,148,111,119,225,257
-2019F,NE,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,863,760,930,1148,916,695,755,820,621,634
-2019F,NE,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2179,2037,1513,1860,1817,1629,1439,1190,1703,2035
-2019F,NE,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3230,2947,2589,3244,2933,2477,2312,2132,2567,2951
-2019F,NE,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3230,2947,2589,3244,2933,2477,2312,2132,2567,2951
-2019F,NE,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NE,RFACP,258,351,426,835,743,109,108,299,218,209,225,175,178,165,170,138,35,26,5,14,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,RFCCP,43,37,75,115,107,84,178,161,250,287,241,213,206,206,237,159,309,269,203,108,23,17,101,0,0,0,0,0,13,43,20,26,41,19,19,1,0,9,7,3,8,21,0,14,49,23,41,0,42,7,0,0,0,0,1,0,0,1,6,3
-2019F,NE,RFEIP,96,95,127,154,91,107,76,66,79,111,188,76,175,153,497,658,1000,610,929,546,176,13,0,0,0,0,53,59,76,61,1,3,0,0,1,0,0,0,11,4,19,0,0,1,2,19,2,23,1,1,0,1,1,0,0,0,0,0,0,0
-2019F,NE,RFICP,18,13,37,56,42,32,68,61,97,172,139,115,162,146,146,137,161,183,130,40,29,37,90,104,70,62,199,206,322,269,236,169,144,256,193,120,167,101,98,69,115,106,124,127,180,103,35,47,38,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,RFTCP,415,496,666,1161,983,332,430,586,643,779,793,579,720,670,1049,1092,1505,1088,1266,707,228,70,191,105,70,62,252,265,412,373,257,199,185,275,212,121,167,110,116,77,142,127,124,142,231,145,77,70,81,8,1,1,1,0,1,0,0,1,6,3
-2019F,NE,RFTXP,320,401,538,1007,892,225,354,521,565,668,605,502,545,517,553,434,505,477,337,161,52,56,191,104,70,62,199,206,335,312,256,196,185,275,212,121,167,110,105,72,123,127,124,141,229,126,76,47,81,7,0,0,0,0,1,0,0,1,6,3
-2019F,NE,SGICP,40,39,40,39,37,41,40,50,52,67,65,60,64,62,60,59,57,57,65,64,61,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,5,7,6,6
-2019F,NE,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,4,5
-2019F,NE,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,15,27,32
-2019F,NE,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
-2019F,NE,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,6,9
-2019F,NE,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,7,21,38,47
-2019F,NE,TPOPP,1417,1446,1464,1476,1482,1471,1456,1457,1467,1474,1488,1505,1519,1530,1539,1543,1551,1557,1564,1567,1572,1579,1582,1584,1589,1585,1574,1567,1571,1575,1582,1596,1612,1626,1639,1657,1674,1686,1696,1705,1714,1720,1728,1739,1749,1761,1773,1783,1796,1813,1830,1841,1854,1866,1880,1892,1906,1917,1926,1933
-2019F,NE,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,WXICP,7,7,6,6,6,6,0,0,0,0,0,41,43,55,54,48,58,48,50,49,48,87,68,74,74,75,73,79,81,80,80,26,28,30,31,31,28,25,24,22,19,31,27,26,26,27,25,21,18,12,16,14,14,15,13,11,12,11,14,11
-2019F,NE,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,38,38,97,261,217,214,383,422,1051,1284,1802,2737,3180,3798,5084,5549,7211
-2019F,NE,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NE,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,38,38,97,261,217,214,383,422,1051,1284,1802,2737,3180,3798,5084,5549,7211
-2019F,NE,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,ARICP,470,355,398,494,591,424,496,371,504,390,541,615,697,826,567,431,487,434,456,426,253,350,368,391,968,854,553,779,430,742,1198,659,791,320,381,365,627,412,269,288,333,233,407,891,852,1044,652,750,991,697,708,661,709,646,655,633,489,974,547,406
-2019F,NH,ARTCP,470,355,398,494,591,424,496,371,504,390,541,615,697,826,567,431,487,434,456,426,253,350,368,391,968,854,553,779,430,742,1198,659,791,320,381,365,627,412,269,288,333,233,407,891,852,1044,652,750,991,697,708,661,709,646,655,633,489,974,547,406
-2019F,NH,ARTXP,470,355,398,494,591,424,496,371,504,390,541,615,697,826,567,431,487,434,456,426,253,350,368,391,968,854,553,779,430,742,1198,659,791,320,381,365,627,412,269,288,333,233,407,891,852,1044,652,750,991,697,708,661,709,646,655,633,489,974,547,406
-2019F,NH,AVACP,18,21,50,30,38,46,44,36,43,41,38,48,44,43,41,33,30,37,44,40,40,30,25,26,20,24,38,28,37,33,21,26,19,43,33,22,20,23,20,28,24,64,50,44,65,69,46,46,28,47,31,29,25,22,20,18,18,18,22,22
-2019F,NH,AVTCP,18,21,50,30,38,46,44,36,43,41,38,48,44,43,41,33,30,37,44,40,40,30,25,26,20,24,38,28,37,33,21,26,19,43,33,22,20,23,20,28,24,64,50,44,65,69,46,46,28,47,31,29,25,22,20,18,18,18,22,22
-2019F,NH,AVTXP,18,21,50,30,38,46,44,36,43,41,38,48,44,43,41,33,30,37,44,40,40,30,25,26,20,24,38,28,37,33,21,26,19,43,33,22,20,23,20,28,24,64,50,44,65,69,46,46,28,47,31,29,25,22,20,18,18,18,22,22
-2019F,NH,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,7,9,8,8,7,23,16,87,92,105,176,204,113,88
-2019F,NH,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,7,9,8,8,7,23,16,87,92,105,176,204,113,88
-2019F,NH,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,CLACP,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,CLCCP,8,8,7,7,6,6,5,4,4,4,3,4,3,4,3,3,3,3,2,2,2,6,9,12,10,6,9,8,9,6,10,18,13,8,7,7,7,5,4,3,4,4,4,2,2,4,4,3,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,CLEIP,94,351,364,358,390,358,315,338,781,953,975,930,1118,1045,931,972,751,959,779,1079,1080,890,959,1019,1198,1433,917,1163,1217,1160,1146,1242,1251,1339,1279,1346,1369,1699,1465,1341,1673,1533,1527,1595,1660,1723,1634,1625,1481,1208,1247,898,520,616,544,406,194,134,294,159
-2019F,NH,CLICP,100,102,92,62,38,36,34,27,24,23,9,11,5,5,10,6,1,32,2,2,10,3,58,58,53,40,4,3,1,15,28,51,44,79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,CLOCP,100,102,92,62,38,36,34,27,24,23,9,11,5,5,10,6,1,32,2,2,10,3,58,58,53,40,4,3,1,15,28,51,44,79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,CLRCP,12,11,10,9,9,7,6,6,5,5,4,4,2,2,2,1,1,1,1,0,1,1,2,2,2,2,3,2,2,2,2,4,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,CLTCP,216,472,473,436,442,407,360,375,814,984,992,949,1129,1055,946,982,756,994,784,1083,1093,900,1028,1091,1263,1481,933,1176,1229,1183,1186,1315,1311,1428,1287,1355,1377,1705,1469,1344,1677,1537,1531,1597,1662,1727,1638,1629,1481,1208,1247,898,520,616,544,406,194,134,294,159
-2019F,NH,CLTXP,123,121,109,77,52,49,45,37,33,31,17,19,11,11,15,10,5,35,5,4,13,10,69,72,65,48,16,13,12,23,40,73,60,89,8,9,8,6,4,3,4,4,4,2,2,4,4,3,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,DFACP,209,221,215,177,269,178,336,377,242,275,319,281,296,436,486,418,508,530,597,681,687,705,755,798,929,1061,1254,1390,1412,1422,1232,1157,1240,1269,1306,1473,1424,1494,2376,2365,2313,2399,3870,2471,2797,2534,2597,2471,2417,2390,2350,2335,2241,2236,2373,2420,2305,2341,2466,2421
-2019F,NH,DFCCP,376,463,495,538,481,491,490,550,600,628,628,663,689,690,633,593,733,688,695,448,1044,533,591,404,476,615,1000,1914,1320,1319,1415,1320,1313,1198,1423,1129,1320,1325,1235,1435,1903,1746,1547,2008,1835,1538,1134,1112,961,1044,981,1081,779,753,973,914,825,795,865,893
-2019F,NH,DFEIP,102,76,73,72,73,98,111,134,123,142,184,195,192,88,57,14,11,4,3,4,12,16,15,20,29,31,35,28,62,61,39,39,38,49,56,51,28,37,32,36,30,38,57,66,172,135,256,84,25,23,27,13,9,52,235,79,11,99,89,12
-2019F,NH,DFICP,280,367,374,408,375,421,420,474,493,521,511,575,584,560,486,460,528,507,492,410,558,571,489,270,318,428,380,610,569,599,517,517,582,451,406,433,393,311,374,469,580,635,619,746,775,783,613,490,622,581,472,428,391,484,559,396,348,314,358,380
-2019F,NH,DFRCP,3622,4455,4762,5181,4633,4724,4714,5294,5769,6039,6039,6378,6631,6643,6094,5709,7054,6620,6687,4314,3519,3477,3223,3023,3556,3619,3611,4504,4227,4789,4034,4127,4282,4068,4243,4448,4643,4635,4319,4530,4577,4523,4164,5112,5336,4795,4237,4068,3954,3391,3035,3280,2410,2992,3478,3653,3506,4123,4423,4262
-2019F,NH,DFTCP,4590,5582,5919,6377,5831,5912,6071,6829,7227,7605,7681,8093,8393,8418,7756,7194,8833,8349,8474,5856,5820,5301,5072,4516,5308,5754,6280,8445,7590,8191,7236,7159,7454,7035,7433,7534,7808,7802,8335,8835,9403,9340,10257,10404,10914,9785,8837,8226,7980,7429,6865,7136,5830,6516,7619,7461,6996,7671,8201,7968
-2019F,NH,DFTXP,4488,5505,5846,6305,5759,5814,5960,6694,7104,7463,7497,7898,8201,8331,7699,7180,8822,8345,8471,5852,5808,5285,5057,4496,5279,5723,6245,8417,7527,8129,7197,7120,7417,6987,7378,7483,7780,7765,8303,8799,9373,9302,10200,10338,10743,9650,8581,8143,7955,7406,6838,7123,5821,6464,7384,7382,6984,7572,8112,7956
-2019F,NH,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,362,0,0,53,28,75,106,174,74,71,60,1,0,0,0,0,0,0,0,0
-2019F,NH,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,832,1111,721,185,37,537,902,1076,1179,1276,1325,1699,1766,1934,1947,766,326,200,452,576,583,791,939,1102,698,855,0,217,250,233,206,138,203,0
-2019F,NH,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-2382,-4945,-5943,-7447,-4597,-6571,-8115,-7305,-7457,-7006,-5227,-4424,-4721,-9527,-11980,-12438,-10197,-11653,-11870,-9636,-11109,-9264,-7482,-8070,-8015,-8412,-7771,-6034,-5500,-6623
-2019F,NH,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,832,1111,721,185,37,537,902,1076,1179,1276,1325,1699,1759,1934,1585,766,326,147,424,501,477,617,864,1031,638,854,0,216,250,233,206,138,203,0
-2019F,NH,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,808,1019,1055,1283,1715,1641,1618,1673,1674,1665,1675,1701,1715,1736
-2019F,NH,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,4,4,5,5,5,6,6,35,36,32,33,34
-2019F,NH,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,17,11,9,11,18,19,18,19,15,18,18,18,19,19
-2019F,NH,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,831,1033,1068,1298,1738,1665,1642,1698,1695,1719,1730,1752,1766,1788
-2019F,NH,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,ESCCP,371,399,427,454,481,468,474,549,588,636,699,769,841,910,884,883,925,977,1038,1075,1110,1182,1223,1342,1484,1582,1718,1910,2046,2123,2117,2140,2193,2241,3343,3357,3373,3407,3478,3732,3905,4044,4159,4318,4363,4576,4563,4570,4518,4441,4462,4478,4478,4517,4465,4491,4466,4390,4443,4281
-2019F,NH,ESICP,596,625,675,734,799,902,995,1082,1273,1367,1452,1562,1693,1845,1806,1839,2025,2092,2317,2427,2406,2421,2345,2414,2545,2974,3079,3202,3339,3420,3418,3265,3333,3100,2182,2286,2344,2372,2425,2516,2597,2483,2222,2403,2328,2174,2131,2173,2065,1836,1942,1936,1953,1973,1969,1981,2000,1956,1963,1924
-2019F,NH,ESRCP,619,662,708,751,802,868,931,1051,1168,1308,1476,1666,1910,2065,2118,2148,2321,2345,2421,2464,2478,2481,2460,2514,2758,2851,3075,3261,3464,3542,3444,3357,3428,3420,3431,3364,3429,3389,3401,3640,3656,3789,4003,4252,4282,4495,4401,4493,4394,4422,4485,4454,4439,4554,4510,4527,4438,4441,4641,4507
-2019F,NH,ESRPP,1017,1071,1120,1156,1209,1284,1368,1508,1647,1806,1989,2187,2445,2578,2596,2592,2746,2697,2716,2710,2681,2649,2596,2623,2823,2860,2999,3093,3199,3207,3096,3024,3067,3028,3003,2906,2919,2849,2820,2979,2949,3018,3154,3322,3319,3462,3363,3423,3339,3360,3406,3373,3351,3431,3381,3385,3303,3289,3425,3312
-2019F,NH,ESTCP,1586,1686,1809,1938,2082,2237,2400,2682,3029,3311,3627,3997,4444,4820,4808,4870,5271,5414,5776,5966,5994,6084,6029,6270,6786,7407,7872,8373,8848,9086,8980,8762,8954,8761,8956,9007,9146,9167,9303,9888,10159,10316,10383,10973,10973,11245,11094,11236,10977,10698,10890,10869,10870,11043,10944,10999,10905,10787,11046,10712
-2019F,NH,ESTPP,2604,2728,2863,2986,3140,3310,3524,3847,4272,4573,4889,5246,5689,6018,5893,5878,6236,6225,6479,6563,6485,6496,6361,6544,6947,7431,7680,7942,8173,8226,8072,7894,8011,7757,7839,7781,7786,7707,7714,8092,8193,8216,8182,8573,8506,8660,8479,8560,8342,8129,8270,8231,8206,8320,8202,8224,8116,7988,8152,7872
-2019F,NH,ESTXP,1586,1686,1809,1938,2082,2237,2400,2682,3029,3311,3627,3997,4444,4820,4808,4870,5271,5414,5776,5966,5994,6084,6029,6270,6786,7407,7872,8373,8848,9086,8980,8762,8954,8761,8956,9007,9146,9167,9303,9888,10159,10316,10383,10973,10973,11245,11094,11236,10977,10698,10890,10869,10870,11043,10944,10999,10905,10787,11046,10712
-2019F,NH,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,FSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,13,14,16,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,HLACP,0,0,1,1,1,1,2,2,4,4,5,6,6,6,5,5,6,8,25,35,74,10,9,11,25,24,16,19,14,14,15,9,10,17,24,18,15,10,2,0,0,0,41,8,8,10,11,8,42,7,7,9,10,7,7,12,18,7,1,1
-2019F,NH,HLCCP,144,128,147,133,155,161,128,132,141,168,166,179,212,206,196,242,257,263,305,195,206,205,209,248,261,299,361,428,473,564,506,429,449,517,536,581,641,562,630,657,629,618,620,974,751,670,690,826,1146,847,863,1098,1531,1535,1810,1662,1507,1146,1474,1442
-2019F,NH,HLICP,47,60,69,77,88,114,116,161,240,213,267,310,424,456,495,617,749,1000,767,686,514,516,607,480,304,556,448,595,476,558,402,198,239,405,393,312,294,282,323,194,656,368,216,239,215,409,618,390,252,233,103,221,136,164,148,134,84,357,142,103
-2019F,NH,HLRCP,341,302,348,315,368,380,303,312,334,398,392,423,502,487,464,572,609,622,721,463,487,485,494,587,617,708,855,1014,1121,1335,1199,1016,1063,1224,1268,1375,1517,1329,1492,1555,1488,1463,1467,1916,1902,1802,1697,2084,2436,2553,2167,2226,2243,2537,3296,2997,2626,2500,2807,2789
-2019F,NH,HLTCP,532,490,565,526,612,657,548,607,719,783,829,918,1144,1155,1161,1436,1622,1893,1817,1379,1280,1216,1318,1325,1207,1586,1680,2056,2084,2470,2122,1652,1761,2163,2221,2285,2466,2183,2447,2407,2773,2449,2344,3136,2875,2891,3015,3308,3876,3640,3140,3554,3921,4243,5262,4804,4234,4010,4424,4335
-2019F,NH,HLTXP,532,490,565,526,612,657,548,607,719,783,829,918,1144,1155,1161,1436,1622,1893,1817,1379,1280,1216,1318,1325,1207,1586,1680,2056,2084,2470,2122,1652,1761,2163,2221,2285,2466,2183,2447,2407,2773,2449,2344,3136,2875,2891,3015,3308,3876,3640,3140,3554,3921,4243,5262,4804,4234,4010,4424,4335
-2019F,NH,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,HYEGP,1134,987,1146,1056,968,882,1041,1022,1028,1259,1056,929,1094,1435,1292,1073,1330,1216,965,1050,872,1206,1095,1198,1100,975,1104,896,968,1172,1706,1410,1199,1215,1265,1201,1713,1425,1398,1212,1244,898,1088,1170,1310,1791,1524,1261,1626,1671,1472,1600,1247,1427,1381,1270,1145,1413,1355,1462
-2019F,NH,HYICP,239,203,212,234,184,170,186,180,177,180,184,164,176,179,173,178,185,188,166,162,155,155,155,155,155,155,155,155,155,168,175,175,194,195,196,169,206,197,199,200,183,93,53,162,6,8,5,4,8,9,5,5,0,0,0,0,0,0,0,0
-2019F,NH,HYTCP,1373,1189,1358,1289,1152,1053,1227,1202,1205,1439,1239,1093,1270,1613,1465,1251,1515,1404,1131,1212,1027,1361,1250,1353,1255,1131,1260,1051,1123,1341,1881,1585,1394,1411,1461,1370,1919,1622,1597,1411,1427,991,1141,1331,1316,1799,1529,1265,1633,1680,1478,1605,1247,1427,1381,1270,1145,1413,1355,1462
-2019F,NH,HYTXP,239,203,212,234,184,170,186,180,177,180,184,164,176,179,173,178,185,188,166,162,155,155,155,155,155,155,155,155,155,168,175,175,194,195,196,169,206,197,199,200,183,93,53,162,6,8,5,4,8,9,5,5,0,0,0,0,0,0,0,0
-2019F,NH,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,JFACP,1151,1169,1258,1292,1327,1097,1148,1282,1451,1245,1053,1086,1023,935,948,903,866,913,837,771,771,582,633,574,820,521,620,644,725,759,647,468,378,388,342,333,360,408,610,820,977,880,839,942,904,452,162,152,152,338,796,779,709,687,697,565,603,614,590,698
-2019F,NH,JFTCP,1151,1169,1258,1292,1327,1097,1148,1282,1451,1245,1053,1086,1058,960,968,916,876,919,841,774,777,585,637,574,820,521,620,644,725,759,647,468,378,388,342,333,360,408,610,820,977,880,839,942,904,452,162,152,152,338,796,779,709,687,697,565,603,614,590,698
-2019F,NH,JFTXP,1151,1169,1258,1292,1327,1097,1148,1282,1451,1245,1053,1086,1023,935,948,903,866,913,837,771,771,582,633,574,820,521,620,644,725,759,647,468,378,388,342,333,360,408,610,820,977,880,839,942,904,452,162,152,152,338,796,779,709,687,697,565,603,614,590,698
-2019F,NH,KSCCP,30,33,33,33,25,26,22,20,22,24,26,26,23,17,16,15,17,15,13,8,9,4,8,5,13,41,20,36,44,54,25,21,22,35,41,44,42,58,57,42,47,53,35,43,46,62,46,39,12,14,13,11,3,5,8,5,10,8,8,14
-2019F,NH,KSICP,10,3,19,14,18,22,44,28,44,57,46,49,54,24,23,42,49,30,30,12,9,5,6,3,5,6,7,26,11,14,8,31,20,9,14,19,17,26,20,19,14,19,15,23,19,34,20,8,7,0,1,2,0,2,6,0,2,1,0,0
-2019F,NH,KSRCP,803,890,881,878,679,710,606,547,606,644,705,690,629,452,441,406,468,394,364,216,322,206,234,217,523,855,353,403,438,469,233,269,250,351,282,331,393,476,620,377,393,353,262,415,523,561,434,297,140,185,163,117,44,54,77,65,103,76,77,101
-2019F,NH,KSTCP,843,926,933,925,722,758,673,596,673,725,777,765,706,493,480,463,534,439,407,236,340,215,248,225,541,902,380,466,492,538,266,322,293,395,337,394,451,560,697,437,454,425,312,481,588,657,500,344,159,199,177,130,47,60,91,71,116,86,85,114
-2019F,NH,KSTXP,843,926,933,925,722,758,673,596,673,725,777,765,706,493,480,463,534,439,407,236,340,215,248,225,541,902,380,466,492,538,266,322,293,395,337,394,451,560,697,437,454,425,312,481,588,657,500,344,159,199,177,130,47,60,91,71,116,86,85,114
-2019F,NH,LUACP,74,72,64,64,67,60,63,56,61,54,55,57,61,60,58,48,53,60,64,67,60,58,53,55,59,55,53,60,58,60,61,55,56,57,60,59,57,60,63,64,63,57,57,52,53,53,52,53,49,44,95,91,82,87,90,98,91,84,81,77
-2019F,NH,LUICP,22,22,21,21,22,24,24,19,21,17,17,20,21,18,18,22,24,23,25,26,23,22,20,21,23,21,21,23,23,23,24,21,22,22,23,23,22,23,24,25,24,22,22,20,21,21,20,21,19,17,66,60,54,60,59,71,70,65,62,58
-2019F,NH,LUTCP,97,94,85,85,89,84,87,75,83,71,72,77,82,79,75,70,78,83,89,94,83,80,73,76,81,76,74,84,81,83,85,76,78,79,83,81,79,83,87,88,87,80,79,73,74,73,71,74,69,62,161,151,137,146,149,168,161,149,143,135
-2019F,NH,LUTXP,97,94,85,85,89,84,87,75,83,71,72,77,82,79,75,70,78,83,89,94,83,80,73,76,81,76,74,84,81,83,85,76,78,79,83,81,79,83,87,88,87,80,79,73,74,73,71,74,69,62,161,151,137,146,149,168,161,149,143,135
-2019F,NH,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,MGACP,4837,4897,5059,5277,5426,5677,6090,6393,7017,7442,8038,8495,8946,9240,9129,9290,9835,10232,10451,9714,9240,9147,9056,9317,9937,10152,10917,11653,12110,12066,11649,12030,12012,12393,12702,13376,13820,14540,15001,15496,15777,15783,16408,16537,16698,16542,16836,17473,17188,17004,16883,16433,16241,16513,16520,16448,16513,16629,16748,16736
-2019F,NH,MGCCP,37,41,44,44,42,43,46,47,49,59,46,47,49,50,49,52,53,54,58,56,116,91,76,67,67,126,146,129,142,128,74,55,48,11,11,11,11,11,11,11,14,20,11,11,12,17,129,47,61,48,53,53,55,57,57,349,358,317,320,323
-2019F,NH,MGICP,66,57,79,52,52,53,55,44,40,31,38,34,37,27,40,31,29,26,22,17,27,18,19,21,31,61,67,64,68,91,55,50,51,91,99,109,108,116,74,151,161,298,318,344,364,349,360,188,151,146,181,187,182,189,148,177,178,180,184,185
-2019F,NH,MGTCP,4940,4994,5182,5373,5520,5773,6191,6484,7106,7533,8122,8577,9032,9317,9218,9373,9917,10312,10531,9787,9382,9256,9151,9405,10035,10340,11130,11846,12320,12285,11778,12135,12111,12494,12811,13495,13939,14666,15086,15659,15952,16102,16737,16893,17074,16908,17326,17708,17400,17197,17117,16674,16478,16759,16724,16974,17049,17126,17252,17244
-2019F,NH,MGTXP,4940,4994,5182,5373,5520,5773,6191,6484,7106,7533,8122,8577,9032,9317,9218,9373,9917,10312,10531,9787,9382,9256,9151,9405,10035,10340,11130,11846,12320,12285,11778,12135,12111,12494,12811,13495,13939,14666,15086,15659,15952,16102,16737,16893,17074,16908,17326,17708,17400,17197,17117,16674,16478,16759,16724,16974,17049,17126,17252,17244
-2019F,NH,MSICP,6,7,8,4,4,4,21,19,21,20,18,2,2,2,3,4,34,38,33,31,29,14,12,11,9,10,6,6,7,6,6,10,7,6,7,7,119,131,159,150,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,NGACP,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,26,66,85,20,25,84,22,19,22,19,22,33,81,341,987,41,51,195,23,3,33,25,61,26,23,32,31,29,23,45,275,239,64,129,155,151,292,188,146,161
-2019F,NH,NGCCP,501,515,635,704,719,801,920,1373,1171,1636,2255,2523,2575,2326,2409,2618,2567,2587,2997,3369,4116,4376,4414,4437,4100,4955,4438,4601,5034,5371,5073,5028,5862,6142,6412,6514,7099,7489,6808,7214,8323,7349,8768,9673,8943,9844,8494,9360,10043,9935,8406,8890,8130,9204,9412,9630,8509,9078,10129,10135
-2019F,NH,NGEIP,0,0,0,0,0,0,0,0,0,0,0,174,115,152,357,177,7,0,0,30,0,138,0,20,67,0,0,15,55,23,0,0,633,136,1277,2248,3,564,151,572,783,527,1096,28627,37732,45926,41339,39013,48688,38070,38937,46812,50408,29644,31240,42673,33841,25975,21563,25460
-2019F,NH,NGICP,659,594,530,616,579,656,877,303,499,701,801,971,1021,1359,1245,1099,1171,1180,1203,1223,1001,1175,1053,869,1726,892,729,1731,1971,2241,3276,3457,3828,3805,4471,4607,4916,5830,5878,5912,8537,8685,8054,7882,7388,6889,5968,6337,5370,4688,6022,7083,7007,7866,8456,8386,8454,9499,9916,9834
-2019F,NH,NGRCP,1692,1909,2150,2276,2515,2627,2363,2777,2500,3437,3673,3914,4225,4219,4322,3737,4095,3850,3945,3743,4331,4465,4526,4309,4613,4698,5102,5604,5927,6290,5903,5609,6449,6493,6572,6507,7012,6939,6267,6613,7274,6812,6922,7940,7086,7793,6718,7394,7054,7213,6738,6955,6422,7185,7755,7842,6861,7331,8134,8034
-2019F,NH,NGTCP,2852,3018,3315,3596,3813,4084,4160,4460,4170,5774,6729,7582,7936,8056,8333,7631,7840,7617,8145,8365,9474,10220,10078,9655,10531,10629,10291,11970,13009,13944,14274,14127,16852,16918,19719,19918,19082,21018,19127,20313,24950,23398,24901,54147,61172,70484,62549,62132,71178,59951,60378,69979,72031,54028,57018,68682,57957,52071,49888,53624
-2019F,NH,NGTPP,4.7,4.9,5.2,5.5,5.8,6,6.1,6.4,5.9,8,9.1,10,10.2,10.1,10.2,9.2,9.3,8.8,9.1,9.2,10.3,10.9,10.6,10.1,10.8,10.7,10,11.4,12,12.6,12.8,12.7,15.1,15,17.3,17.2,16.2,17.7,15.9,16.6,20.1,18.6,19.6,42.3,47.4,54.3,47.8,47.3,54.1,45.6,45.9,53,54.4,40.7,42.7,51.4,43.1,38.6,36.8,39.4
-2019F,NH,NGTXP,2852,3018,3315,3596,3813,4084,4160,4460,4170,5774,6729,7408,7821,7904,7976,7454,7833,7617,8145,8335,9474,10082,10078,9635,10464,10629,10291,11955,12954,13922,14274,14127,16220,16782,18443,17670,19079,20454,18977,19741,24167,22871,23805,25520,23439,24559,21211,23119,22490,21881,21441,23167,21623,24384,25778,26009,24116,26096,28325,28164
-2019F,NH,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4081,6788,7869,9047,6204,8379,9845,7979,8387,8676,7922,8693,9295,9276,10178,9456,9398,10764,9350,8817,10910,8363,8189,10927,10168,9484,10761,9991,10062,10907
-2019F,NH,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4081,6788,7869,9047,6204,8379,9845,7979,8387,8676,7922,8693,9295,9276,10178,9456,9398,10764,9350,8817,10910,8363,8189,10927,10168,9484,10761,9991,10062,10907
-2019F,NH,OPICP,22,22,22,17,17,17,59,57,64,65,63,43,45,57,238,168,237,253,255,242,234,101,81,85,83,85,79,84,88,87,86,19,16,17,18,17,131,142,170,159,168,35,43,35,24,28,42,46,49,27,17,15,11,76,80,75,71,6,6,5
-2019F,NH,OPTCP,22,22,22,17,17,17,59,57,64,65,63,43,45,57,238,168,237,253,255,242,234,101,81,85,83,85,79,84,88,87,86,19,16,17,18,17,131,142,170,159,168,35,43,35,24,28,42,46,49,27,17,15,11,76,80,75,71,6,6,5
-2019F,NH,OPTXP,22,22,22,17,17,17,59,57,64,65,63,43,45,57,238,168,237,253,255,242,234,101,81,85,83,85,79,84,88,87,86,19,16,17,18,17,131,142,170,159,168,35,43,35,24,28,42,46,49,27,17,15,11,76,80,75,71,6,6,5
-2019F,NH,P1ICP,524,402,459,547,648,486,623,476,634,529,667,727,817,926,845,662,798,740,766,705,520,479,475,501,1079,966,660,913,551,866,1315,731,849,369,436,424,797,603,483,490,539,309,487,969,915,1127,735,824,1066,741,792,738,775,783,800,779,632,1047,615,469
-2019F,NH,P1TCP,1449,1418,1486,1551,1457,1329,1359,1135,1366,1292,1491,1549,1574,1498,1401,1164,1366,1245,1251,1037,951,776,795,804,1693,1940,1124,1441,1128,1482,1656,1103,1197,854,851,880,1307,1219,1243,1000,1066,837,890,1524,1602,1871,1312,1259,1295,1031,1094,986,929,950,996,965,854,1232,803,683
-2019F,NH,P1TXP,1449,1418,1486,1551,1457,1329,1359,1135,1366,1292,1491,1549,1574,1498,1401,1164,1366,1245,1251,1037,951,776,795,804,1693,1940,1124,1441,1128,1482,1656,1103,1197,854,851,880,1307,1219,1243,1000,1066,837,890,1524,1602,1871,1312,1259,1295,1031,1094,986,929,950,996,965,854,1232,803,683
-2019F,NH,PAACP,6338,6586,6717,6909,7128,7061,7682,8432,8955,9174,9577,10009,10415,10741,10693,10706,11303,11780,12018,12170,10921,10580,10559,10781,11791,11837,12948,14021,14503,14372,13706,13944,13836,14169,14476,15280,15700,16538,18078,18773,19154,19184,21265,20054,20525,19660,19703,20203,19876,19831,20163,19676,19309,19551,19709,19560,19548,19692,19909,19955
-2019F,NH,PACCP,605,684,752,782,741,747,742,779,837,939,936,998,1063,1044,954,959,1131,1091,1121,723,1747,1302,1510,1034,1239,1168,2049,2790,2468,2539,2667,2497,2154,2135,2455,2200,2461,2429,2210,2270,2718,2519,2336,3189,3453,3537,2407,2467,2536,2278,2163,2490,2528,2486,2915,3016,2868,2442,2825,2834
-2019F,NH,PAEIP,1504,1121,1070,1054,1071,1441,1636,1977,1805,2092,2721,2796,2446,2127,1940,2306,3076,2840,3506,4314,4366,4003,2612,2680,3410,2363,4569,3576,4870,5135,4022,2708,2321,2340,2470,1819,1510,1845,2372,2664,784,832,1153,3522,3270,2206,680,622,240,305,116,126,45,171,427,275,49,146,280,34
-2019F,NH,PAICP,1644,1686,2330,2449,2654,2120,3465,2531,2443,3722,4325,5013,5442,5218,4265,4035,4934,5153,4070,2415,2541,2000,2179,2146,2925,3035,3530,3623,2572,2723,2812,1953,2741,2728,2637,2369,2548,2141,1969,1896,2483,2230,2134,2683,2703,2812,2968,2301,2445,2047,1799,1686,1550,1678,1695,1532,1268,1917,1315,1175
-2019F,NH,PARCP,4766,5647,5991,6375,5680,5815,5624,6154,6710,7082,7136,7492,7762,7583,6999,6687,8130,7637,7771,4992,4328,4168,3950,3827,4696,5181,4819,5921,5785,6593,5466,5413,5595,5644,5793,6154,6552,6440,6431,6462,6457,6339,5892,7444,7760,7158,6368,6449,6531,6129,5365,5623,4698,5582,6852,6715,6235,6699,7306,7152
-2019F,NH,PATCP,14856,15723,16859,17569,17274,17183,19148,19872,20751,23008,24696,26308,27128,26713,24850,24694,28574,28500,28486,24615,23904,22053,20810,20468,24061,23584,27915,29931,30198,31362,28673,26515,26647,27016,27831,27822,28772,29393,31060,32066,31596,31104,32780,36892,37711,35374,32127,32042,31627,30589,29606,29601,28130,29467,31598,31097,29968,30896,31635,31150
-2019F,NH,PATPP,24.4,25.4,26.7,27.1,26.1,25.4,28.1,28.5,29.3,31.8,33.3,34.5,34.7,33.4,30.5,29.8,33.8,32.8,32,27.1,25.9,23.5,22,21.4,24.6,23.7,27.2,28.4,27.9,28.4,25.8,23.9,23.8,23.9,24.4,24,24.5,24.7,25.8,26.2,25.5,24.8,25.8,28.8,29.2,27.2,24.6,24.4,24,23.2,22.5,22.4,21.2,22.2,23.7,23.3,22.3,22.9,23.3,22.9
-2019F,NH,PATXP,13353,14603,15789,16515,16202,15742,17512,17896,18946,20916,21974,23512,24682,24585,22910,22388,25499,25660,24980,20300,19537,18050,18198,17788,20651,21221,23346,26355,25328,26227,24651,23807,24326,24676,25361,26003,27262,27548,28687,29402,30812,30272,31627,33370,34441,33167,31447,31420,31388,30284,29490,29475,28084,29296,31171,30823,29919,30750,31355,31117
-2019F,NH,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,9,10,7,7,12,18,7,1,1
-2019F,NH,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,863,1098,1531,1535,1810,1662,1507,1146,1474,1442
-2019F,NH,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,103,221,136,164,148,134,84,357,142,103
-2019F,NH,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2167,2226,2243,2537,3296,2997,2626,2500,2807,2789
-2019F,NH,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3140,3554,3921,4243,5262,4804,4234,4010,4424,4335
-2019F,NH,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3140,3554,3921,4243,5262,4804,4234,4010,4424,4335
-2019F,NH,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NH,RFACP,49,206,70,68,0,1,0,286,137,113,69,36,40,20,26,9,5,0,0,861,49,49,29,0,0,0,50,227,146,19,82,199,121,1,10,0,5,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,0
-2019F,NH,RFCCP,18,20,33,34,37,26,56,30,25,60,71,84,89,81,60,56,70,72,50,15,372,469,626,310,423,87,522,282,488,474,648,671,322,375,446,436,447,474,277,126,125,82,123,153,810,1251,409,442,356,326,253,248,160,135,67,86,168,176,158,163
-2019F,NH,RFEIP,1401,1045,997,982,998,1343,1525,1842,1682,1949,2537,2601,2219,2015,1863,2279,3055,2830,3499,4308,4348,3984,2593,2659,3381,2332,4535,3548,4808,5074,3983,2669,2283,2291,2414,1768,1482,1809,2341,2628,754,795,1096,3456,3098,2072,424,538,214,281,89,113,36,120,192,195,38,47,190,21
-2019F,NH,RFICP,727,800,1348,1365,1491,1046,2251,1377,1037,2428,2842,3366,3580,3248,2398,2266,2830,2880,2023,597,923,417,589,874,1194,1024,1976,1441,909,609,522,459,1020,1413,1303,1092,957,829,715,592,546,619,493,384,433,144,642,408,354,347,252,111,66,57,39,46,26,19,17,39
-2019F,NH,RFTCP,2195,2070,2449,2450,2526,2416,3831,3535,2882,4550,5520,6086,5928,5363,4346,4611,5960,5782,5572,5781,5692,4919,3837,3843,4997,3442,7082,5499,6351,6176,5235,3998,3746,4081,4172,3295,2891,3115,3339,3347,1425,1496,1713,3993,4341,3466,1474,1388,924,954,594,472,264,313,300,328,232,243,365,223
-2019F,NH,RFTXP,794,1026,1452,1468,1528,1072,2307,1692,1200,2601,2982,3486,3708,3349,2483,2332,2905,2952,2073,1474,1344,935,1244,1184,1616,1110,2548,1951,1543,1103,1251,1329,1463,1790,1758,1527,1409,1306,998,719,671,702,617,538,1243,1394,1051,850,710,672,504,359,227,193,108,132,194,195,175,201
-2019F,NH,SGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,106,133,153,156,153,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,38,30,19,23,37,41,44,24,14,12,8,74,78,73,69,4,4,4
-2019F,NH,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,5,7,14,26,32,41
-2019F,NH,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,5,7,8
-2019F,NH,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,6,9,16,36,56,69,81
-2019F,NH,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,6,11,14,24,52,87,108,130
-2019F,NH,TPOPP,609,618,632,649,663,676,681,697,709,724,742,762,781,801,816,829,845,870,892,909,924,937,948,958,977,997,1025,1054,1083,1105,1112,1110,1118,1129,1143,1158,1175,1189,1206,1222,1240,1256,1269,1280,1290,1298,1308,1313,1316,1316,1317,1320,1325,1327,1334,1337,1344,1350,1355,1361
-2019F,NH,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,WXICP,15,15,14,13,12,13,38,38,43,45,45,41,43,55,54,48,58,48,50,49,48,87,68,74,74,75,73,79,81,80,80,9,10,10,10,10,12,11,11,9,8,6,5,5,5,5,6,5,4,3,4,3,3,2,2,2,2,1,2,1
-2019F,NH,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,62,76,66,209,389,412,423,432,412,407,433
-2019F,NH,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NH,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,62,76,66,209,389,412,423,432,412,407,433
-2019F,NH,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,27,4,0,15,3,0,-6,1,1,0,1,1,41,34,51,65,27,46,25,41,50,57,76,66,5,13,1,-4,-1,0,0,-2,-1,-2,-1,-1,-7,-5
-2019F,NJ,ARICP,4657,5021,5424,5368,5243,5340,5313,5137,5335,5716,5828,6029,6310,7355,6308,5012,4452,5489,6017,5500,4369,4931,4835,6112,6241,4733,5565,5312,4332,4032,3586,3137,3378,8291,5220,6151,5373,8214,7620,10741,8814,9984,11010,5922,5167,5115,4947,6730,4370,3917,3383,3183,2928,3031,1756,3156,1558,3474,3282,3605
-2019F,NJ,ARTCP,4657,5021,5424,5368,5243,5340,5313,5137,5335,5716,5828,6029,6310,7355,6308,5012,4452,5489,6017,5500,4369,4931,4835,6112,6241,4733,5565,5312,4332,4032,3586,3137,3378,8291,5220,6151,5373,8214,7620,10741,8814,9984,11010,5922,5167,5115,4947,6730,4370,3917,3383,3183,2928,3031,1756,3156,1558,3474,3282,3605
-2019F,NJ,ARTXP,4657,5021,5424,5368,5243,5340,5313,5137,5335,5716,5828,6029,6310,7355,6308,5012,4452,5489,6017,5500,4369,4931,4835,6112,6241,4733,5565,5312,4332,4032,3586,3137,3378,8291,5220,6151,5373,8214,7620,10741,8814,9984,11010,5922,5167,5115,4947,6730,4370,3917,3383,3183,2928,3031,1756,3156,1558,3474,3282,3605
-2019F,NJ,AVACP,1147,1020,1874,1541,1345,1153,1109,566,331,180,160,121,118,106,137,92,88,104,111,92,83,75,141,155,135,184,159,201,152,128,119,100,122,121,158,145,114,133,132,106,90,61,214,215,113,109,88,139,81,51,82,77,70,60,84,44,45,46,51,57
-2019F,NJ,AVTCP,1147,1020,1874,1541,1345,1153,1109,566,331,180,160,121,118,106,137,92,88,104,111,92,83,75,141,155,135,184,159,201,152,128,119,100,122,121,158,145,114,133,132,106,90,61,214,215,113,109,88,139,81,51,82,77,70,60,84,44,45,46,51,57
-2019F,NJ,AVTXP,1147,1020,1874,1541,1345,1153,1109,566,331,180,160,121,118,106,137,92,88,104,111,92,83,75,141,155,135,184,159,201,152,128,119,100,122,121,158,145,114,133,132,106,90,61,214,215,113,109,88,139,81,51,82,77,70,60,84,44,45,46,51,57
-2019F,NJ,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,11,31,42,36,38,31,105,80,385,380,418,768,732,407,320
-2019F,NJ,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,11,31,42,36,38,31,105,80,385,380,418,768,732,407,320
-2019F,NJ,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,CLACP,41,10,9,8,7,6,5,4,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,CLCCP,185,170,145,144,126,120,95,85,79,74,66,73,63,81,71,56,52,51,45,37,44,81,78,71,28,84,47,22,19,12,10,9,12,7,8,6,7,5,4,4,4,4,4,3,5,3,2,2,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,CLEIP,3565,4685,4732,4960,5657,6829,7123,5888,5608,4332,4054,3442,1107,2380,3117,2250,2604,2581,2222,2209,2545,2768,2744,3132,2853,3476,2637,3081,2773,3244,2740,2081,2118,2134,2371,2996,3308,3824,3284,3392,4382,4305,4070,4180,4429,4995,4635,4669,4165,2541,3082,1976,1007,1017,1214,893,667,631,648,530
-2019F,NJ,CLICP,2368,2256,2356,2045,1911,1921,1693,1536,1463,970,740,145,62,100,159,67,39,94,56,18,33,22,148,269,308,359,263,324,261,286,276,234,215,222,72,12,7,10,10,8,8,6,5,7,6,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,CLKCP,746,570,456,403,347,436,519,480,482,439,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,CLOCP,1621,1687,1900,1642,1564,1485,1174,1055,981,531,402,145,62,100,159,67,39,94,56,18,33,22,148,269,308,359,263,324,261,286,276,234,215,222,72,12,7,10,10,8,8,6,5,7,6,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,CLRCP,266,245,209,200,174,159,127,113,101,94,84,70,47,48,33,24,21,20,13,9,12,18,16,13,7,24,14,7,5,3,3,2,3,1,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,CLTCP,6424,7367,7452,7357,7874,9034,9043,7626,7255,5471,4946,3730,1279,2609,3379,2397,2717,2746,2337,2273,2634,2889,2986,3485,3196,3943,2961,3434,3058,3545,3029,2326,2348,2364,2453,3015,3323,3841,3299,3405,4395,4315,4079,4191,4440,5004,4642,4672,4165,2541,3082,1976,1007,1017,1214,893,667,631,648,530
-2019F,NJ,CLTXP,2860,2682,2720,2396,2218,2205,1920,1738,1647,1140,892,288,172,229,263,146,113,165,115,64,89,121,242,353,343,467,324,353,285,301,289,245,230,230,82,20,15,16,15,13,13,10,9,11,11,9,7,3,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,DFACP,4748,5252,4965,5222,6180,5964,8234,8151,8221,8898,8558,8936,9041,9926,9883,8907,9165,9783,10289,11112,10243,9367,10407,11477,11897,13766,14877,15168,16388,15272,12982,12931,14231,14314,16928,15309,15705,18239,19482,19768,20536,21971,22039,22864,23903,25130,25123,26568,23219,18607,20646,23817,20331,20621,21782,20747,23415,21058,21979,21496
-2019F,NJ,DFCCP,8640,8864,9202,9693,9605,9805,9816,10217,10645,10881,11121,11016,11859,12003,10503,10351,10600,10042,9495,7255,9167,7662,7030,7166,8429,6296,9909,8894,9044,9078,8217,7592,7399,5978,5543,3467,4944,3406,3061,4121,3340,3394,2414,3145,2680,3498,2092,3349,2448,2219,1944,2467,1891,2018,2184,1906,1622,1511,1448,1647
-2019F,NJ,DFEIP,357,274,289,330,372,382,496,685,827,1055,1220,2850,6078,7627,8620,1754,1751,1721,1370,1303,2128,755,349,996,1033,671,697,1024,1657,2222,686,615,352,587,825,1279,626,477,519,712,1135,1343,286,776,691,428,127,226,219,59,208,92,43,66,276,121,61,56,258,75
-2019F,NJ,DFICP,6719,6811,7393,7733,7544,8423,8901,9118,9244,9613,9560,9126,9786,9849,8252,7963,8212,8019,7419,9531,7339,9715,8400,3625,4264,2835,3823,3389,3662,3862,3453,2928,2327,2212,2478,1994,1927,1789,2002,2076,1795,2434,2149,2152,3135,1958,2231,1977,1838,1960,1697,2099,1901,1643,2085,2137,2209,1687,1558,1725
-2019F,NJ,DFRCP,25587,26252,27252,28705,28444,29038,29071,30256,31524,32223,32933,32623,35119,35546,31103,30655,31391,29738,28119,21486,23976,23162,19292,16041,18867,20180,19250,19920,20013,17704,13661,12813,13023,12303,13727,12030,12169,11361,9127,9771,10228,9469,9050,10615,9909,8801,7079,7527,7972,6639,5447,4596,4202,4416,4963,4916,3257,3253,4302,4182
-2019F,NJ,DFTCP,46051,47452,49101,51683,52146,53611,56518,58426,60461,62670,63391,64551,71884,74951,68360,59630,61119,59302,56692,50687,52854,50660,45479,39307,44489,43747,48556,48395,50764,48137,38999,36878,37333,35394,39502,34080,35370,35271,34192,36449,37034,38612,35937,39551,40318,39814,36651,39647,35696,29485,29942,33070,28369,28763,31289,29827,30563,27565,29546,29126
-2019F,NJ,DFTXP,45694,47179,48812,51353,51774,53229,56022,57742,59635,61615,62171,61701,65805,67324,59740,57876,59368,57581,55322,49384,50726,49905,45130,38310,43456,43076,47859,47371,49107,45915,38313,36264,36981,34807,38677,32801,34745,34794,33673,35736,35899,37268,35651,38775,39627,39386,36525,39421,35477,29425,29734,32978,28326,28697,31013,29706,30502,27509,29288,29051
-2019F,NJ,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0
-2019F,NJ,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,247,0,361,234,234,143,1,23,0
-2019F,NJ,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30449,28921,27369,25589,25878,30042,37420,32123,22277,22694,20369,21566,22363,27647,31231,30730,27960,26696,24337,20741,19912,18295,16320,16052,11325,7091,3979,3821,6803,8762
-2019F,NJ,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,247,0,360,233,232,142,1,22,0
-2019F,NJ,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,27,94,289,244,277,218,187,221,294,25,26,142,2748,7386,9217,7801,9250,10482,10014,9551,9781,9944,9820,9997,9569,9270,9380
-2019F,NJ,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,7,6,6,7,7,7,7,15,224,226,225,225,231
-2019F,NJ,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,0,1,3,0,0,2,28,79,103,72,84,120,115,110,113,88,129,130,133,134,137
-2019F,NJ,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,27,95,292,246,279,219,187,221,297,25,26,144,2778,7470,9327,7879,9341,10610,10135,9667,9902,10048,10173,10352,9926,9629,9748
-2019F,NJ,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,ESACP,4,4,4,4,4,4,4,3,3,37,39,39,42,42,43,43,42,39,36,33,33,35,35,32,68,95,105,114,99,121,117,120,124,121,126,125,135,132,143,134,144,237,228,184,290,299,291,293,302,320,321,310,287,301,303,304,303,307,310,301
-2019F,NJ,ESCCP,4391,4921,5326,5756,6354,6945,7605,8163,8973,9793,10799,11700,12772,13889,13570,13849,14649,15157,15853,16142,16878,17263,17724,18642,19680,20903,22169,23659,25512,26830,27201,27992,27764,28862,29727,30170,30520,30127,31489,32897,33474,34743,35727,36616,38074,39762,39437,40876,40570,39377,40123,39118,38340,38231,38154,38723,38672,37971,38807,38013
-2019F,NJ,ESICP,8021,8540,9329,9917,10605,11519,12587,12964,13693,14859,15215,15395,15970,16734,16224,14562,15313,15624,16365,16579,16345,16311,15233,15380,15681,15657,15631,15665,15844,15713,15041,15031,14687,14596,14251,13989,13603,13369,13339,13121,11812,12707,11476,12215,11210,11862,11331,11013,10537,8250,8429,8033,7762,7566,7517,7320,7293,7343,7369,6990
-2019F,NJ,ESRCP,5080,5617,5844,6286,6815,7410,8224,8960,9933,10948,12131,12855,13566,14836,14305,14495,15003,15393,15691,15797,16329,16026,15759,16869,17157,17177,18089,19308,20656,20695,20498,21539,20547,22042,22154,22470,22632,22286,23191,24551,24547,25491,27171,27367,28020,29973,28622,29752,29111,27833,30307,29399,28663,28545,27893,29142,29091,27762,29531,28613
-2019F,NJ,ESRPP,832,896,917,963,1023,1095,1200,1293,1418,1543,1687,1766,1850,2023,1951,1975,2044,2098,2135,2144,2214,2164,2121,2259,2283,2270,2373,2517,2678,2679,2640,2756,2607,2773,2764,2780,2777,2712,2798,2937,2912,3002,3177,3182,3245,3464,3304,3428,3342,3179,3444,3330,3240,3223,3146,3285,3278,3123,3321,3218
-2019F,NJ,ESTCP,17496,19081,20502,21964,23777,25878,28420,30090,32601,35637,38184,39990,42350,45500,44142,42950,45007,46213,47945,48551,49585,49635,48752,50924,52586,53832,55993,58746,62112,63359,62857,64683,63122,65621,66258,66754,66889,65915,68162,70703,69977,73177,74603,76383,77593,81897,79681,81934,80520,75780,79179,76860,75053,74642,73866,75490,75359,73383,76017,73917
-2019F,NJ,ESTPP,2867,3046,3215,3363,3570,3824,4148,4343,4654,5023,5309,5492,5774,6205,6020,5853,6132,6298,6522,6591,6722,6701,6561,6819,6997,7115,7346,7658,8054,8201,8097,8277,8010,8255,8267,8258,8208,8020,8225,8458,8300,8617,8723,8880,8986,9466,9199,9442,9243,8655,8998,8706,8485,8427,8330,8510,8493,8256,8549,8313
-2019F,NJ,ESTXP,17496,19081,20502,21964,23777,25878,28420,30090,32601,35637,38184,39990,42350,45500,44142,42950,45007,46213,47945,48551,49585,49635,48752,50924,52586,53832,55993,58746,62112,63359,62857,64683,63122,65621,66258,66754,66889,65915,68162,70703,69977,73177,74603,76383,77593,81897,79681,81934,80520,75780,79179,76860,75053,74642,73866,75490,75359,73383,76017,73917
-2019F,NJ,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,FSICP,0,0,0,402,386,429,472,426,445,429,516,659,648,535,530,570,703,675,750,554,570,266,206,256,334,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,HLACP,6,8,17,18,26,40,67,78,71,78,102,115,110,113,110,98,102,120,171,108,40,202,166,196,194,111,102,81,88,83,75,69,76,80,135,69,58,106,53,10,22,37,185,146,74,87,70,85,118,66,29,27,27,25,24,24,25,9,15,22
-2019F,NJ,HLCCP,208,187,210,238,315,190,224,212,210,229,236,229,261,249,256,272,326,334,320,225,219,267,238,282,260,259,289,313,381,368,254,313,372,393,368,437,476,393,496,530,557,563,447,643,549,393,327,430,391,369,468,436,355,413,381,315,342,289,349,288
-2019F,NJ,HLICP,2340,2422,2696,2947,3252,3438,3728,3965,4734,5426,5665,5765,6764,6958,6665,6096,6207,6427,6643,6866,6429,4928,5102,4918,7427,5994,5097,6336,5803,4719,3163,4693,4969,2005,2157,2172,1773,2523,1599,5352,4457,5250,5479,929,984,670,546,770,375,241,5200,5274,4610,4640,4664,4710,4691,4590,4537,4603
-2019F,NJ,HLRCP,659,592,664,754,998,601,708,671,666,725,746,724,825,790,809,862,1033,1059,1014,713,695,846,752,895,825,821,917,991,1208,1165,804,990,1177,1244,1166,1384,1506,1246,1569,1677,1764,1782,1415,1821,1439,1271,1036,1473,1572,1543,1489,1491,1050,1147,1353,1130,1037,1120,1282,1252
-2019F,NJ,HLTCP,3213,3208,3587,3958,4591,4268,4727,4925,5681,6458,6748,6834,7961,8110,7840,7328,7668,7940,8149,7913,7383,6243,6257,6292,8706,7184,6405,7721,7480,6336,4295,6066,6594,3722,3827,4062,3813,4268,3717,7569,6801,7632,7526,3539,3045,2420,1979,2758,2455,2218,7185,7228,6043,6224,6422,6179,6095,6008,6184,6165
-2019F,NJ,HLTXP,3213,3208,3587,3958,4591,4268,4727,4925,5681,6458,6748,6834,7961,8110,7840,7328,7668,7940,8149,7913,7383,6243,6257,6292,8706,7184,6405,7721,7480,6336,4295,6066,6594,3722,3827,4062,3813,4268,3717,7569,6801,7632,7526,3539,3045,2420,1979,2758,2455,2218,7185,7228,6043,6224,6422,6179,6095,6008,6184,6165
-2019F,NJ,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,HYEGP,35,11,15,10,12,-35,-136,-209,-348,-385,-407,-314,-224,-338,-285,-276,-249,-172,-178,-286,-286,-234,-225,-231,-249,-247,-289,-312,-222,-244,31,22,22,19,15,11,19,18,21,17,14,18,12,39,36,29,34,21,26,32,18,24,11,18,17,10,9,14,36,26
-2019F,NJ,HYICP,10,8,7,5,7,4,5,8,6,6,4,5,6,5,3,4,3,4,5,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,HYTCP,45,19,23,16,19,-31,-131,-202,-342,-379,-403,-309,-217,-333,-282,-272,-245,-167,-173,-283,-282,-231,-222,-228,-246,-244,-286,-309,-219,-244,31,22,22,19,15,11,19,18,21,17,14,18,12,39,38,31,35,21,26,32,18,24,11,18,17,10,9,14,36,26
-2019F,NJ,HYTXP,10,8,7,5,7,4,5,8,6,6,4,5,6,5,3,4,3,4,5,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,JFACP,2125,2184,3045,3582,3982,5280,6295,7560,9043,7217,6705,6712,7160,7166,6270,5777,5641,6012,6211,7606,8088,17518,33809,37077,42383,43910,39197,43323,40820,44140,46377,43733,46133,48161,48376,50059,43002,38754,37103,36343,36781,33952,28933,25901,25038,31834,33726,36534,35281,34420,19149,19131,18683,19857,18843,19763,20216,21522,21942,22215
-2019F,NJ,JFTCP,2125,2184,3045,3582,3982,5280,6295,7560,9043,7217,6705,6712,8522,8146,7068,6267,6787,8420,7849,8498,8781,18097,34169,37077,42383,43910,39197,43323,40820,44140,46377,43733,46133,48161,48376,50059,43002,38754,37103,36343,36781,33952,28933,25901,25038,31834,33726,36534,35281,34420,19149,19131,18683,19857,18843,19763,20216,21522,21942,22215
-2019F,NJ,JFTXP,2125,2184,3045,3582,3982,5280,6295,7560,9043,7217,6705,6712,7160,7166,6270,5777,5641,6012,6211,7606,8088,17518,33809,37077,42383,43910,39197,43323,40820,44140,46377,43733,46133,48161,48376,50059,43002,38754,37103,36343,36781,33952,28933,25901,25038,31834,33726,36534,35281,34420,19149,19131,18683,19857,18843,19763,20216,21522,21942,22215
-2019F,NJ,KSCCP,466,517,431,423,347,377,365,363,282,288,299,335,372,309,234,168,275,399,368,96,39,57,96,51,89,77,108,109,116,264,178,192,389,160,615,566,243,750,1084,1244,1189,1248,452,247,276,351,140,108,57,37,10,14,3,2,3,1,6,3,6,9
-2019F,NJ,KSICP,802,718,660,684,648,750,727,757,628,730,761,644,645,439,430,612,758,1094,1065,1618,1393,1211,957,1432,1533,420,470,696,793,703,256,95,158,136,597,414,314,658,447,211,430,468,286,439,682,1327,515,260,88,76,93,46,15,2,3,3,3,1,14,6
-2019F,NJ,KSRCP,1200,1331,1109,1089,892,969,939,933,726,741,769,863,958,796,602,431,707,1026,946,247,262,193,353,310,1470,907,644,513,472,570,295,329,273,223,291,236,284,292,308,270,299,410,143,138,155,184,116,72,54,36,36,26,11,11,17,10,10,5,5,6
-2019F,NJ,KSTCP,2468,2566,2200,2197,1887,2096,2030,2053,1636,1759,1829,1842,1975,1544,1267,1211,1740,2519,2379,1961,1694,1461,1406,1793,3092,1404,1223,1318,1380,1537,729,615,820,519,1504,1216,841,1701,1839,1725,1918,2126,881,824,1113,1862,771,439,200,149,139,86,28,16,22,14,19,10,25,20
-2019F,NJ,KSTXP,2468,2566,2200,2197,1887,2096,2030,2053,1636,1759,1829,1842,1975,1544,1267,1211,1740,2519,2379,1961,1694,1461,1406,1793,3092,1404,1223,1318,1380,1537,729,615,820,519,1504,1216,841,1701,1839,1725,1918,2126,881,824,1113,1862,771,439,200,149,139,86,28,16,22,14,19,10,25,20
-2019F,NJ,LUACP,685,667,617,617,648,619,643,539,592,563,574,630,674,637,610,605,672,712,765,800,713,683,623,653,696,649,634,717,691,709,730,653,666,678,708,696,676,714,747,755,744,681,673,622,631,627,611,631,586,527,700,698,610,639,634,685,675,572,580,503
-2019F,NJ,LUICP,1194,1162,1161,1161,1219,1433,1488,1292,1420,1353,1379,1363,1459,1641,1572,1136,1262,1657,1780,1862,1658,1590,1450,1518,1619,1509,1476,1668,1609,1650,1698,1519,1549,1577,1648,1620,1572,1661,1739,1757,1731,1586,1567,1448,1467,1460,1422,1469,1364,1226,461,380,329,346,355,372,384,341,331,310
-2019F,NJ,LUTCP,1879,1829,1778,1778,1867,2052,2131,1831,2012,1917,1952,1993,2134,2278,2182,1741,1934,2369,2545,2663,2371,2274,2074,2171,2315,2158,2110,2385,2300,2359,2428,2172,2214,2255,2357,2316,2248,2375,2486,2512,2474,2267,2240,2071,2098,2087,2033,2100,1949,1753,1160,1078,939,985,990,1057,1058,913,911,812
-2019F,NJ,LUTXP,1879,1829,1778,1778,1867,2052,2131,1831,2012,1917,1952,1993,2134,2278,2182,1741,1934,2369,2545,2663,2371,2274,2074,2171,2315,2158,2110,2385,2300,2359,2428,2172,2214,2255,2357,2316,2248,2375,2486,2512,2474,2267,2240,2071,2098,2087,2033,2100,1949,1753,1160,1078,939,985,990,1057,1058,913,911,812
-2019F,NJ,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1800,-1074,-765,-370,-762,-1500,-708,-299,331,229,-150,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,MGACP,47786,48214,49384,51237,51446,54198,55081,56394,59822,61434,65217,67204,73173,74919,74608,76750,78635,76828,79687,74419,72296,71926,72890,76807,76517,74283,79574,80141,79910,80235,77129,78592,75597,69845,80915,81644,85370,88143,91149,91466,94396,93107,95265,97179,102499,102025,102414,104822,102677,99935,98773,96920,94707,94993,95723,94242,96517,91934,89814,89260
-2019F,NJ,MGCCP,308,336,333,388,383,420,487,530,556,599,613,752,570,621,596,634,615,512,727,1061,297,308,323,729,647,660,652,666,647,670,754,692,613,77,84,78,77,79,76,75,74,77,73,74,72,71,70,76,74,68,69,65,65,72,148,2153,2178,2164,2178,2194
-2019F,NJ,MGICP,612,624,632,589,551,532,507,452,441,414,401,353,311,291,308,233,219,194,189,159,147,145,121,113,94,462,466,517,524,500,460,420,423,542,556,602,597,628,509,242,259,962,992,1074,1211,1054,1096,1175,953,910,1132,1110,1087,1102,851,1242,1252,1273,1298,1307
-2019F,NJ,MGTCP,48706,49175,50349,52214,52380,55149,56076,57376,60819,62447,66231,68308,74054,75830,75512,77617,79469,77535,80604,75640,72740,72379,73334,77650,77257,75405,80692,81324,81081,81405,78343,79704,76633,70463,81556,82325,86044,88850,91734,91783,94729,94145,96329,98327,103782,103150,103580,106074,103704,100913,99974,98095,95859,96167,96722,97638,99948,95371,93290,92761
-2019F,NJ,MGTXP,48706,49175,50349,52214,52380,55149,56076,57376,60819,62447,66231,68308,74054,75830,75512,77617,79469,77535,80604,75640,72740,72379,73334,77650,77257,75405,80692,81324,81081,81405,78343,79704,76633,70463,81556,82325,86044,88850,91734,91783,94729,94145,96329,98327,103782,103150,103580,106074,103704,100913,99974,98095,95859,96167,96722,97638,99948,95371,93290,92761
-2019F,NJ,MSICP,2632,2939,3226,1707,1708,1666,1745,1630,1818,1694,1513,1340,1373,1701,2180,2936,2321,2626,2284,2114,2004,2517,2207,1978,1698,1710,1854,1862,2258,2078,1869,1724,1130,1070,1195,1097,537,589,717,675,719,905,973,913,822,818,735,721,767,820,857,890,873,906,967,1000,1012,1058,1054,959
-2019F,NJ,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,NGACP,578,471,277,558,496,451,399,712,460,622,943,871,729,680,545,388,502,562,504,554,467,663,958,989,2368,2248,2833,3382,2864,3998,2624,2917,3566,2908,2556,2566,3208,3491,2890,4353,3159,4037,1744,1901,1879,1509,1202,1687,2068,1816,5509,5846,4794,5754,12108,6647,6460,6083,5885,7678
-2019F,NJ,NGCCP,10330,12250,13725,15802,21373,20207,22589,28656,32546,34510,55953,60230,62917,61846,58210,53346,90463,53896,48005,52314,60481,74627,78750,79624,83906,83467,85775,94459,101325,117385,115591,121240,130891,128942,132008,138965,150432,168760,146653,163759,158543,131417,146176,159647,168768,169857,152501,168778,168574,180404,181480,191808,174641,171797,202201,163223,153096,148948,167351,155507
-2019F,NJ,NGEIP,25482,22912,27576,28797,28033,22440,22920,23800,27523,47178,45891,39984,25071,24461,15033,8601,10016,7185,770,30727,79514,80125,65504,96886,95323,61362,36877,75138,51066,69230,66191,95732,116906,127644,145261,152071,128692,134807,134563,140935,135350,128378,160363,130131,140664,125098,130664,157375,169853,164088,199059,199594,226469,217032,249676,283447,326982,275653,285296,292372
-2019F,NJ,NGICP,27750,29922,36269,40435,43296,52254,58743,63171,70850,77038,79847,82486,82647,77954,65419,52361,73046,51339,43217,52083,62882,88799,81603,81214,84868,81242,69715,79779,77518,84771,90376,100768,174569,188889,190558,208930,195550,192955,198872,197205,88368,86097,80483,77451,77024,74857,65632,63075,53981,48465,49269,49865,54785,61468,61494,55368,60910,54298,64167,65061
-2019F,NJ,NGRCP,75118,88251,96363,102657,106911,114405,122620,135143,137116,145487,140219,143197,149924,136625,135843,129406,147508,134138,136347,124901,136481,145907,148845,146674,151755,150911,158266,168641,181506,195542,171660,176640,198462,195569,216873,194432,222619,216925,196658,209399,219878,214995,209836,243760,232471,231065,197205,228051,220432,226016,219141,213630,191371,226195,247742,237104,215510,221608,247585,239055
-2019F,NJ,NGTCP,139258,153806,174210,188249,200109,209757,227271,251482,268495,304835,322853,326768,321288,301566,275050,244102,321535,247120,228843,260579,339825,390121,375660,405387,418220,379230,353466,421399,414279,470926,446443,497297,624395,643952,687256,696965,700502,716938,679635,715651,605298,564923,598602,612890,620806,602388,547206,618965,614908,620789,654458,660743,652060,682246,773221,745789,762958,706590,770284,759673
-2019F,NJ,NGTPP,22.8,24.6,27.3,28.8,30,31,33.2,36.3,38.3,43,44.9,44.9,43.8,41.1,37.5,33.3,43.8,33.7,31.1,35.4,46.1,52.7,50.6,54.3,55.6,50.1,46.4,54.9,53.7,61,57.5,63.6,79.2,81,85.8,86.2,86,87.2,82,85.6,71.8,66.5,70,71.3,71.9,69.6,63.2,71.3,70.6,70.9,74.4,74.8,73.7,77,87.2,84.1,86,79.5,86.6,85.4
-2019F,NJ,NGTXP,113776,130894,146634,159452,172076,187317,204351,227682,240972,257657,276962,286784,296217,277105,260017,235501,311519,239935,228073,229852,260311,309996,310156,308501,322897,317868,316589,346261,363213,401696,380251,401564,507489,516308,541995,544894,571810,582131,545073,574716,469949,436546,438239,482759,480141,477289,416542,461591,445055,456701,455399,461149,425591,465214,523545,462342,435976,430937,484988,467301
-2019F,NJ,NUEGP,0,0,0,0,0,0,0,0,0,107,3454,3825,4356,3585,3673,3146,3855,6959,8169,6611,7627,11675,14039,6328,5610,17770,14770,22697,23890,23032,23770,24807,21595,24932,22129,16806,11028,13908,27132,28971,28578,30469,30866,29709,27082,31392,32568,32010,32195,34328,32771,33606,33110,33380,31507,33262,29885,34033,31982,26637
-2019F,NJ,NUETP,0,0,0,0,0,0,0,0,0,107,3454,3825,4356,3585,3673,3146,3855,6959,8169,6611,7627,11675,14039,6328,5610,17770,14770,22697,23890,23032,23770,24807,21595,24932,22129,16806,11028,13908,27132,28971,28578,30469,30866,29709,27082,31392,32568,32010,32195,34328,32771,33606,33110,33380,31507,33262,29885,34033,31982,26637
-2019F,NJ,OPICP,10287,10209,10312,9106,12449,12682,12669,11763,12752,13068,13048,11848,13247,13643,12956,13113,13645,14042,14589,15397,13856,8583,7027,8084,8545,6285,6685,7828,8572,9247,7444,7664,7910,7486,8863,8033,9878,9843,8378,9284,7730,9683,9324,11248,10289,11483,11246,10949,8803,6585,6981,7105,8264,8286,7794,7919,8113,7315,7186,7203
-2019F,NJ,OPTCP,10287,10209,10312,9106,12449,12682,12669,11763,12752,13068,13048,11848,13247,13643,12956,13113,13645,14042,14589,15397,13856,8583,7027,8084,8545,6285,6685,7828,8572,9247,7444,7664,7910,7486,8863,8033,9878,9843,8378,9284,7730,9683,9324,11248,10289,11483,11246,10949,8803,6585,6981,7105,8264,8286,7794,7919,8113,7315,7186,7203
-2019F,NJ,OPTXP,10287,10209,10312,9106,12449,12682,12669,11763,12752,13068,13048,11848,13247,13643,12956,13113,13645,14042,14589,15397,13856,8583,7027,8084,8545,6285,6685,7828,8572,9247,7444,7664,7910,7486,8863,8033,9878,9843,8378,9284,7730,9683,9324,11248,10289,11483,11246,10949,8803,6585,6981,7105,8264,8286,7794,7919,8113,7315,7186,7203
-2019F,NJ,P1ICP,19486,19658,20115,19065,22204,22957,22946,21640,22459,23738,23681,22264,24811,26379,23746,22337,22721,24768,26171,26303,23527,18922,17791,22083,22450,17293,18956,20228,20584,20790,17818,17378,18373,23099,21491,21823,23019,26593,23802,27615,23902,26902,27295,24396,23133,24910,22869,24494,19814,16496,14488,15812,15828,14644,13128,14753,13382,14468,13939,14306
-2019F,NJ,P1TCP,22984,23192,24146,22735,25435,26074,26002,24041,24391,25511,25482,24236,26934,28227,25330,23633,24462,27009,28361,27538,24623,19930,19004,23252,24840,19110,20502,21769,22015,22461,19140,18651,19822,24280,23263,23466,24335,28482,26073,29989,26224,29301,28777,25619,24308,26181,23824,25444,20593,17146,15316,16627,16521,15357,13866,15493,14117,15095,14581,14879
-2019F,NJ,P1TXP,22984,23192,24146,22735,25435,26074,26002,24041,24391,25511,25482,24213,26934,28227,25330,23633,24462,27009,28361,27538,24623,19930,19004,23252,24840,19110,20502,21769,22015,22461,19140,18651,19822,24280,23263,23466,24335,28482,26073,29989,26224,29301,28777,25619,24308,26181,23824,25444,20593,17146,15316,16627,16521,15357,13866,15493,14117,15095,14581,14879
-2019F,NJ,PAACP,62252,61222,67233,70439,73170,73684,77013,80509,85265,85533,90396,93502,101872,102637,97714,96475,101489,101408,104953,101671,103516,112061,129724,138740,144167,143911,148963,151662,145701,149481,144684,146223,146405,139606,153501,155972,150933,152752,155324,154925,164795,160206,161750,158868,164585,177007,178023,187584,188344,163975,147165,147284,140836,141731,138925,139198,144856,138388,142054,134310
-2019F,NJ,PACCP,16739,19155,20389,19856,19199,18265,20756,23402,23138,23207,23683,22127,22570,22922,19878,17909,21041,19641,18411,19110,20672,14697,12310,10891,13059,10420,13676,12373,13042,12159,10863,10385,10130,8578,8689,5786,7021,5422,5207,6561,5639,5666,3664,4550,3923,4594,2846,4196,3444,3108,2632,3107,2357,2540,2722,4385,4165,3968,3984,4138
-2019F,NJ,PAEIP,11518,8826,9337,10645,12002,12329,16016,22086,26662,34032,38885,38902,48533,48950,41541,26168,25909,30030,29479,21049,15740,11195,8794,8593,9320,5668,9186,5695,9204,10101,3525,3334,2127,2301,3419,2618,1385,829,1187,1404,1872,2604,1138,1988,1531,1302,331,456,319,136,265,135,58,80,296,141,64,56,258,75
-2019F,NJ,PAICP,47980,50850,54085,52870,53141,52398,56150,59082,59604,61403,61916,57346,59739,62800,55996,51439,55708,56986,56898,67032,55136,42931,40432,34684,39620,31436,33703,36595,35840,33939,28516,28547,29172,30440,29172,28492,28976,32889,28767,35919,31005,36147,36206,29057,29001,29020,27211,28928,23294,19849,22593,24602,23698,22150,20733,22842,21533,22019,21333,21941
-2019F,NJ,PARCP,27446,28174,29025,30548,30334,30607,30717,31859,32916,33689,34448,34210,36903,37132,32514,31948,33131,31823,30079,22446,24933,24200,20398,17246,21161,21907,20811,21424,21692,19440,14760,14132,14474,13769,15185,13650,13959,12899,11005,11717,12291,11661,10607,12574,11503,10256,8231,9072,9598,8217,6972,6112,5263,5574,6333,6056,4303,4378,5590,5440
-2019F,NJ,PATCP,165934,168227,180070,184358,187846,187284,200652,216939,227585,237864,249328,246087,269616,274440,247642,223939,237278,239887,239820,231307,219998,205085,211658,210154,227327,213342,226338,227749,225479,225120,202348,202621,202307,194694,209966,206517,202274,204791,201489,210526,215601,216284,213366,207037,210544,222179,216642,230236,224998,195286,179626,181241,172212,172075,169008,172622,174922,168809,173220,165903
-2019F,NJ,PATPP,27.2,26.9,28.2,28.2,28.2,27.7,29.3,31.3,32.5,33.5,34.7,33.8,36.8,37.4,33.8,30.5,32.3,32.7,32.6,31.4,29.8,27.7,28.5,28.1,30.2,28.2,29.7,29.7,29.2,29.1,26.1,25.9,25.7,24.5,26.2,25.5,24.8,24.9,24.3,25.2,25.6,25.5,24.9,24.1,24.4,25.7,25,26.5,25.8,22.3,20.4,20.5,19.5,19.4,19.1,19.5,19.7,19,19.5,18.7
-2019F,NJ,PATXP,154416,159401,170733,173713,175844,174955,184636,194853,200923,203832,210443,207186,221083,225490,206101,197771,211369,209858,210341,210258,204257,193890,202864,201561,218007,207674,217152,222054,216275,215019,198823,199287,200180,192393,206547,203900,200889,203962,200302,209123,213729,213680,212227,205049,209013,220877,216311,229780,224679,195150,179361,181105,172154,171995,168713,172481,174858,168753,172962,165828
-2019F,NJ,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,PCEIP,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,PCICP,2547,2547,2558,2746,2645,2752,2749,2691,2325,2870,2665,2380,3150,3300,2480,2465,2605,2485,2720,1925,2250,2607,3521,4936,4511,4347,4760,4725,5279,5158,4834,4963,5378,5609,5163,5604,5881,6217,5618,5622,5198,5180,5108,5337,5528,5525,4739,5087,5189,4693,3571,5097,4292,2979,3219,3303,3325,3337,3126,3183
-2019F,NJ,PCTCP,2547,2547,2558,2746,2645,2752,2749,2691,2325,2870,2665,2403,3150,3300,2480,2465,2605,2485,2720,1925,2250,2607,3521,4936,4511,4347,4760,4725,5279,5158,4834,4963,5378,5609,5163,5604,5881,6217,5618,5622,5198,5180,5108,5337,5528,5525,4739,5087,5189,4693,3571,5097,4292,2979,3219,3303,3325,3337,3126,3183
-2019F,NJ,PCTXP,2547,2547,2558,2746,2645,2752,2749,2691,2325,2870,2665,2380,3150,3300,2480,2465,2605,2485,2720,1925,2250,2607,3521,4936,4511,4347,4760,4725,5279,5158,4834,4963,5378,5609,5163,5604,5881,6217,5618,5622,5198,5180,5108,5337,5528,5525,4739,5087,5189,4693,3571,5097,4292,2979,3219,3303,3325,3337,3126,3183
-2019F,NJ,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29,27,27,25,24,24,25,9,15,22
-2019F,NJ,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,468,436,355,413,381,315,342,289,349,288
-2019F,NJ,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,255,330,384,414,439,484,465,364,312,377
-2019F,NJ,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1489,1491,1050,1147,1353,1130,1037,1120,1282,1252
-2019F,NJ,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2240,2283,1817,1998,2197,1953,1869,1783,1958,1939
-2019F,NJ,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2240,2283,1817,1998,2197,1953,1869,1783,1958,1939
-2019F,NJ,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4944,4944,4226,4226,4226,4226,4226,4226,4226,4226
-2019F,NJ,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4944,4944,4226,4226,4226,4226,4226,4226,4226,4226
-2019F,NJ,RFACP,5754,3878,7332,8222,9544,6431,5584,7221,7185,7163,9081,9784,11595,9771,6095,4246,7187,7850,7719,7532,12053,12290,11688,12374,12345,11010,14420,12032,7651,8915,7273,10143,9580,6407,6281,8049,6009,6663,6658,6478,12226,10397,14440,11941,12328,17195,15991,18804,26381,10370,7786,6614,6407,5536,1835,3693,3964,3247,7674,757
-2019F,NJ,RFCCP,7117,9251,10213,9114,8549,7473,9864,12082,11444,11209,11415,9796,9508,9740,8290,6484,9225,8354,7502,10472,10950,6404,4623,2662,3634,3128,2717,2390,2854,1780,1460,1597,1356,1971,2078,1238,1281,794,489,591,479,385,279,442,347,281,217,233,474,415,141,125,43,35,7,10,17,0,3,0
-2019F,NJ,RFEIP,11160,8553,9048,10315,11630,11947,15519,21401,25836,32977,37665,36028,41093,40343,32123,23924,23012,25901,26471,18853,12919,9861,8086,7597,8287,4997,8489,4671,7547,7879,2839,2719,1775,1714,2594,1339,759,352,668,691,737,1261,852,1212,840,874,205,230,99,76,57,44,15,14,20,20,3,0,0,0
-2019F,NJ,RFICP,18822,21335,23249,22536,19589,17049,20067,23907,22725,22213,22609,19838,18066,19323,17025,14809,18347,17578,16475,24173,17694,9221,9019,3944,5385,4851,5360,6125,5266,4068,3622,3127,3080,2581,2489,1901,1660,1356,855,633,590,600,292,506,539,430,469,512,315,241,76,308,272,121,4,0,0,0,0,0
-2019F,NJ,RFTCP,42854,43016,49841,50186,49313,42900,51033,64611,67190,73562,80770,75446,80262,79176,63532,49463,57772,59682,58167,61030,53617,37777,33415,26578,29652,23986,30986,25218,23318,22642,15194,17588,15791,12674,13442,12526,9709,9165,8669,8393,14032,12642,15862,14100,14054,18780,16882,19780,27269,11103,8060,7091,6737,5706,1866,3723,3984,3247,7677,757
-2019F,NJ,RFTXP,31693,34463,40794,39871,37683,30953,35514,43209,41354,40585,43105,39418,39169,38834,31409,25540,34760,33781,31696,42177,40697,27916,25330,18981,21364,18989,22497,20547,15771,14763,12355,14868,14016,10960,10848,11187,8951,8813,8002,7702,13295,11381,15011,12889,13214,17906,16677,19550,27170,11026,8003,7047,6722,5692,1846,3703,3980,3247,7677,757
-2019F,NJ,SGICP,7244,6865,6720,6645,6574,6498,6349,6253,6774,6887,6731,6404,7549,7607,6481,6357,7278,7334,7512,8646,7351,7451,5390,5350,5574,3973,6489,6784,6538,7576,5491,7221,6650,6970,8049,7597,8922,8801,8083,8632,8090,8410,8159,9854,9319,9953,9489,9204,7685,5728,5764,5775,6936,6763,6628,6481,6568,5668,5737,5444
-2019F,NJ,SNICP,0,0,0,0,3450,3735,3867,3221,3451,3783,4012,3154,3377,3416,3389,2914,2966,3092,3719,3766,3621,1933,1800,2115,2827,2174,1445,1611,1269,1194,1192,938,1115,1115,864,755,740,718,1065,1444,967,571,745,585,371,455,456,508,552,300,170,147,96,461,489,457,431,249,228,237
-2019F,NJ,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3,3,4,4,5,5,6,7,9,10,13,19,36,53,77,137,253,454,838,961,1125,1150,954,1011,1083,1163
-2019F,NJ,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,21,60,266,353,406,494,685,779,862,1015
-2019F,NJ,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,3,4,1,2,3,6,12,25,53,62,73,82,91,112,131,164
-2019F,NJ,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,2,2,2,2,3,3,4,4,5,6,7,8,12,16,21,30,35,59,104,153,203,284,337,491,684,827,1015
-2019F,NJ,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,4,5,5,6,7,8,9,10,11,14,16,19,24,36,53,76,113,188,344,644,1309,1579,1888,2062,2220,2586,2903,3357
-2019F,NJ,TPOPP,6103,6265,6376,6531,6660,6767,6851,6928,7005,7095,7193,7281,7335,7333,7332,7338,7340,7337,7351,7367,7376,7407,7431,7468,7515,7566,7622,7671,7712,7726,7763,7815,7881,7949,8014,8083,8150,8219,8287,8360,8431,8493,8553,8601,8635,8652,8662,8678,8711,8756,8799,8829,8846,8858,8867,8870,8874,8888,8892,8891
-2019F,NJ,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1911,-1597,-927,-1591,-1151,-1680,-1800,-1269,-2012,-1416,-2347,-1680,-1988,-1608,-1771,-722,-644,-1819,-1781,-2308,-446,-780,-333,-469,19,443,405,-289,-315,113,225,290,76,-363,-79,38,295,119,521
-2019F,NJ,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,WXICP,410,406,367,352,332,354,236,233,263,276,278,290,299,384,376,336,377,315,324,318,310,87,68,74,74,75,73,79,81,80,80,279,296,318,322,322,349,314,304,269,237,201,178,172,170,173,119,100,87,56,78,69,70,83,75,62,65,45,55,46
-2019F,NJ,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,20,21,21,13,11,12,11,23,22,21,22,23,22
-2019F,NJ,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NJ,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,20,21,21,13,11,12,11,23,22,21,22,23,22
-2019F,NJ,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,1,0,4,1,0,-1,0,0,0,0,0,8,7,9,11,5,7,4,7,9,8,14,11,1,2,0,-1,0,0,0,-1,0,0,0,0,-2,-2
-2019F,NM,ARICP,964,1012,1008,1027,1171,1388,1227,1142,1457,967,1208,813,965,995,1365,1632,1462,1198,1432,1421,1138,1164,1448,1774,1901,1501,1616,2069,2113,1666,1451,1525,1874,2438,2114,1859,1648,1233,2048,1902,1775,791,1994,1978,1990,1800,1933,2351,1767,1399,1417,1588,1546,1313,1277,1227,1155,1017,1211,1143
-2019F,NM,ARTCP,964,1012,1008,1027,1171,1388,1227,1142,1457,967,1208,813,965,995,1365,1632,1462,1198,1432,1421,1138,1164,1448,1774,1901,1501,1616,2069,2113,1666,1451,1525,1874,2438,2114,1859,1648,1233,2048,1902,1775,791,1994,1978,1990,1800,1933,2351,1767,1399,1417,1588,1546,1313,1277,1227,1155,1017,1211,1143
-2019F,NM,ARTXP,964,1012,1008,1027,1171,1388,1227,1142,1457,967,1208,813,965,995,1365,1632,1462,1198,1432,1421,1138,1164,1448,1774,1901,1501,1616,2069,2113,1666,1451,1525,1874,2438,2114,1859,1648,1233,2048,1902,1775,791,1994,1978,1990,1800,1933,2351,1767,1399,1417,1588,1546,1313,1277,1227,1155,1017,1211,1143
-2019F,NM,AVACP,201,179,288,280,315,239,201,143,129,126,111,117,107,85,107,81,79,82,82,80,167,136,129,106,83,95,104,87,55,96,86,94,94,71,62,53,101,102,61,70,73,79,74,64,89,60,49,46,118,87,48,45,42,37,45,40,42,38,39,40
-2019F,NM,AVTCP,201,179,288,280,315,239,201,143,129,126,111,117,107,85,107,81,79,82,82,80,167,136,129,106,83,95,104,87,55,96,86,94,94,71,62,53,101,102,61,70,73,79,74,64,89,60,49,46,118,87,48,45,42,37,45,40,42,38,39,40
-2019F,NM,AVTXP,201,179,288,280,315,239,201,143,129,126,111,117,107,85,107,81,79,82,82,80,167,136,129,106,83,95,104,87,55,96,86,94,94,71,62,53,101,102,61,70,73,79,74,64,89,60,49,46,118,87,48,45,42,37,45,40,42,38,39,40
-2019F,NM,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,3,6,22,62,84,73,77,62,212,264,299,326,317,320,355,393,415
-2019F,NM,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,3,6,22,62,84,73,77,62,212,264,299,326,317,320,355,393,415
-2019F,NM,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,CLACP,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,CLCCP,17,14,12,9,7,5,3,2,2,1,0,1,0,0,0,0,0,0,0,3,35,4,10,9,6,6,4,5,2,6,4,7,7,8,8,7,7,7,8,5,5,4,4,3,4,4,4,3,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,CLEIP,26,33,28,829,1667,2418,2033,2459,2376,2798,5518,6677,6850,7514,7923,7425,7690,8571,7996,8467,11406,10619,12173,14359,13896,14498,13147,14340,14661,15250,15065,12809,14775,14942,15297,15137,15215,15802,15883,16224,16503,15955,15197,16542,16661,17034,16961,15959,15398,16513,14536,15496,14452,14270,11913,11882,10547,10494,7262,8148
-2019F,NM,CLICP,105,76,49,26,37,22,14,18,17,13,11,12,8,19,7,0,8,18,83,93,8,126,127,99,75,83,93,49,51,37,41,41,48,60,68,76,74,76,72,73,76,71,73,79,80,78,79,76,64,59,44,23,42,51,60,69,73,72,73,60
-2019F,NM,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,CLOCP,105,76,49,26,37,22,14,18,17,13,11,12,8,19,7,0,8,18,83,93,8,126,127,99,75,83,93,49,51,37,41,41,48,60,68,76,74,76,72,73,76,71,73,79,80,78,79,76,64,59,44,23,42,51,60,69,73,72,73,60
-2019F,NM,CLRCP,25,20,18,12,9,6,4,3,2,1,0,1,0,0,0,0,0,0,0,1,9,1,2,2,2,2,1,1,1,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,CLTCP,174,143,108,876,1720,2450,2055,2481,2397,2813,5529,6690,6857,7534,7930,7425,7698,8590,8079,8563,11458,10750,12312,14469,13979,14589,13245,14395,14715,15295,15111,12858,14832,15012,15374,15221,15297,15886,15963,16303,16585,16031,15275,16625,16745,17116,17044,16039,15462,16572,14580,15519,14494,14321,11973,11950,10620,10566,7335,8208
-2019F,NM,CLTXP,148,110,80,47,53,33,21,22,21,15,12,13,8,19,7,0,8,18,83,96,52,131,139,110,83,91,98,55,54,45,46,49,57,70,77,84,82,84,81,79,82,76,78,83,84,82,83,80,64,59,44,23,42,51,60,69,73,72,73,60
-2019F,NM,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,DFACP,1919,1840,2380,2589,2461,2618,2526,2223,2795,2943,3158,3265,4015,4550,4538,4200,4664,5213,6156,5639,5411,8134,5608,3691,3974,4406,5283,5786,6001,5950,6016,6165,6993,5991,5484,2871,7804,8504,9296,9022,9327,9824,9928,10517,11411,11752,13179,13043,11101,10641,11744,12434,12379,12597,13371,13878,13571,14633,16018,16312
-2019F,NM,DFCCP,107,93,86,74,98,65,51,38,55,68,114,127,138,206,167,179,197,299,278,190,133,681,558,487,385,320,301,443,356,358,426,348,181,283,186,242,176,169,138,316,266,350,329,401,403,628,301,189,599,271,233,240,220,219,294,298,260,173,127,297
-2019F,NM,DFEIP,10,10,7,6,6,4,5,6,3,4,8,14,12,22,32,34,39,31,24,19,216,124,159,83,36,45,42,52,52,49,37,57,71,70,46,44,43,41,45,72,67,61,54,88,53,64,73,82,102,85,92,72,88,110,123,126,101,81,42,703
-2019F,NM,DFICP,1028,900,1042,954,1382,1206,982,736,1322,1511,2127,1995,2397,2864,2180,2299,2419,3254,3046,3576,2196,3514,1629,2477,1961,2595,2812,2520,2267,1587,1486,1783,1440,1266,1083,1907,2024,2080,1896,2175,2271,2180,2078,2393,2280,1923,2216,2326,2320,1489,1628,1624,1911,2024,2505,1528,2075,2350,2383,2261
-2019F,NM,DFRCP,3,2,2,2,3,2,1,1,1,2,3,3,4,5,4,5,5,8,7,5,11,18,24,17,13,15,26,8,8,7,8,6,11,5,7,3,3,3,2,20,6,5,7,3,4,4,3,4,2,1,1,1,1,2,1,2,1,1,1,2
-2019F,NM,DFTCP,3067,2845,3518,3625,3950,3895,3565,3005,4178,4527,5410,5404,6565,7647,6922,6717,7324,8805,9512,9429,7967,12471,7978,6754,6369,7381,8464,8810,8685,7951,7973,8359,8697,7615,6806,5067,10049,10797,11377,11605,11937,12419,12396,13402,14151,14371,15772,15643,14123,12487,13699,14370,14598,14952,16295,15831,16007,17238,18570,19576
-2019F,NM,DFTXP,3057,2835,3511,3618,3944,3891,3560,2998,4175,4523,5402,5390,6553,7626,6889,6683,7285,8774,9488,9410,7751,12347,7819,6672,6333,7336,8422,8757,8633,7902,7936,8302,8626,7545,6760,5023,10006,10756,11332,11533,11870,12358,12342,13314,14098,14306,15699,15561,14022,12402,13607,14298,14511,14842,16171,15705,15907,17158,18529,18873
-2019F,NM,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,98,65,62,118,115,64,17,10,3,8,1,1,0,1,0
-2019F,NM,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,23,79,82,30,37,39,27,41,45,30,23,29,12,11,7,4,0
-2019F,NM,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-13337,-9503,-11829,-11927,-12604,-11353,-10871,-11817,-12025,-12237,-12944,-12887,-9298,-11236,-10716,-12117,-13381,-11846,-12929,-16242,-12109,-13441,-11697,-11092,-7523,-7935,-8221,-9019,-7071,-8755
-2019F,NM,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,23,57,-15,-34,-25,-79,-88,-23,27,21,19,21,11,10,7,3,0
-2019F,NM,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,61,140,138,124,236,351,483,361,356,282,57,148,456,384,386,655,551,627,206,175,140,155,291,282,368,786,1164,2261,2283,2248,2049,1867,2325,2276,2430,2183,2426
-2019F,NM,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,2,1,0,0,0,0,0,1,0,1,0,3,4,1,0,0,0,1,1,2,2,2,2,2,40,39,40,37,41
-2019F,NM,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,4,6,9,7,7,5,2,4,15,13,13,15,9,10,6,5,4,5,10,9,8,17,23,43,42,39,37,29,59,61,62,59,62
-2019F,NM,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,62,143,142,128,242,359,495,371,365,288,59,153,472,398,399,671,560,638,212,183,148,160,301,292,377,804,1189,2306,2327,2289,2088,1897,2424,2376,2531,2279,2529
-2019F,NM,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,ESCCP,963,1061,1159,1261,1397,1485,1661,1779,1875,2063,2216,2440,2684,2925,2978,2743,2988,3143,3156,3263,3380,3299,3494,3470,4606,4664,4855,5171,5329,5699,5842,5872,6031,6226,6595,6641,6924,6839,7346,7435,8371,8455,8653,8063,8239,8411,8604,8932,8828,8734,9016,9258,9166,8983,8976,8877,8806,8784,9035,9029
-2019F,NM,ESICP,1548,1648,1771,1841,1920,1299,1410,1520,1663,1794,1911,2057,2168,2182,2050,1960,2166,2382,2645,2922,2945,3212,2934,2778,3396,4111,3902,3855,4032,4208,4413,4546,4609,4816,5184,5651,5921,6187,6186,5957,5492,5272,5316,5849,5972,6363,6822,6948,6831,6409,6660,6910,7249,7278,7527,7575,7591,7728,8187,8980
-2019F,NM,ESRCP,872,930,1013,1125,1249,988,1071,1127,1233,1351,1475,1629,1775,1956,2044,1957,2053,2154,2249,2397,2453,2355,2419,2569,3039,3098,3144,3306,3394,3463,3566,3665,3791,3884,4080,4124,4328,4502,4642,4649,4937,4999,5238,5418,5635,5865,6009,6387,6379,6504,6752,6874,6764,6804,6612,6642,6643,6497,6826,6872
-2019F,NM,ESRPP,914,964,1035,1138,1242,977,1063,1127,1240,1336,1442,1546,1646,1769,1806,1687,1726,1772,1817,1866,1873,1767,1773,1842,2145,2154,2149,2236,2277,2302,2343,2357,2376,2374,2425,2397,2470,2537,2588,2571,2711,2729,2823,2886,2960,3035,3063,3210,3173,3193,3271,3304,3240,3251,3163,3178,3174,3104,3260,3273
-2019F,NM,ESTCP,3383,3638,3943,4227,4566,3773,4142,4426,4771,5208,5603,6126,6627,7063,7071,6660,7207,7679,8050,8582,8778,8867,8847,8816,11041,11873,11901,12332,12755,13370,13821,14084,14431,14927,15859,16416,17173,17528,18173,18041,18801,18727,19207,19330,19846,20639,21435,22267,22038,21647,22428,23042,23179,23065,23115,23094,23040,23010,24049,24880
-2019F,NM,ESTPP,3546,3770,4027,4274,4539,3729,4113,4426,4800,5151,5477,5814,6144,6388,6250,5742,6060,6317,6502,6680,6704,6653,6487,6323,7793,8255,8136,8341,8559,8890,9083,9055,9045,9121,9426,9542,9800,9876,10133,9978,10323,10224,10352,10295,10424,10681,10924,11189,10961,10628,10863,11074,11102,11021,11059,11049,11010,10994,11486,11850
-2019F,NM,ESTXP,3383,3638,3943,4227,4566,3773,4142,4426,4771,5208,5603,6126,6627,7063,7071,6660,7207,7679,8050,8582,8778,8867,8847,8816,11041,11873,11901,12332,12755,13370,13821,14084,14431,14927,15859,16416,17173,17528,18173,18041,18801,18727,19207,19330,19846,20639,21435,22267,22038,21647,22428,23042,23179,23065,23115,23094,23040,23010,24049,24880
-2019F,NM,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,FSICP,0,0,0,24,26,31,36,34,36,35,43,55,53,50,102,105,128,107,124,94,104,52,52,66,55,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,10,14,13,13,58
-2019F,NM,HLACP,124,147,146,143,241,203,170,152,218,268,243,280,320,235,224,211,204,221,220,10,29,125,89,106,82,95,92,72,73,110,118,80,100,97,143,94,85,75,1,17,18,37,19,55,81,74,71,39,112,45,23,23,20,20,16,16,16,5,18,2
-2019F,NM,HLCCP,324,386,348,352,411,341,293,360,400,477,450,420,468,394,359,285,277,306,253,282,272,184,242,288,133,470,225,229,203,275,383,303,246,182,174,193,192,244,358,460,458,774,617,429,480,397,559,404,421,338,388,328,408,370,378,299,296,315,417,486
-2019F,NM,HLICP,1194,1091,1103,1115,1511,1345,1243,1196,1529,1838,1813,1830,2255,2223,2232,2160,2201,2113,2060,3008,3260,2029,1363,1122,4937,447,488,268,362,2330,5819,10067,9068,8568,7715,7085,926,1316,927,1692,438,320,340,334,405,420,496,5141,304,152,183,247,293,317,331,380,245,310,323,126
-2019F,NM,HLRCP,1371,1634,1472,1489,1740,1445,1239,1526,1695,2021,1907,1779,1983,1668,1522,1208,1172,1298,1070,1196,1150,781,1026,1220,564,1990,952,968,859,1164,1623,1284,1043,769,735,819,811,1033,1516,1947,1942,3280,2612,2024,1804,1951,2029,1722,1808,1814,1634,1479,1270,1496,1274,1136,1258,1047,1156,1251
-2019F,NM,HLTCP,3014,3258,3069,3099,3903,3334,2945,3233,3842,4605,4413,4310,5026,4520,4338,3865,3853,3938,3604,4496,4710,3120,2720,2736,5716,3002,1757,1537,1497,3879,7943,11735,10457,9616,8767,8191,2015,2667,2801,4115,2856,4411,3587,2842,2769,2842,3155,7307,2645,2349,2228,2077,1991,2202,2000,1831,1815,1677,1913,1864
-2019F,NM,HLTXP,3014,3258,3069,3099,3903,3334,2945,3233,3842,4605,4413,4310,5026,4520,4338,3865,3853,3938,3604,4496,4710,3120,2720,2736,5716,3002,1757,1537,1497,3879,7943,11735,10457,9616,8767,8191,2015,2667,2801,4115,2856,4411,3587,2842,2769,2842,3155,7307,2645,2349,2228,2077,1991,2202,2000,1831,1815,1677,1913,1864
-2019F,NM,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,HYEGP,69,52,64,44,9,43,68,35,43,64,66,27,20,65,73,63,76,28,30,68,94,88,79,89,94,128,166,164,100,232,205,237,255,294,213,264,211,259,236,243,221,237,265,171,139,165,198,268,312,271,217,195,223,92,98,99,148,193,150,158
-2019F,NM,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,HYTCP,69,52,64,44,9,43,68,35,43,64,66,27,20,65,73,63,76,28,30,68,94,88,79,89,94,128,166,164,100,232,205,237,255,294,213,264,211,259,236,243,221,237,265,171,139,165,198,268,312,271,217,195,223,92,98,99,148,193,150,158
-2019F,NM,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,JFACP,2186,2321,2564,2673,2778,2530,2736,3175,3728,3260,3110,2994,2862,2723,2749,2667,2440,2595,2338,2647,2673,2554,2629,2638,2999,2873,2783,2983,2812,2849,2912,2441,2834,3303,2576,2222,1615,1752,2198,2723,3017,3065,2510,2438,2274,2283,2353,1943,1798,1338,1122,1058,1009,935,930,906,966,1096,944,924
-2019F,NM,JFTCP,2186,2321,2564,2673,2778,2530,2736,3175,3728,3260,3110,2994,2862,2723,2749,2667,2440,2595,2338,2647,2673,2554,2629,2638,2999,2873,2783,2983,2812,2849,2912,2441,2834,3303,2576,2222,1615,1752,2198,2723,3017,3065,2510,2438,2274,2283,2353,1943,1798,1338,1122,1058,1009,935,930,906,966,1096,944,924
-2019F,NM,JFTXP,2186,2321,2564,2673,2778,2530,2736,3175,3728,3260,3110,2994,2862,2723,2749,2667,2440,2595,2338,2647,2673,2554,2629,2638,2999,2873,2783,2983,2812,2849,2912,2441,2834,3303,2576,2222,1615,1752,2198,2723,3017,3065,2510,2438,2274,2283,2353,1943,1798,1338,1122,1058,1009,935,930,906,966,1096,944,924
-2019F,NM,KSCCP,4,1,1,2,3,4,7,2,5,8,8,5,7,15,8,7,8,10,10,11,659,526,153,1186,145,61,13,15,31,14,15,20,9,6,3,4,1,3,3,6,8,16,8,6,3,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,KSICP,463,181,126,160,356,358,582,857,840,1038,957,605,628,1077,590,620,527,782,744,842,548,156,254,465,67,89,34,23,8,46,37,39,10,7,5,7,10,6,9,18,15,7,6,2,1,1,3,1,1,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,KSRCP,17,6,4,8,12,14,27,8,19,31,29,20,25,58,29,27,31,39,38,42,132,85,178,287,47,41,21,22,11,10,4,6,5,4,3,6,7,5,6,23,6,5,3,4,5,5,4,3,1,1,1,0,0,0,0,0,0,0,0,0
-2019F,NM,KSTCP,485,188,130,170,372,376,617,866,864,1077,994,631,660,1150,626,654,566,832,791,895,1339,767,585,1937,260,191,68,60,51,70,56,65,23,17,11,16,17,14,17,47,29,28,17,12,10,9,10,5,2,1,1,0,0,0,1,0,1,0,0,0
-2019F,NM,KSTXP,485,188,130,170,372,376,617,866,864,1077,994,631,660,1150,626,654,566,832,791,895,1339,767,585,1937,260,191,68,60,51,70,56,65,23,17,11,16,17,14,17,47,29,28,17,12,10,9,10,5,2,1,1,0,0,0,1,0,1,0,0,0
-2019F,NM,LUACP,159,155,243,243,255,165,171,147,161,163,166,166,178,194,186,197,219,213,229,240,213,205,187,195,208,194,190,215,207,212,218,195,199,203,212,208,202,214,224,226,223,204,202,186,189,188,183,189,175,158,225,225,209,216,228,251,231,226,224,217
-2019F,NM,LUICP,67,65,66,66,69,72,75,71,78,103,104,116,124,104,100,120,133,118,127,133,118,113,103,108,116,108,105,119,115,118,121,108,111,113,118,116,112,119,124,125,123,113,112,103,105,104,101,105,97,87,199,192,186,200,228,265,244,232,239,281
-2019F,NM,LUTCP,226,220,308,308,324,237,246,218,239,265,270,282,302,298,286,317,352,331,356,372,332,318,290,304,324,302,295,334,322,330,340,304,310,315,330,324,314,332,348,351,346,317,313,290,293,292,284,294,273,245,425,418,395,416,456,515,475,458,463,498
-2019F,NM,LUTXP,226,220,308,308,324,237,246,218,239,265,270,282,302,298,286,317,352,331,356,372,332,318,290,304,324,302,295,334,322,330,340,304,310,315,330,324,314,332,348,351,346,317,313,290,293,292,284,294,273,245,425,418,395,416,456,515,475,458,463,498
-2019F,NM,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-353,-270,-198,-61,-191,-274,-123,-56,56,51,-32,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,MGACP,9213,9356,9720,10099,10230,10511,10858,11025,11584,12294,12884,13891,14825,15832,15480,16257,17193,17780,18716,17769,16721,16780,16966,16936,17142,17431,17840,18489,18852,18430,18190,18674,19004,19815,20187,20342,19570,20794,21403,21828,20883,20986,21398,21451,22416,22262,22570,22403,21655,22609,21301,22094,22228,21975,22416,22312,21965,23344,23084,23087
-2019F,NM,MGCCP,46,49,52,54,52,54,57,61,64,68,70,70,69,72,85,91,95,97,101,104,108,120,124,106,95,113,116,123,118,119,127,113,100,18,18,18,18,18,18,18,19,39,337,551,77,23,20,21,21,20,20,21,22,23,20,380,380,386,391,392
-2019F,NM,MGICP,295,269,264,257,223,241,235,193,212,185,192,200,191,155,153,145,135,128,105,104,84,72,55,47,210,361,341,329,333,348,330,361,328,561,600,653,658,693,497,342,346,630,622,666,755,729,750,512,469,453,404,406,383,394,342,568,588,591,625,586
-2019F,NM,MGTCP,9555,9674,10036,10410,10505,10806,11150,11279,11860,12547,13146,14161,15085,16060,15719,16493,17423,18005,18922,17976,16913,16972,17144,17088,17447,17905,18298,18941,19302,18897,18647,19148,19432,20394,20806,21014,20247,21505,21918,22189,21247,21655,22357,22669,23249,23014,23340,22935,22145,23082,21726,22521,22633,22392,22779,23260,22933,24321,24101,24064
-2019F,NM,MGTXP,9555,9674,10036,10410,10505,10806,11150,11279,11860,12547,13146,14161,15085,16060,15719,16493,17423,18005,18922,17976,16913,16972,17144,17088,17447,17905,18298,18941,19302,18897,18647,19148,19432,20394,20806,21014,20247,21505,21918,22189,21247,21655,22357,22669,23249,23014,23340,22935,22145,23082,21726,22521,22633,22392,22779,23260,22933,24321,24101,24064
-2019F,NM,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,13,12,11,29,19,18,20,18,127,139,170,160,170,44,47,44,40,39,0,0,0,0,0,0,0,12,13,14,14,14,13,12
-2019F,NM,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,NGACP,16972,25751,25413,23232,19816,24905,21128,24440,26062,28494,30287,29095,36306,29516,32346,29018,27901,22157,22974,29136,38355,39307,34877,30341,9319,25966,25753,25703,37094,52386,76091,71788,50351,62346,59207,56864,27061,62383,52511,48680,45971,45670,41773,29467,27335,19937,17736,13692,13718,11824,8897,7317,7717,8938,8715,8810,8523,8935,10127,12326
-2019F,NM,NGCCP,9018,10269,12773,10016,12462,12569,13988,27447,30713,28680,33035,33760,32354,25569,25221,22800,33708,25476,25706,26371,24505,20446,21715,22413,22947,16733,20642,19939,31032,28459,23694,24993,27884,27898,24964,23934,26466,27403,27206,27103,27009,27133,25476,23745,25458,24186,23404,24876,25183,24701,25155,25035,24898,26790,25693,25038,24954,23624,25948,29661
-2019F,NM,NGEIP,33701,35468,37653,38718,41689,43996,46387,50273,49316,54498,54894,49189,59141,66431,67894,65229,69663,70203,63279,60410,56280,54560,44726,30626,30810,28133,20182,18454,21064,27365,25475,28156,22542,27786,32305,32029,35150,40256,45534,43018,46885,48981,37324,37849,30817,41207,55506,61050,68742,70102,70694,73379,74357,74817,76973,78337,81274,75459,98438,103430
-2019F,NM,NGICP,120242,117536,139373,120032,108077,96687,112323,122304,123115,112172,121116,124928,125571,111565,106644,95387,111228,86452,75857,67391,74074,57246,76416,68725,71380,58344,43603,61617,56415,60934,85181,64112,70767,66681,73473,73576,104609,90333,84702,81925,110693,109749,97025,98340,105626,102146,96554,101148,105026,102162,101138,106387,104473,98933,103881,105204,100433,101295,102596,108157
-2019F,NM,NGRCP,20358,22520,23522,24528,22372,24237,29450,31126,31568,28061,30771,32396,34621,23730,25331,27826,36476,25525,25882,27874,28579,24653,26429,26593,27394,21952,24019,27534,27846,26591,28145,29767,31433,31843,30868,28770,33689,36623,35877,35548,35921,34750,33499,31619,34339,33242,30435,33471,33996,32405,35253,34299,32515,36024,32374,33130,32577,29993,34438,42384
-2019F,NM,NGTCP,200291,211544,238734,216526,204416,202394,223276,255590,260774,251905,270103,269368,287993,256811,257436,240260,278976,229813,213698,211182,221793,196212,204163,178698,161850,151128,134199,153247,173451,195736,238586,218816,202977,216554,220817,215172,226975,256998,245831,236274,266479,266283,235098,221020,223575,220717,223635,234236,246665,241194,241137,246417,243960,245502,247636,250519,247761,239306,271547,295958
-2019F,NM,NGTPP,209.9,219.2,243.9,218.9,203.2,200,221.7,255.6,262.3,249.2,264,255.6,267,232.3,227.6,207.1,234.6,189,172.6,164.4,169.4,147.2,149.7,128.2,114.2,105.1,91.7,103.6,116.4,130.2,156.8,140.7,127.2,132.3,131.3,125.1,129.5,144.8,137.1,130.7,146.3,145.4,126.7,117.7,117.4,114.2,114,117.7,122.7,118.4,116.8,118.4,116.9,117.3,118.5,119.9,118.4,114.3,129.7,141
-2019F,NM,NGTXP,166590,176076,201081,177808,162727,158398,176889,205317,211458,197407,215209,220179,228852,190380,189542,175031,209313,159610,150419,150772,165513,141652,159437,148072,131040,122995,114017,134793,152387,168371,213111,190660,180435,188768,188512,183144,191825,216742,200296,193256,219594,217302,197774,183171,192758,179511,168130,173186,177923,171092,170443,173038,169603,170685,170663,172182,166487,163847,173109,192528
-2019F,NM,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,OPICP,372,388,422,428,471,499,523,531,589,600,602,588,668,764,1347,1277,1455,1268,1362,1556,1449,792,742,1011,649,581,615,755,951,1012,973,1045,1265,1114,1232,1161,1509,1511,1268,1281,1185,1413,1333,1464,1674,1765,1949,1886,1813,1714,1868,1906,1960,1959,1759,1779,1765,1963,1916,1965
-2019F,NM,OPTCP,372,388,422,428,471,499,523,531,589,600,602,588,668,764,1347,1277,1455,1268,1362,1556,1449,792,742,1011,649,581,615,755,951,1012,973,1045,1265,1114,1232,1161,1509,1511,1268,1281,1185,1413,1333,1464,1674,1765,1949,1886,1813,1714,1868,1906,1960,1959,1759,1779,1765,1963,1916,1965
-2019F,NM,OPTXP,372,388,422,428,471,499,523,531,589,600,602,588,668,764,1347,1277,1455,1268,1362,1556,1449,792,742,1011,649,581,615,755,951,1012,973,1045,1265,1114,1232,1161,1509,1511,1268,1281,1185,1413,1333,1464,1674,1765,1949,1886,1813,1714,1868,1906,1960,1959,1759,1779,1765,1963,1916,1965
-2019F,NM,P1ICP,1931,1712,1776,1821,2118,2442,2592,2791,3158,2818,2987,2318,2585,3136,3612,3854,3777,3567,3889,4181,3468,2506,2874,3687,3098,2684,2772,3360,3621,3265,3067,3180,3777,4256,4014,3677,3836,3426,3995,3871,3648,2849,3959,4133,4365,4260,4635,4950,4236,3780,4101,4288,4209,3944,3705,3720,3627,3710,3795,3821
-2019F,NM,P1TCP,2313,2052,2311,2355,2704,2863,2999,3090,3473,3146,3301,2626,2901,3487,3941,4166,4114,3912,4247,4554,4639,3457,3521,5461,3582,3075,3099,3698,3926,3598,3391,3496,4083,4540,4294,3948,4146,3750,4288,4195,3958,3153,4245,4394,4651,4515,4873,5189,4531,4026,4375,4559,4460,4197,3978,4011,3900,3974,4057,4078
-2019F,NM,P1TXP,2313,2052,2311,2355,2704,2863,2999,3090,3473,3146,3301,2626,2901,3487,3941,4166,4114,3912,4247,4554,4639,3457,3521,5461,3582,3075,3099,3698,3926,3598,3391,3496,4083,4540,4294,3948,4146,3750,4288,4195,3958,3153,4245,4394,4651,4515,4873,5189,4531,4026,4375,4559,4460,4197,3978,4011,3900,3974,4057,4078
-2019F,NM,PAACP,13826,14060,15378,16062,16281,16301,16703,16877,18621,19056,19684,20721,22306,23619,23285,23615,24799,26103,27741,26384,25214,27933,25607,23672,24489,25094,26293,27632,28000,27647,27539,27649,29223,29480,28664,25790,29377,31440,33182,33887,33541,34195,34129,34712,36459,36617,38405,37664,34960,34877,34464,35879,35887,35779,37007,37403,36791,39343,40326,40582
-2019F,NM,PACCP,482,529,487,482,564,464,408,461,525,621,642,622,681,687,619,562,576,713,642,587,1172,1511,1078,2684,1172,967,655,809,708,766,951,784,536,489,380,457,386,434,517,800,751,1179,1291,1387,963,1051,883,615,1041,629,642,589,649,611,693,977,936,874,935,1175
-2019F,NM,PAEIP,117,115,75,72,67,46,56,70,36,42,94,363,440,785,1087,1738,1016,1000,450,815,391,178,327,234,124,86,83,83,94,84,69,67,73,72,47,44,43,42,45,72,67,70,54,88,53,64,73,82,102,85,92,72,88,110,123,126,101,81,42,703
-2019F,NM,PAICP,4508,4127,4365,4270,5346,5855,5362,4955,6281,6413,7242,6417,7651,9204,9496,9800,10009,10367,10008,11114,9866,8922,6545,10004,11991,6868,6634,6534,6662,7677,10818,15508,14739,14831,13588,13501,7638,7673,7450,8220,6838,6065,7130,7683,7910,7418,8235,13086,7557,5885,6351,6565,6796,6679,6883,6196,6535,6962,7127,6794
-2019F,NM,PARCP,1391,1642,1478,1499,1755,1461,1268,1534,1715,2054,1939,1803,2012,1731,1556,1240,1208,1345,1115,1243,1294,884,1228,1523,625,2046,999,998,878,1181,1635,1297,1058,778,746,827,821,1041,1523,1989,1954,3289,2622,2031,1813,1959,2036,1729,1811,1816,1635,1480,1271,1498,1276,1138,1259,1047,1156,1253
-2019F,NM,PATCP,20325,20473,21782,22385,24014,24127,23797,23898,27177,28186,29601,29925,33090,36026,36043,36955,37608,39528,39956,40143,37937,39428,34784,38118,38401,35061,34664,36056,36342,37356,41013,45306,45631,45650,43425,40620,38266,40629,42718,44969,43151,44799,45226,45901,47199,47110,49632,53176,45471,43292,43184,44585,44691,44678,45982,45840,45622,48307,49586,50507
-2019F,NM,PATPP,21.3,21.2,22.2,22.6,23.9,23.8,23.6,23.9,27.3,27.9,28.9,28.4,30.7,32.6,31.9,31.9,31.6,32.5,32.3,31.2,29,29.6,25.5,27.3,27.1,24.4,23.7,24.4,24.4,24.8,27,29.1,28.6,27.9,25.8,23.6,21.8,22.9,23.8,24.9,23.7,24.5,24.4,24.4,24.8,24.4,25.3,26.7,22.6,21.3,20.9,21.4,21.4,21.3,22,21.9,21.8,23.1,23.7,24.1
-2019F,NM,PATXP,20208,20358,21708,22314,23947,24080,23741,23828,27141,28144,29507,29563,32650,35241,34956,35217,36592,38528,39506,39328,37545,39250,34458,37884,38277,34975,34581,35973,36248,37272,40944,45239,45558,45578,43378,40576,38223,40587,42673,44896,43084,44728,45172,45813,47146,47046,49559,53094,45370,43206,43091,44513,44604,44568,45859,45714,45521,48227,49544,49804
-2019F,NM,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,PCICP,65,65,155,140,50,125,185,190,195,110,115,195,200,195,210,205,200,200,225,230,215,280,326,329,365,405,401,394,434,424,485,464,518,584,545,534,557,557,546,544,550,525,514,586,595,590,649,607,557,580,616,601,518,472,441,449,462,498,429,432
-2019F,NM,PCTCP,65,65,155,140,50,125,185,190,195,110,115,195,200,195,210,205,200,200,225,230,215,280,326,329,365,405,401,394,434,424,485,464,518,584,545,534,557,557,546,544,550,525,514,586,595,590,649,607,557,580,616,601,518,472,441,449,462,498,429,432
-2019F,NM,PCTXP,65,65,155,140,50,125,185,190,195,110,115,195,200,195,210,205,200,200,225,230,215,280,326,329,365,405,401,394,434,424,485,464,518,584,545,534,557,557,546,544,550,525,514,586,595,590,649,607,557,580,616,601,518,472,441,449,462,498,429,432
-2019F,NM,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23,23,20,20,16,16,16,5,18,2
-2019F,NM,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,388,328,408,370,378,299,296,315,417,486
-2019F,NM,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,183,247,293,317,331,380,245,310,323,126
-2019F,NM,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1634,1479,1270,1496,1274,1136,1258,1047,1156,1251
-2019F,NM,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2228,2077,1991,2202,2000,1831,1815,1677,1913,1864
-2019F,NM,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2228,2077,1991,2202,2000,1831,1815,1677,1913,1864
-2019F,NM,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NM,RFACP,25,62,37,35,1,36,41,12,5,2,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,RFCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,413,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,RFEIP,107,105,68,65,61,42,51,64,33,38,86,349,427,763,1055,1704,977,970,426,796,175,53,168,151,88,41,41,30,42,36,32,10,2,1,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,RFICP,59,156,179,124,112,621,310,39,60,61,123,75,223,825,1319,1342,1477,1304,908,245,858,801,625,2671,1785,781,222,57,78,147,115,118,126,180,176,179,194,158,136,141,136,86,131,157,105,87,138,158,229,10,34,0,0,0,0,0,0,0,0,0
-2019F,NM,RFTCP,191,323,284,224,173,699,401,116,98,102,220,430,650,1588,2374,3046,2454,2274,1333,1041,1033,854,792,3441,2287,825,263,87,120,182,148,128,128,181,176,179,195,158,136,141,136,96,131,157,105,87,138,158,229,10,34,0,0,0,0,0,0,0,0,0
-2019F,NM,RFTXP,84,218,216,159,113,657,350,52,65,63,134,82,223,825,1319,1342,1477,1304,908,245,858,801,625,3290,2199,784,222,57,78,147,115,118,126,180,176,179,194,158,136,141,136,86,131,157,105,87,138,158,229,10,34,0,0,0,0,0,0,0,0,0
-2019F,NM,SGICP,372,388,422,404,445,468,487,498,553,565,559,533,615,714,1245,1172,1327,1162,1238,1462,1344,1459,1356,1380,917,993,1184,1181,1236,1284,1228,1554,1544,1533,1505,1482,1494,1468,1411,1404,1414,1438,1412,1461,1706,1711,1852,1796,1877,1810,1826,1830,1876,1889,1806,1751,1708,1852,1864,1782
-2019F,NM,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,36,34,32,0,0,0
-2019F,NM,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,16,30,44,67,73,64,76,81,88
-2019F,NM,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,128,334,388,515,615,752,1193,1349,1366
-2019F,NM,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1
-2019F,NM,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,6,13,23,41,52,69,92,128,168,212
-2019F,NM,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,21,157,387,474,635,757,909,1397,1599,1667
-2019F,NM,TPOPP,954,965,979,989,1006,1012,1007,1000,994,1011,1023,1054,1079,1106,1131,1160,1189,1216,1238,1285,1309,1333,1364,1394,1417,1438,1463,1479,1490,1504,1522,1555,1595,1636,1682,1720,1752,1775,1793,1808,1821,1832,1855,1878,1904,1932,1962,1990,2011,2037,2065,2081,2088,2093,2090,2090,2093,2093,2094,2100
-2019F,NM,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-374,-402,-239,-262,-288,-306,-313,-240,-341,-317,-505,-390,-437,-301,-346,-121,-108,-317,-290,-403,-76,-135,-49,-86,3,86,79,-71,-100,36,71,78,21,-99,-21,10,96,39,170
-2019F,NM,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,7,4,6,5,6,3,3,2,2,1,2,1
-2019F,NM,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,3,3,3,3,3,3
-2019F,NM,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,513,795,1255,1393,1643,1547,1832,2101,2222,2190,2272,2087,3603,4592,6089,6889
-2019F,NM,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NM,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,513,795,1255,1393,1643,1547,1832,2104,2226,2193,2275,2090,3605,4595,6092,6892
-2019F,NM,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,3,3,3,3,3,3
-2019F,NV,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,ARICP,247,423,451,669,635,367,815,751,532,603,609,620,858,965,1027,837,699,682,750,794,614,498,663,751,750,844,567,864,931,1398,1083,1072,841,1147,1258,1486,1432,445,1388,808,795,1017,958,1831,1912,2167,2112,1315,1336,1285,1473,1658,1592,1367,1306,1307,1116,1271,1182,1085
-2019F,NV,ARTCP,247,423,451,669,635,367,815,751,532,603,609,620,858,965,1027,837,699,682,750,794,614,498,663,751,750,844,567,864,931,1398,1083,1072,841,1147,1258,1486,1432,445,1388,808,795,1017,958,1831,1912,2167,2112,1315,1336,1285,1473,1658,1592,1367,1306,1307,1116,1271,1182,1085
-2019F,NV,ARTXP,247,423,451,669,635,367,815,751,532,603,609,620,858,965,1027,837,699,682,750,794,614,498,663,751,750,844,567,864,931,1398,1083,1072,841,1147,1258,1486,1432,445,1388,808,795,1017,958,1831,1912,2167,2112,1315,1336,1285,1473,1658,1592,1367,1306,1307,1116,1271,1182,1085
-2019F,NV,AVACP,281,277,462,419,360,335,373,325,304,227,186,170,166,166,180,197,143,163,186,181,206,186,122,110,98,105,124,101,120,118,111,111,105,113,108,63,93,76,65,78,81,88,84,74,83,138,138,137,147,118,69,64,57,53,65,39,37,37,44,46
-2019F,NV,AVTCP,281,277,462,419,360,335,373,325,304,227,186,170,166,166,180,197,143,163,186,181,206,186,122,110,98,105,124,101,120,118,111,111,105,113,108,63,93,76,65,78,81,88,84,74,83,138,138,137,147,118,69,64,57,53,65,39,37,37,44,46
-2019F,NV,AVTXP,281,277,462,419,360,335,373,325,304,227,186,170,166,166,180,197,143,163,186,181,206,186,122,110,98,105,124,101,120,118,111,111,105,113,108,63,93,76,65,78,81,88,84,74,83,138,138,137,147,118,69,64,57,53,65,39,37,37,44,46
-2019F,NV,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,8,22,30,26,27,22,75,4,43,145,5,211,197,197,197
-2019F,NV,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,8,22,30,26,27,22,75,4,43,145,5,211,197,197,197
-2019F,NV,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,CLACP,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,CLCCP,12,9,12,17,22,29,41,11,8,5,29,16,2,2,3,6,9,36,4,4,3,6,4,3,23,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,CLEIP,0,0,0,0,0,180,302,324,536,620,544,1387,3576,3863,4333,4435,4850,5048,4043,4381,4064,4877,6403,6115,6811,5427,7086,6807,8153,7487,7270,7892,7914,7608,7772,7084,7424,7261,7961,7763,8634,8190,7885,7869,8502,8622,3488,3447,3878,3822,3588,2863,2258,2933,3446,1507,1192,1097,1412,1551
-2019F,NV,CLICP,119,119,131,90,73,61,29,20,21,24,70,115,158,137,130,77,142,131,86,105,147,192,209,171,109,110,107,111,121,178,169,197,173,196,195,254,179,185,254,304,231,208,185,225,212,203,206,204,201,153,192,110,299,334,331,301,285,258,295,286
-2019F,NV,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,CLOCP,119,119,131,90,73,61,29,20,21,24,70,115,158,137,130,77,142,131,86,105,147,192,209,171,109,110,107,111,121,178,169,197,173,196,195,254,179,185,254,304,231,208,185,225,212,203,206,204,201,153,192,110,299,334,331,301,285,258,295,286
-2019F,NV,CLRCP,18,13,17,24,30,39,54,15,11,7,37,15,1,1,1,3,4,14,1,1,1,1,1,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,CLTCP,151,142,161,131,126,309,427,370,576,656,680,1533,3737,4003,4467,4521,5005,5229,4134,4490,4215,5076,6617,6289,6948,5539,7195,6920,8276,7667,7442,8091,8088,7806,7968,7340,7604,7447,8216,8067,8865,8399,8071,8095,8715,8826,3696,3651,4078,3975,3780,2973,2556,3267,3777,1808,1478,1356,1707,1837
-2019F,NV,CLTXP,151,142,161,131,126,129,125,46,40,37,136,146,161,140,135,86,155,181,91,109,151,199,214,174,137,112,109,113,123,180,172,199,174,198,196,256,180,186,255,304,231,209,186,226,213,204,208,204,201,153,192,110,299,334,331,301,285,258,295,286
-2019F,NV,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,DFACP,1501,1851,1866,1713,2178,1599,1363,1275,1647,1718,1492,1285,1196,1616,1491,1407,1555,1691,2171,2063,2754,2399,2714,3152,2848,3146,3100,3772,3620,3661,3294,3501,3684,4074,4256,4287,5852,5339,5354,6079,6266,6528,6860,7092,8044,8545,9785,9381,7874,7740,7618,7249,7002,7447,7092,7160,7620,8344,8309,8883
-2019F,NV,DFCCP,107,140,126,129,153,140,130,123,123,127,161,231,202,209,119,130,127,149,197,104,353,332,77,348,407,315,500,605,423,383,311,292,339,903,816,832,987,282,309,364,401,336,357,280,372,494,521,306,301,246,345,354,205,320,289,411,443,480,518,446
-2019F,NV,DFEIP,7,3,4,10,8,8,8,11,10,9,13,9,16,22,28,58,55,12,24,50,22,24,37,44,41,54,26,35,69,68,91,74,67,179,49,27,35,47,38,35,48,34,36,27,22,38,26,22,28,32,25,28,41,35,29,31,22,19,21,25
-2019F,NV,DFICP,575,721,771,717,773,740,682,620,658,642,840,1156,1132,986,647,705,764,929,1134,716,651,584,539,1530,1794,1497,1578,1387,2191,3002,2906,2970,3421,3851,3917,3452,3959,4058,3233,2740,2824,2530,2211,1659,2780,3171,3373,3576,3328,3586,3577,1798,1549,1859,3322,607,3024,3723,4033,3854
-2019F,NV,DFRCP,219,285,256,263,312,286,266,252,251,259,328,470,413,425,242,265,260,304,402,211,187,151,158,218,255,276,250,275,271,255,213,220,247,266,233,176,198,260,273,208,212,218,208,170,171,204,157,147,160,117,97,74,52,29,26,33,38,42,39,46
-2019F,NV,DFTCP,2409,3000,3023,2831,3424,2775,2449,2280,2689,2756,2834,3152,2959,3258,2527,2565,2762,3086,3929,3144,3966,3490,3525,5292,5346,5289,5454,6074,6574,7369,6815,7056,7758,9272,9271,8774,11031,9987,9207,9426,9750,9646,9672,9229,11388,12452,13862,13431,11692,11721,11663,9504,8849,9690,10757,8242,11146,12608,12921,13254
-2019F,NV,DFTXP,2402,2997,3019,2821,3416,2767,2442,2269,2679,2747,2821,3142,2943,3236,2499,2507,2707,3074,3905,3094,3944,3466,3488,5247,5305,5235,5428,6039,6505,7301,6724,6983,7692,9093,9222,8746,10996,9939,9168,9391,9702,9612,9636,9202,11366,12414,13836,13409,11664,11689,11638,9476,8808,9655,10728,8211,11125,12589,12900,13230
-2019F,NV,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,43,67,43,67,72,38,9,2,3,1,0,0,0,9,0
-2019F,NV,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,20,0,72,2,8,2,1,7,0,0,0,0,0,0,0,85,221,203,288,157,344,102,37,38,180,145,17,40,11,45,45,46,0
-2019F,NV,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1734,-3452,-3436,-2661,-2053,-709,-224,113,-2648,-1014,-4327,-2703,333,133,-2704,-4235,6533,5513,2816,-883,1093,4195,2453,1408,1421,-578,-1208,797,421,-670
-2019F,NV,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,20,0,72,2,8,2,1,7,0,0,0,0,0,0,0,85,221,188,245,91,300,36,-35,1,171,143,13,40,11,45,45,38,0
-2019F,NV,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,2,40,141,136,106,114,155,188,226,0,300,0,0,345,632,685,731,863,1009,1034,1035,1002,1225,1846,2099,2115,2118,2032,2095,2256,2706,2744,2857,2899,2933
-2019F,NV,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,2,1,87,88,88,89,91
-2019F,NV,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,0,3,0,0,7,4,3,15,18,21,23,24,22,14,29,32,26,24,25,24,32,46,46,47,48,49
-2019F,NV,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,2,40,143,138,108,116,158,190,228,0,304,0,0,352,636,689,747,881,1031,1058,1060,1025,1239,1877,2133,2142,2143,2058,2122,2290,2838,2878,2992,3036,3074
-2019F,NV,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,9,8,8
-2019F,NV,ESCCP,655,743,840,958,1115,1235,1463,1562,1708,1905,2069,2221,2464,2675,2736,2876,2549,2518,2911,2183,1775,2035,1906,1954,3183,3408,3454,3737,4032,4295,4550,4671,4909,5037,5417,5509,5973,6383,6544,7007,7147,7321,8130,8168,8275,8516,8975,9352,9304,8950,8970,8995,9315,9302,9418,9614,9929,11123,12124,11681
-2019F,NV,ESICP,793,1120,1062,1084,1054,1059,1459,1577,1439,1639,1635,1584,1828,2026,2185,1964,2397,2592,2616,4390,4936,4777,4880,4849,3737,3808,4103,4480,4685,5504,6263,6173,6723,7181,7775,8496,9075,10034,10518,10861,11239,11239,11373,11624,12364,12897,13625,13893,13820,13445,13180,13420,13734,13759,13733,14059,13515,12590,12198,12426
-2019F,NV,ESRCP,719,797,939,1199,1484,1268,1421,1508,1603,1855,1990,2251,2444,2739,2800,2803,2797,2922,3369,3767,3697,3501,3782,3662,4055,4126,4097,4537,4968,5169,5540,5782,6064,6281,6845,6655,7526,7801,7975,8386,9406,9607,9702,10340,10673,11080,11978,12390,12061,11880,11615,11493,12123,12142,11917,12339,12692,12937,13450,12868
-2019F,NV,ESRPP,2470,2530,2668,3020,3484,2857,3186,3359,3454,3864,4036,4328,4470,4814,4692,4521,4323,4308,4683,4922,4563,4130,4291,4059,4385,4338,4178,4433,4621,4545,4538,4461,4488,4451,4565,4208,4517,4422,4303,4334,4659,4578,4463,4598,4549,4556,4748,4763,4545,4425,4298,4236,4417,4373,4227,4301,4347,4353,4438,4163
-2019F,NV,ESTCP,2167,2660,2841,3241,3653,3563,4343,4647,4750,5399,5693,6056,6737,7439,7721,7643,7743,8032,8896,10340,10408,10314,10568,10465,10976,11341,11654,12754,13684,14968,16352,16625,17696,18499,20036,20659,22574,24219,25037,26253,27792,28167,29204,30132,31312,32501,34586,35643,35192,34284,33773,33916,35180,35211,35076,36020,36145,36658,37780,36982
-2019F,NV,ESTPP,7448,8445,8071,8163,8575,8025,9738,10349,10237,11248,11549,11645,12320,13075,12938,12328,11968,11841,12365,13510,12846,12167,11988,11602,11867,11925,11885,12462,12729,13160,13396,12827,13095,13108,13364,13063,13547,13729,13510,13570,13767,13423,13435,13399,13346,13363,13710,13703,13262,12770,12497,12501,12818,12680,12443,12557,12380,12334,12466,11965
-2019F,NV,ESTXP,2167,2660,2841,3241,3653,3563,4343,4647,4750,5399,5693,6056,6737,7439,7721,7643,7743,8032,8896,10340,10408,10314,10568,10465,10976,11341,11654,12754,13684,14968,16352,16625,17696,18499,20036,20659,22574,24219,25037,26253,27792,28167,29204,30132,31312,32501,34586,35643,35192,34284,33773,33916,35180,35211,35076,36020,36145,36658,37780,36982
-2019F,NV,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,FSICP,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,3,4,3,4,2,2,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,761,995,1178,1540,1495,1554,1555,1596,1537,1415,1371,1200,1127,1066,1298,1263,1344,1253,1383,1633,2070,2146,2347,2670,2729,3111,3353,3292,3429,3467
-2019F,NV,HLACP,5,9,3,5,11,9,3,3,7,4,9,10,9,9,12,13,11,11,7,62,3,12,21,25,43,31,22,18,22,20,22,21,24,26,43,19,22,19,7,0,1,144,2,62,44,89,65,65,118,73,13,13,11,12,33,23,32,31,17,5
-2019F,NV,HLCCP,99,123,141,152,184,186,144,192,197,211,223,224,204,184,172,114,109,112,95,144,153,145,161,190,181,233,196,188,223,306,293,263,227,223,230,183,197,209,221,321,195,186,271,111,89,301,241,249,279,234,195,166,300,301,267,355,229,304,320,380
-2019F,NV,HLICP,445,486,362,391,99,101,17,38,47,57,99,94,92,79,114,107,74,48,62,315,374,349,428,328,157,247,259,305,344,740,446,273,241,151,647,197,302,147,180,326,672,775,220,239,133,84,114,119,266,259,345,306,320,186,329,172,208,277,321,355
-2019F,NV,HLRCP,225,281,321,347,420,424,328,438,450,481,508,510,464,420,391,259,248,255,216,329,349,330,366,433,413,532,447,428,509,697,668,600,517,509,525,416,449,477,503,731,445,424,618,378,348,457,490,483,551,675,622,643,451,651,514,517,530,572,484,522
-2019F,NV,HLTCP,773,899,826,895,714,720,492,670,701,752,839,838,769,693,689,493,442,425,380,850,880,835,976,975,793,1043,924,938,1098,1762,1430,1157,1009,910,1446,815,970,852,911,1378,1313,1529,1111,790,614,931,911,915,1213,1241,1175,1128,1081,1150,1143,1067,999,1185,1141,1262
-2019F,NV,HLTXP,773,899,826,895,714,720,492,670,701,752,839,838,769,693,689,493,442,425,380,850,880,835,976,975,793,1043,924,938,1098,1762,1430,1157,1009,910,1446,815,970,852,911,1378,1313,1529,1111,790,614,931,911,915,1213,1241,1175,1128,1081,1150,1143,1067,999,1185,1141,1262
-2019F,NV,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,HYEGP,1967,1748,1972,1804,1616,1594,1800,1732,1749,1701,1645,1678,1563,1669,1600,1690,1555,1617,1666,1716,2372,1729,1420,4094,5613,4344,4584,2526,2091,1859,1735,2365,1986,1972,1876,1942,2164,2587,3166,2828,2429,2514,2268,1757,1615,1702,2058,2003,1751,2461,2157,2191,2440,2682,2389,2264,1789,1813,1881,2242
-2019F,NV,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,HYTCP,1967,1748,1972,1804,1617,1595,1801,1732,1750,1701,1646,1678,1563,1669,1600,1690,1555,1617,1666,1716,2372,1729,1420,4094,5613,4344,4584,2526,2091,1859,1735,2365,1986,1972,1876,1942,2164,2587,3166,2828,2429,2514,2268,1757,1615,1702,2058,2003,1751,2461,2157,2191,2440,2682,2389,2264,1789,1813,1881,2242
-2019F,NV,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,JFACP,2462,2643,2963,3122,3352,2999,3147,3932,4816,4954,4584,4853,5287,5591,5572,5859,6157,6502,6884,7378,7223,7030,6722,6748,5927,5715,5952,6431,6416,6105,6114,6556,6162,6510,6813,7374,7843,7559,6721,8354,9163,8414,8154,7651,7915,8157,8551,9207,7717,4886,11880,12004,11847,12089,11995,12300,13277,13709,13524,13093
-2019F,NV,JFTCP,2462,2643,2963,3122,3352,2999,3147,3932,4816,4954,4584,4853,5287,5591,5572,5859,6157,6502,6884,7378,7223,7030,6722,6748,5927,5715,5952,6431,6416,6105,6114,6556,6162,6510,6813,7374,7843,7559,6721,8354,9163,8414,8154,7651,7915,8157,8551,9207,7717,4886,11880,12004,11847,12089,11995,12300,13277,13709,13524,13093
-2019F,NV,JFTXP,2462,2643,2963,3122,3352,2999,3147,3932,4816,4954,4584,4853,5287,5591,5572,5859,6157,6502,6884,7378,7223,7030,6722,6748,5927,5715,5952,6431,6416,6105,6114,6556,6162,6510,6813,7374,7843,7559,6721,8354,9163,8414,8154,7651,7915,8157,8551,9207,7717,4886,11880,12004,11847,12089,11995,12300,13277,13709,13524,13093
-2019F,NV,KSCCP,0,3,4,0,1,1,4,0,2,9,10,7,6,6,14,12,20,26,28,6,0,18,6,3,4,5,5,4,8,5,4,3,4,3,2,1,2,1,2,3,2,2,1,2,2,3,6,6,3,11,8,1,0,0,0,0,1,1,0,2
-2019F,NV,KSICP,3,0,5,3,6,4,0,0,1,1,6,6,3,2,12,17,10,23,23,0,0,18,0,11,8,1,4,11,3,7,7,9,10,1,1,2,2,2,1,15,1,1,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0
-2019F,NV,KSRCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,43,33,47,43,20,17,14,8,10,10,11,4,6,6,5,10,8,8,7,7,11,18,18,16,17,9,25,21,3,2,1,0,0,0,0,1,1
-2019F,NV,KSTCP,3,3,9,3,7,5,4,0,3,10,16,13,9,8,26,29,30,49,51,6,0,72,18,57,45,53,52,35,28,26,19,23,23,14,8,9,9,8,13,26,11,10,8,13,20,21,21,23,12,37,29,5,3,1,1,0,1,1,1,3
-2019F,NV,KSTXP,3,3,9,3,7,5,4,0,3,10,16,13,9,8,26,29,30,49,51,6,0,72,18,57,45,53,52,35,28,26,19,23,23,14,8,9,9,8,13,26,11,10,8,13,20,21,21,23,12,37,29,5,3,1,1,0,1,1,1,3
-2019F,NV,LUACP,73,71,78,78,82,86,89,73,81,81,83,82,88,101,97,94,104,83,89,94,83,80,73,76,81,76,74,84,81,83,85,76,78,79,83,81,79,83,87,88,87,80,79,73,74,73,71,74,69,62,193,180,165,178,177,194,190,184,175,172
-2019F,NV,LUICP,18,18,15,15,16,36,37,18,19,22,23,21,23,24,23,26,29,25,27,28,25,24,22,23,25,23,22,25,24,25,26,23,23,24,25,25,24,25,26,27,26,24,24,22,22,22,22,22,21,19,192,187,159,147,132,126,131,142,145,141
-2019F,NV,LUTCP,92,89,93,93,98,121,126,91,100,103,105,104,111,126,121,120,133,108,116,122,108,104,95,99,106,99,97,109,105,108,111,99,101,103,108,106,103,109,114,115,113,104,102,95,96,95,93,96,89,80,385,367,324,324,309,320,321,326,320,313
-2019F,NV,LUTXP,92,89,93,93,98,121,126,91,100,103,105,104,111,126,121,120,133,108,116,122,108,104,95,99,106,99,97,109,105,108,111,99,101,103,108,106,103,109,114,115,113,104,102,95,96,95,93,96,89,80,385,367,324,324,309,320,321,326,320,313
-2019F,NV,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-12,-12,-8,-4,-12,-16,-7,-3,3,0,-2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,MGACP,3472,3735,4349,4806,4995,5329,5528,5624,6155,6404,7158,7517,8286,8831,8785,9449,9821,10434,11536,11138,11052,11379,11097,11086,11291,11414,11990,12836,13834,14341,14688,15096,15799,16080,17028,17803,18743,19640,21623,21437,21938,22406,23091,24344,25466,26507,27601,28084,26778,26058,25750,25283,25171,25757,25781,26074,26729,27452,28088,27911
-2019F,NV,MGCCP,29,30,30,40,46,44,45,46,48,42,49,56,56,60,59,69,51,54,53,57,61,68,73,129,202,82,83,85,81,81,84,78,69,12,12,13,13,13,13,13,13,16,18,16,16,16,17,17,31,17,17,17,17,27,17,836,852,849,863,869
-2019F,NV,MGICP,120,110,130,125,118,131,137,138,152,137,166,148,153,108,109,115,130,120,109,133,111,112,141,73,65,131,138,154,145,148,170,179,172,140,191,201,206,299,434,134,111,456,473,503,568,614,619,313,418,397,316,289,304,301,365,443,445,448,466,471
-2019F,NV,MGTCP,3621,3874,4509,4971,5159,5504,5709,5808,6356,6583,7374,7721,8495,8999,8953,9633,10003,10607,11698,11328,11224,11559,11311,11288,11558,11627,12211,13075,14059,14570,14942,15353,16040,16233,17231,18017,18962,19952,22070,21583,22063,22877,23582,24863,26050,27137,28237,28414,27227,26472,26083,25589,25492,26084,26163,27353,28026,28749,29416,29251
-2019F,NV,MGTXP,3621,3874,4509,4971,5159,5504,5709,5808,6356,6583,7374,7721,8495,8999,8953,9633,10003,10607,11698,11328,11224,11559,11311,11288,11558,11627,12211,13075,14059,14570,14942,15353,16040,16233,17231,18017,18962,19952,22070,21583,22063,22877,23582,24863,26050,27137,28237,28414,27227,26472,26083,25589,25492,26084,26163,27353,28026,28749,29416,29251
-2019F,NV,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,NGACP,0,0,0,0,103,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,170,430,324,96,83,113,44,172,195,717,791,349,536,718,751,847,873,658,1080,1171,1284,1323,1320,2263,2900,2699,3179,3383,3451,3684,3829,4752,6845,5551,5888,5680,5750,4925,5178,5491
-2019F,NV,NGCCP,869,346,787,1444,1948,2389,3268,6164,6997,8204,9633,11014,12755,13144,14078,14965,18389,17436,19940,19638,10207,8294,8449,11758,12012,12232,11451,13747,14879,15116,15073,16960,16101,17549,18694,18703,20421,21958,23314,22710,25586,22912,22685,24099,26862,26552,28046,28224,28920,29531,29475,30763,28991,31211,29105,29873,31125,32200,32772,35190
-2019F,NV,NGEIP,6339,8986,10288,9619,12540,13271,16379,16455,15844,19843,25336,37491,40043,40538,30700,25152,25105,32868,21749,39828,27541,44249,15688,9562,9389,8080,6592,7076,10658,23210,24348,22940,34672,39414,54710,61635,71134,75656,84093,89954,121054,108510,109605,115960,136945,147743,166867,171473,180668,192049,175837,162778,189291,181326,166727,209692,209901,196541,199840,193172
-2019F,NV,NGICP,3304,4992,4974,5581,5655,7877,9549,7162,8695,9796,10327,10012,7672,10342,9272,10043,12633,9583,11039,11756,7354,7097,6183,9083,8881,6173,3477,6197,7218,7859,7511,6677,9289,6288,5983,7037,7448,8420,10055,12115,11341,11482,11028,10677,11742,13758,13579,13239,12892,11462,10732,11083,11303,13212,16435,17728,18330,19272,20156,20683
-2019F,NV,NGRCP,1935,1540,1479,2648,3682,4142,5022,5230,5493,6297,7262,7994,9052,9048,9388,11091,10670,11165,11778,13211,13182,13112,15983,11427,11891,12602,12226,14141,15275,16765,17153,19135,18184,20683,21263,20686,22607,25243,30023,28772,29942,32609,31958,32848,36534,36397,37937,38088,38665,38742,39379,40595,37071,41664,35135,37029,39075,40911,41837,47931
-2019F,NV,NGTCP,12447,15864,17528,19292,23928,27679,34218,35035,37029,44140,52558,66511,69522,73072,63438,61251,66797,71052,64506,84433,58454,73182,46627,41926,42256,39200,33790,41333,48225,63667,64876,66061,78782,84653,101401,108908,122484,131935,148565,154721,189207,176835,176595,185846,214984,227148,249608,254406,264596,275468,259252,249971,273501,272964,253290,300002,304181,293849,299783,302467
-2019F,NV,NGTPP,42.8,50.4,49.8,48.6,56.2,62.3,76.7,78,79.8,92,106.6,127.9,127.1,128.4,106.3,98.8,103.2,104.7,89.7,110.3,72.1,86.3,52.9,46.5,45.7,41.2,34.5,40.4,44.9,56,53.1,51,58.3,60,67.6,68.9,73.5,74.8,80.2,80,93.7,84.3,81.2,82.6,91.6,93.4,98.9,97.8,99.7,102.6,95.9,92.1,99.6,98.3,89.9,104.6,104.2,98.9,98.9,97.9
-2019F,NV,NGTXP,6108,6878,7240,9673,11388,14408,17839,18580,21185,24297,27222,29020,29479,32534,32738,36099,41692,38184,42757,44605,30913,28933,30939,32364,32867,31120,27198,34257,37567,40457,40528,43122,44110,45239,46691,47273,51350,56279,64472,64767,68152,68325,66990,69887,78038,79405,82741,82934,83928,83419,83415,87193,84210,91638,86563,90310,94280,97308,99943,109295
-2019F,NV,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,OPICP,0,0,0,0,0,0,0,17,0,11,11,0,0,0,6,0,0,37,45,55,53,28,32,43,43,36,36,44,56,58,0,73,92,81,90,85,122,121,110,98,79,114,123,72,52,65,92,98,100,67,52,49,43,128,132,126,121,258,239,247
-2019F,NV,OPTCP,0,0,0,0,0,0,0,17,0,11,11,0,0,0,6,0,0,37,45,55,53,28,32,43,43,36,36,44,56,58,0,73,92,81,90,85,122,121,110,98,79,114,123,72,52,65,92,98,100,67,52,49,43,128,132,126,121,258,239,247
-2019F,NV,OPTXP,0,0,0,0,0,0,0,17,0,11,11,0,0,0,6,0,0,37,45,55,53,28,32,43,43,36,36,44,56,58,0,73,92,81,90,85,122,121,110,98,79,114,123,72,52,65,92,98,100,67,52,49,43,128,132,126,121,258,239,247
-2019F,NV,P1ICP,268,441,472,687,657,406,852,786,553,638,648,648,884,991,1068,881,738,767,845,877,692,568,717,828,826,904,629,945,1014,1488,1116,1177,966,1252,1374,1597,1580,593,1526,948,901,1156,1105,1926,1987,2254,2225,1435,1457,1372,1718,1895,1794,1642,1571,1558,1368,1671,1565,1473
-2019F,NV,P1TCP,623,792,1015,1184,1100,828,1318,1184,939,955,927,907,1144,1265,1359,1182,1005,1039,1148,1157,982,888,930,1060,1042,1136,874,1154,1239,1708,1324,1377,1163,1459,1571,1749,1760,759,1690,1124,1080,1332,1276,2085,2164,2486,2456,1669,1684,1587,2008,2143,2019,1873,1813,1792,1596,1893,1785,1694
-2019F,NV,P1TXP,623,792,1015,1184,1100,828,1318,1184,939,955,927,907,1144,1265,1359,1182,1005,1039,1148,1157,982,888,930,1060,1042,1136,874,1154,1239,1708,1324,1377,1163,1459,1571,1749,1760,759,1690,1124,1080,1332,1276,2085,2164,2486,2456,1669,1684,1587,2008,2143,2019,1873,1813,1792,1596,1893,1785,1694
-2019F,NV,PAACP,7795,8585,9721,10222,10992,10364,10504,11232,13010,13390,13512,13918,15037,16320,16140,17023,17797,18889,20877,20915,21322,21086,20749,21201,20291,20487,21266,23241,24092,24328,24314,25360,25852,26883,28330,29628,32632,32717,33858,36036,37537,37659,38270,39296,41626,43509,46213,46949,42703,38936,45522,44793,44252,45536,45142,45789,47885,49757,50157,50111
-2019F,NV,PACCP,321,416,375,371,436,410,351,386,401,416,472,563,549,519,418,358,345,362,393,311,574,588,327,680,822,661,797,893,741,777,694,639,640,1141,1062,1028,1199,505,548,708,620,539,647,408,478,813,784,582,614,507,565,547,522,648,573,1603,1525,1634,1701,1697
-2019F,NV,PAEIP,48,22,29,69,54,60,54,75,71,62,93,141,131,311,720,1314,662,1371,2825,1492,2453,245,241,68,62,104,527,459,945,669,535,454,584,575,290,54,182,71,103,73,119,2125,49,34,170,43,37,25,28,32,25,28,41,35,29,31,22,19,21,25
-2019F,NV,PAICP,1527,1900,1824,1972,1704,1419,1723,1611,1444,1501,1788,2093,2341,2226,1997,1852,1780,1921,2184,2042,1830,1652,1847,2825,3010,2867,2727,2880,3817,5441,4646,4679,4879,5494,6267,6529,6176,5303,5451,4166,4508,4916,4015,4328,5468,6124,6334,5443,5469,5614,5956,4288,3967,3988,5587,2781,5045,6119,6385,6152
-2019F,NV,PARCP,443,566,577,610,732,711,594,689,701,740,836,980,877,846,633,524,508,559,618,540,536,517,536,693,701,855,739,723,796,966,890,830,774,786,763,598,654,743,785,947,665,649,833,560,537,679,663,646,720,818,740,720,505,680,540,550,569,615,523,569
-2019F,NV,PATCP,10134,11490,12526,13244,13918,12963,13226,13992,15627,16109,16700,17695,18934,20221,19909,21070,21091,23102,26897,25300,26715,24088,23699,25467,24886,24975,26057,28197,30391,32181,31079,31962,32730,34879,36712,37837,40842,39339,40744,41930,43448,45888,43814,44625,48280,51169,54031,53645,49533,45907,52808,50375,49287,50887,51871,50753,55046,58144,58787,58555
-2019F,NV,PATPP,34.8,36.5,35.6,33.4,32.7,29.2,29.7,31.2,33.7,33.6,33.9,34,34.6,35.5,33.4,34,32.6,34.1,37.4,33.1,33,28.4,26.9,28.2,26.9,26.3,26.6,27.6,28.3,28.3,25.5,24.7,24.2,24.7,24.5,23.9,24.5,22.3,22,21.7,21.5,21.9,20.2,19.8,20.6,21,21.4,20.6,18.7,17.1,19.5,18.6,18,18.3,18.4,17.7,18.9,19.6,19.4,18.9
-2019F,NV,PATXP,10086,11468,12497,13175,13864,12904,13172,13917,15556,16047,16607,17554,18803,19910,19188,19757,20430,21731,24072,23809,24262,23843,23458,25399,24823,24870,25530,27738,29447,31512,30544,31509,32145,34304,36422,37783,40660,39269,40642,41857,43329,43763,43765,44592,48110,51125,53994,53620,49505,45875,52783,50347,49246,50852,51842,50722,55024,58125,58766,58530
-2019F,NV,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,13,11,12,33,23,32,31,17,5
-2019F,NV,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,195,166,300,301,267,355,229,304,320,380
-2019F,NV,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,345,306,320,186,329,172,208,277,321,355
-2019F,NV,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,622,643,451,651,514,517,530,572,484,522
-2019F,NV,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1175,1128,1081,1150,1143,1067,999,1185,1141,1262
-2019F,NV,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1175,1128,1081,1150,1143,1067,999,1185,1141,1262
-2019F,NV,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NV,RFACP,0,0,0,79,14,7,0,0,0,1,1,0,4,5,4,5,5,5,3,0,0,0,0,3,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,RFCCP,86,120,75,50,51,38,28,24,30,27,29,46,81,60,55,34,38,22,20,1,7,25,11,11,27,25,14,11,5,2,2,2,0,0,0,0,0,1,4,7,8,0,0,0,0,0,0,5,0,0,0,8,0,0,0,0,0,0,0,0
-2019F,NV,RFEIP,41,19,25,60,47,51,47,64,61,53,80,131,116,289,692,1256,606,1359,2801,1442,2431,221,204,24,21,51,501,424,875,601,444,380,518,396,241,26,147,23,64,38,72,2090,13,7,148,5,11,3,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,RFICP,118,143,90,53,57,40,35,29,35,27,34,47,81,61,58,44,73,57,34,1,1,40,21,67,169,88,123,90,124,63,8,81,79,100,139,1082,129,206,77,19,0,0,6,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,RFTCP,246,282,190,241,169,137,110,118,126,108,143,224,281,415,809,1339,723,1444,2858,1444,2439,285,236,104,219,165,641,525,1004,667,454,464,597,496,380,1109,276,230,145,64,80,2090,19,8,149,6,13,8,0,0,0,8,0,0,0,0,0,0,0,0
-2019F,NV,RFTXP,204,263,165,181,123,86,63,54,65,55,63,93,165,126,117,83,116,84,57,2,8,64,32,81,197,114,140,101,129,65,10,84,79,100,139,1082,129,207,81,26,8,0,6,1,0,0,2,5,0,0,0,8,0,0,0,0,0,0,0,0
-2019F,NV,SGICP,0,0,0,0,0,0,0,16,0,11,10,0,0,0,6,0,0,34,41,51,49,52,59,58,61,62,70,70,74,74,0,111,114,113,111,110,111,109,104,73,74,75,74,29,26,30,30,30,28,29,29,29,30,29,28,27,28,27,27,26
-2019F,NV,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,29,39,26,43,56,44,28,34,60,67,73,39,22,19,13,99,105,98,93,230,211,219
-2019F,NV,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,18,18,18,24,66,74,74,87,115,158,167,171,175
-2019F,NV,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,156,174,215,258,438,711,980,1610,3061,4077,4653,4744
-2019F,NV,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,6,9,13,14,18,20,25,27,35,40
-2019F,NV,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,7,8,11,17,32,99,253,287,357,532
-2019F,NV,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,4,4,66,179,199,252,341,536,816,1117,1844,3496,4558,5215,5491
-2019F,NV,TPOPP,291,315,352,397,426,444,446,449,464,480,493,520,547,569,597,620,647,678,719,765,810,848,882,902,925,951,981,1023,1075,1137,1221,1296,1351,1411,1499,1582,1666,1764,1853,1935,2019,2098,2174,2249,2346,2432,2523,2601,2654,2685,2702,2713,2745,2777,2819,2869,2920,2972,3031,3091
-2019F,NV,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13,-17,-10,-17,-18,-18,-19,-14,-20,0,-36,-29,-32,-22,-26,-9,-8,-23,-15,-21,-4,-7,-1,-1,0,1,1,-1,-2,1,1,1,0,-2,0,0,1,1,2
-2019F,NV,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,251,300,310,344,361,312,329
-2019F,NV,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NV,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,251,300,310,344,361,312,329
-2019F,NV,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,ARICP,5424,5173,5667,6210,5582,6234,6377,5413,5106,5369,5612,5763,5667,7558,6835,5733,5513,5595,6085,5659,4983,5424,5400,5732,5387,7208,6438,6553,7989,4967,5524,6375,6904,8068,7439,7073,6184,6327,6624,6274,5887,5919,5148,5395,7668,6870,6417,5633,5511,6340,6379,5996,5394,5827,6038,6074,6144,5847,5509,5561
-2019F,NY,ARTCP,5424,5173,5667,6210,5582,6234,6377,5413,5106,5369,5612,5763,5667,7558,6835,5733,5513,5595,6085,5659,4983,5424,5400,5732,5387,7208,6438,6553,7989,4967,5524,6375,6904,8068,7439,7073,6184,6327,6624,6274,5887,5919,5148,5395,7668,6870,6417,5633,5511,6340,6379,5996,5394,5827,6038,6074,6144,5847,5509,5561
-2019F,NY,ARTXP,5424,5173,5667,6210,5582,6234,6377,5413,5106,5369,5612,5763,5667,7558,6835,5733,5513,5595,6085,5659,4983,5424,5400,5732,5387,7208,6438,6553,7989,4967,5524,6375,6904,8068,7439,7073,6184,6327,6624,6274,5887,5919,5148,5395,7668,6870,6417,5633,5511,6340,6379,5996,5394,5827,6038,6074,6144,5847,5509,5561
-2019F,NY,AVACP,13729,16647,5019,4471,3793,2427,1440,647,417,305,249,219,183,163,215,274,254,272,277,312,320,271,198,225,189,221,256,126,104,89,78,65,74,60,99,76,66,68,238,84,75,249,175,18,226,275,25,185,154,30,40,43,41,37,68,74,73,78,82,87
-2019F,NY,AVTCP,13729,16647,5019,4471,3793,2427,1440,647,417,305,249,219,183,163,215,274,254,272,277,312,320,271,198,225,189,221,256,126,104,89,78,65,74,60,99,76,66,68,238,84,75,249,175,18,226,275,25,185,154,30,40,43,41,37,68,74,73,78,82,87
-2019F,NY,AVTXP,13729,16647,5019,4471,3793,2427,1440,647,417,305,249,219,183,163,215,274,254,272,277,312,320,271,198,225,189,221,256,126,104,89,78,65,74,60,99,76,66,68,238,84,75,249,175,18,226,275,25,185,154,30,40,43,41,37,68,74,73,78,82,87
-2019F,NY,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,22,18,37,124,356,482,414,439,355,1209,1221,1132,1180,1259,1438,1495,1709,1845
-2019F,NY,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,22,18,37,124,356,482,414,439,355,1209,1221,1132,1180,1259,1438,1495,1709,1845
-2019F,NY,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,CLACP,205,50,45,44,50,45,41,32,28,20,19,12,8,6,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,CLCCP,805,748,694,633,578,555,466,384,367,310,293,317,275,309,323,300,234,254,317,246,283,396,515,328,396,339,357,286,241,236,218,229,226,190,157,191,249,226,131,158,90,102,40,73,145,147,127,119,68,22,3,4,0,0,0,0,0,0,0,0
-2019F,NY,CLEIP,12302,11149,10700,11228,13075,13591,13092,13641,13414,12860,11125,8130,6060,5793,6653,6124,6017,6629,6267,6274,6446,6485,6662,6711,7333,7787,6298,7828,9120,10183,10125,10177,10727,9472,9152,8774,8992,9464,9928,9265,9763,9258,9154,9646,9702,9069,9417,9613,8885,6108,6384,4591,2228,2225,2154,1038,654,242,272,187
-2019F,NY,CLICP,11947,11154,11199,11761,13596,13811,13782,13424,12712,12013,12125,8830,7732,8324,8014,6125,8108,6537,5355,6003,5699,5420,4232,3575,4073,3723,3169,3272,3528,3649,3199,3185,2758,2947,2893,2791,2799,2804,2878,2742,2747,2411,1708,1583,1472,1510,1422,1313,1205,902,979,1008,909,816,714,723,521,496,364,349
-2019F,NY,CLKCP,4346,3863,4188,4133,5735,6287,6035,5925,5240,5576,6175,4363,4150,5725,5786,3460,5177,3807,2822,3277,3096,2767,1823,1073,1354,1158,1229,1449,1684,1655,1355,1226,1148,1243,1334,1383,1351,1320,1294,1221,1119,802,554,483,305,330,313,293,272,165,187,199,161,152,120,151,111,110,83,0
-2019F,NY,CLOCP,7601,7290,7011,7627,7860,7523,7748,7499,7472,6437,5950,4466,3581,2599,2228,2665,2931,2729,2533,2726,2603,2653,2409,2502,2719,2565,1940,1823,1844,1993,1844,1959,1610,1704,1559,1408,1449,1484,1584,1521,1627,1609,1155,1100,1167,1180,1109,1020,933,737,792,809,748,664,594,572,410,386,281,349
-2019F,NY,CLRCP,1158,1076,998,875,798,735,618,509,467,394,373,304,208,181,152,128,96,99,95,62,75,87,106,62,93,95,107,85,68,63,55,50,50,42,28,29,34,28,16,22,11,13,5,11,16,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,CLTCP,26418,24178,23636,24541,28097,28736,27999,27990,26987,25597,23936,17593,14283,14613,15146,12678,14456,13519,12034,12585,12503,12388,11514,10676,11895,11944,9931,11471,12956,14131,13597,13641,13760,12651,12231,11785,12074,12522,12952,12187,12612,11783,10908,11314,11335,10739,10979,11058,10157,7032,7367,5604,3137,3041,2867,1761,1175,738,635,536
-2019F,NY,CLTXP,14115,13028,12936,13313,15022,15146,14907,14348,13574,12737,12811,9462,8223,8820,8493,6554,8438,6890,5767,6311,6057,5903,4853,3965,4562,4157,3633,3643,3837,3948,3472,3464,3033,3179,3078,3011,3082,3058,3025,2922,2848,2525,1753,1668,1633,1670,1562,1445,1273,924,982,1012,909,816,714,723,521,496,364,349
-2019F,NY,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,DFACP,8758,8276,7810,8596,8892,8800,9568,10183,9440,10438,10653,10361,10359,11941,10867,10488,11979,11931,11593,12006,10309,9443,10110,9938,10564,13744,15347,17117,18612,18309,21700,19828,19905,20932,21506,21316,21822,22839,21558,24028,23044,23520,23641,31431,35910,28545,29388,29146,27485,27670,28245,28534,27591,26395,28052,29331,31420,31659,33748,31501
-2019F,NY,DFCCP,15225,16352,18220,18235,18007,19527,18937,19744,20328,20317,20376,20118,20879,21119,19533,18965,20861,20974,20934,15065,14492,12598,13598,11928,14029,13215,18363,16884,16853,17200,15415,14767,16161,16130,16232,15711,15531,14337,11914,13946,15128,16865,15032,19782,19907,18086,15602,14606,13447,12062,10050,10310,8602,9223,8434,9634,8095,7935,8111,8364
-2019F,NY,DFEIP,540,698,837,907,934,1174,1538,1627,1825,2275,3139,7263,8752,7260,4727,3937,3145,2446,1048,834,729,905,643,603,813,821,1349,1442,2162,3636,1095,982,499,903,2300,1627,1268,1568,1390,2207,2352,3010,2229,2410,1740,1574,622,1372,809,736,637,331,392,503,833,835,344,264,790,382
-2019F,NY,DFICP,12930,13463,14946,14905,14752,16909,16365,16855,16625,17031,16810,16769,17805,18373,16712,15761,17544,18223,18204,17711,9339,6129,6105,4883,5743,5378,3509,4416,4242,4275,4073,3522,3624,4317,3411,3071,3053,2922,3016,3441,3285,2981,2889,3050,3481,3371,3463,3625,3409,2931,2274,2809,2502,2274,2001,2031,1872,1904,1953,2544
-2019F,NY,DFRCP,44927,48253,53768,53810,53137,57623,55883,58263,59988,59954,60128,59366,61612,62320,57642,55966,61560,61894,61775,44455,37690,35045,31660,29404,34583,34608,37976,41372,41698,38670,31520,28963,32553,30618,29769,28624,30240,29367,26637,28347,35229,36502,32893,34876,34262,35054,26797,30101,28139,20755,19781,18454,21943,18199,19682,21140,15511,14519,18696,18350
-2019F,NY,DFTCP,82380,87041,95580,96452,95721,104033,102293,106672,108208,110015,111107,113875,119408,121012,109483,105118,115090,115468,113553,90071,72559,64120,62116,56756,65732,67766,76544,81230,83567,82091,73802,68063,72742,72898,73218,70349,71914,71033,64516,71969,79039,82878,76684,91548,95300,86630,75871,78850,73289,64154,60987,60439,61030,56594,59002,62971,57242,56280,63298,61140
-2019F,NY,DFTXP,81840,86343,94743,95545,94787,102859,100755,105045,106383,107739,107968,106613,110655,113753,104755,101180,111945,113022,112505,89237,71830,63215,61473,56153,64919,66945,75194,79789,81405,78455,72707,67080,72243,71996,70918,68722,70646,69465,63125,69762,76687,79868,74455,89138,93560,85056,75250,77478,72480,63418,60350,60108,60638,56091,58169,62135,56898,56016,62508,60759
-2019F,NY,ELEXP,11,47,457,476,3298,2166,1770,1881,1783,1449,2232,1445,1211,1138,1195,1828,544,796,120,629,555,787,494,479,475,578,359,860,541,1703,3090,202,477,222,190,103,462,1495,1674,2193,2000,4083,3111,4511,4264,3437,2510,3078,3361,1459,2343,1637,361,713,1030,495,87,47,138,1886
-2019F,NY,ELIMP,3634,1338,1326,1282,5428,2661,2610,2322,1811,2301,3176,2288,2804,3431,4291,3460,2971,3871,4998,12557,7721,14896,15621,20753,21393,17865,15821,16321,12735,6248,3802,3259,3530,5768,12971,9002,7511,3045,2500,3170,10663,11845,14075,10000,9458,10717,12495,14366,16678,11254,9373,12089,16890,18708,17133,17791,18033,16495,15693,16286
-2019F,NY,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8823,7289,15568,16893,8312,4551,4963,5502,4204,9455,12488,7892,13823,17250,19723,13181,6014,4346,3259,8832,12490,7580,2763,6065,5828,4361,6887,11187,12294,9433
-2019F,NY,ELNIP,3623,1291,869,806,2130,495,840,441,28,853,944,843,1593,2292,3096,1632,2426,3075,4878,11928,7167,14109,15128,20275,20917,17287,15462,15461,12194,4544,712,3057,3053,5546,12782,8899,7049,1550,826,977,8664,7762,10964,5489,5194,7281,9986,11288,13316,9796,7030,10452,16529,17995,16104,17296,17946,16449,15554,14400
-2019F,NY,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,203,648,546,526,391,338,374,106,93,540,6904,2280,5939,7482,9827,11859,13242,12587,12399,12514,12902,12297,12855,13200,13407,13330
-2019F,NY,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,10,4,12,14,15,19,18,18,17,19,19,307,307,310,312,317
-2019F,NY,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,6,5,5,3,2,3,1,1,8,110,37,105,118,124,145,228,153,224,227,208,269,272,280,286,290
-2019F,NY,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,205,654,552,532,394,341,377,107,95,549,7024,2322,6057,7615,9966,12023,13488,12758,12640,12759,13129,12874,13433,13790,14005,13937
-2019F,NY,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,ESACP,2045,2056,2064,2091,2138,2144,2061,2189,2267,2311,2366,2312,2273,2214,2058,2057,1996,2120,1959,1924,2146,2059,2069,2422,2685,2442,2601,2693,2722,2825,2795,2714,2644,2676,2803,2757,2632,2567,2580,2654,2753,2646,2637,2689,2650,2846,2806,3397,2918,3025,2922,2981,2748,2864,2853,2816,2756,2767,2954,2820
-2019F,NY,ESCCP,17546,13114,13648,20625,22125,23528,25194,26792,28665,30722,32790,34274,36218,38391,36375,37827,38275,38533,39430,39871,40471,42685,42800,43850,47600,48816,50430,52256,55305,56051,56025,56408,56079,57410,58802,62509,62663,64033,65834,67969,70417,71850,73198,72495,74378,76822,76029,74326,77416,75347,77276,76406,76018,76342,76541,77006,76507,75333,76745,75091
-2019F,NY,ESICP,14428,20439,25420,20452,21360,23101,24478,25046,25166,27303,27152,27006,27549,29883,29854,27247,28650,30914,32057,32894,32110,32240,30484,31424,28789,28659,28107,28726,30155,31448,31929,31112,31027,30187,29467,25317,25947,25285,25218,25835,25838,25450,25148,21745,20675,19947,14976,20213,14685,13417,13480,13420,13705,17911,18003,18079,17709,17811,18077,17548
-2019F,NY,ESRCP,12496,13512,14032,14938,15905,17027,18316,19602,21394,23255,25492,26691,27787,29508,28193,28710,29462,29780,29942,30204,30583,30702,30626,31803,32836,32757,33771,35294,37460,37878,38574,39177,38720,39897,40105,39887,40285,40059,40563,42919,43018,44236,46457,47116,47379,50533,48427,50241,49034,48246,50946,51240,50692,50777,49975,51013,50831,49081,52153,50141
-2019F,NY,ESRPP,742,792,811,856,904,960,1027,1093,1185,1284,1395,1454,1515,1623,1562,1595,1642,1672,1693,1718,1741,1748,1741,1798,1850,1841,1894,1975,2088,2106,2141,2162,2122,2171,2173,2153,2167,2147,2163,2273,2264,2318,2428,2457,2471,2641,2535,2626,2552,2499,2626,2628,2590,2587,2543,2595,2589,2505,2668,2576
-2019F,NY,ESTCP,46516,49120,55165,58107,61528,65800,70048,73629,77492,83590,87800,90284,93828,99996,96480,95841,98384,101347,103388,104893,105310,107686,105979,109498,111910,112674,114908,118970,125643,128203,129324,129411,128470,130170,131177,130471,131527,131944,134196,139378,142027,144181,147440,144045,145082,150148,142238,148178,144053,140034,144624,144047,143163,147895,147372,148914,147803,144992,149930,145600
-2019F,NY,ESTPP,2763,2879,3189,3328,3498,3710,3926,4105,4293,4617,4806,4918,5116,5501,5345,5323,5484,5690,5848,5965,5995,6130,6025,6191,6306,6333,6443,6658,7003,7129,7176,7141,7041,7084,7106,7043,7076,7072,7155,7381,7474,7556,7704,7512,7568,7848,7445,7745,7498,7253,7455,7387,7314,7535,7499,7575,7527,7400,7671,7481
-2019F,NY,ESTXP,46516,49120,55165,58107,61528,65800,70048,73629,77492,83590,87800,90284,93828,99996,96480,95841,98384,101347,103388,104893,105310,107686,105979,109498,111910,112674,114908,118970,125643,128203,129324,129411,128470,130170,131177,130471,131527,131944,134196,139378,142027,144181,147440,144045,145082,150148,142238,148178,144053,140034,144624,144047,143163,147895,147372,148914,147803,144992,149930,145600
-2019F,NY,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,FSICP,0,0,0,70,70,59,70,64,67,73,91,124,112,93,105,113,118,112,156,103,120,43,21,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,HLACP,18,24,31,34,39,38,56,63,63,74,107,138,144,153,147,125,156,174,179,115,79,159,140,167,210,147,108,87,122,154,150,158,144,127,286,138,123,90,533,25,234,25,66,55,66,75,99,56,257,97,47,43,44,44,38,37,38,75,38,37
-2019F,NY,HLCCP,554,547,571,620,730,586,594,564,603,735,723,746,836,805,734,800,838,861,798,666,653,694,650,773,770,839,853,997,967,1022,1061,1313,1291,1116,1131,1174,1284,1138,1124,1220,1615,1221,1415,1408,1893,1108,1145,1276,1641,1724,1718,1797,1558,1693,1776,1892,2061,2023,2118,2200
-2019F,NY,HLICP,325,320,333,431,423,485,559,636,907,1013,1125,1244,1377,1386,1284,1442,1633,1796,2138,2536,2598,1917,1795,1240,1360,980,909,877,742,800,657,1107,1092,961,948,881,1142,1445,1687,1772,2308,1559,1145,1375,1561,2417,1754,1243,753,583,593,702,887,869,952,831,889,663,699,678
-2019F,NY,HLRCP,1952,1927,2012,2186,2573,2065,2094,1989,2125,2592,2550,2629,2946,2836,2588,2820,2953,3034,2813,2346,2301,2445,2292,2725,2716,2958,3008,3513,3408,3603,3739,4629,4550,3934,3986,4139,4525,4013,3962,4299,5693,4306,4987,4933,5119,4661,4155,4771,5885,5940,5781,5146,4381,5051,6463,5849,5529,5698,7098,7361
-2019F,NY,HLTCP,2849,2817,2948,3271,3764,3174,3302,3253,3697,4415,4506,4757,5303,5179,4753,5188,5580,5865,5928,5663,5631,5215,4878,4905,5056,4923,4878,5474,5238,5579,5606,7206,7076,6139,6351,6332,7073,6686,7306,7316,9850,7111,7613,7771,8639,8261,7152,7345,8536,8344,8138,7689,6869,7657,9230,8609,8516,8459,9953,10276
-2019F,NY,HLTXP,2849,2817,2948,3271,3764,3174,3302,3253,3697,4415,4506,4757,5303,5179,4753,5188,5580,5865,5928,5663,5631,5215,4878,4905,5056,4923,4878,5474,5238,5579,5606,7206,7076,6139,6351,6332,7073,6686,7306,7316,9850,7111,7613,7771,8639,8261,7152,7345,8536,8344,8138,7689,6869,7657,9230,8609,8516,8459,9953,10276
-2019F,NY,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,5,4,7,5,4,3,4,0,0,0,5,3,5,4,0,4,3,6,4,6,3,5,4,6,6,6
-2019F,NY,HYEGP,11746,17869,20598,19071,17943,19301,21749,23116,24730,26347,24781,25177,27542,29156,28639,28135,28603,25441,25832,26240,26241,25658,25329,26162,26586,26956,29480,27546,23901,24697,28052,27049,27920,29304,27656,25895,28830,30498,29203,24648,24819,23014,24981,24189,23907,25720,27252,25191,26655,27490,25411,27917,24588,24906,26016,25948,26827,30069,29565,30555
-2019F,NY,HYICP,341,288,301,286,261,275,321,326,292,277,269,253,251,209,174,188,242,237,242,243,233,233,233,233,233,233,233,233,233,121,129,116,130,133,131,94,115,115,109,101,87,70,67,80,78,59,87,58,69,121,58,75,61,62,69,62,57,70,59,59
-2019F,NY,HYTCP,12087,18158,20899,19357,18205,19576,22070,23442,25022,26624,25051,25430,27794,29364,28813,28323,28845,25678,26074,26483,26474,25891,25563,26395,26819,27189,29713,27779,24134,24818,28188,27172,28057,29443,27791,25993,28951,30618,29316,24752,24910,23084,25048,24269,23990,25783,27345,25253,26723,27615,25472,27997,24652,24973,26087,26015,26888,30145,29630,30621
-2019F,NY,HYTXP,341,288,301,286,261,275,321,326,292,277,269,253,251,209,174,188,242,237,242,243,233,233,233,233,233,233,233,233,233,121,136,123,137,139,135,98,122,120,113,104,91,70,67,80,83,63,93,62,69,125,61,80,64,67,71,66,61,76,65,66
-2019F,NY,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,JFACP,9411,12164,16489,17498,18771,23620,26017,32171,34763,38562,38338,39280,39669,40639,35979,37252,36887,38210,38286,35327,35916,25381,4815,3790,3887,3856,3738,2904,4915,6047,5447,5300,5357,5131,5729,7697,11532,12138,14800,9122,9516,14655,15428,17268,19300,20016,20341,19977,21658,16760,44181,44376,44655,46985,48820,51009,53655,55470,53541,54005
-2019F,NY,JFTCP,9411,12164,16489,17498,18771,23620,26017,32171,34763,38562,38338,39280,43509,43403,38230,38634,38574,39197,38907,35746,35936,25383,4827,3790,3887,3856,3738,2904,4915,6047,5447,5300,5357,5131,5729,7697,11532,12138,14800,9122,9516,14655,15428,17268,19300,20016,20341,19977,21658,16760,44181,44376,44655,46985,48820,51009,53655,55470,53541,54005
-2019F,NY,JFTXP,9411,12164,16489,17498,18771,23620,26017,32171,34763,38562,38338,39280,39669,40639,35979,37252,36887,38210,38286,35327,35916,25381,4815,3790,3887,3856,3738,2904,4915,6047,5447,5300,5357,5131,5729,7697,11532,12138,14800,9122,9516,14655,15428,17268,19300,20016,20341,19977,21658,16760,44181,44376,44655,46985,48820,51009,53655,55470,53541,54005
-2019F,NY,KSCCP,468,584,512,494,455,467,427,433,560,595,626,648,671,546,477,420,575,438,392,220,169,158,199,1289,1425,862,228,318,207,519,269,213,408,616,538,714,751,801,981,682,948,874,493,665,745,759,354,244,128,169,154,168,60,28,54,28,57,31,41,74
-2019F,NY,KSICP,660,838,654,678,842,996,1012,1284,814,717,787,1208,1079,533,669,1039,1109,1379,1625,1439,417,405,526,720,812,1238,624,628,893,1507,249,335,201,241,355,409,682,361,511,77,151,180,238,891,372,670,422,215,41,76,548,164,144,84,153,127,176,58,124,121
-2019F,NY,KSRCP,4174,5205,4565,4406,4055,4161,3811,3858,4990,5310,5581,5783,5981,4867,4251,3746,5126,3909,3493,1962,1723,1509,1836,1497,3555,3219,2209,3212,4163,2771,1765,2098,1252,1565,1396,1240,1450,1744,1866,2327,2344,2390,1642,1639,2065,2203,1803,1318,661,973,999,726,365,394,672,458,602,402,376,576
-2019F,NY,KSTCP,5302,6627,5731,5579,5351,5623,5250,5575,6364,6622,6994,7640,7730,5946,5396,5206,6809,5727,5510,3621,2309,2072,2561,3506,5793,5319,3061,4158,5263,4797,2283,2646,1862,2421,2289,2364,2884,2906,3359,3086,3443,3445,2374,3194,3183,3632,2579,1777,829,1218,1701,1058,569,506,878,613,836,491,541,771
-2019F,NY,KSTXP,5302,6627,5731,5579,5351,5623,5250,5575,6364,6622,6994,7640,7730,5946,5396,5206,6809,5727,5510,3621,2309,2072,2561,3506,5793,5319,3061,4158,5263,4797,2283,2646,1862,2421,2289,2364,2884,2906,3359,3086,3443,3445,2374,3194,3183,3632,2579,1777,829,1218,1701,1058,569,506,878,613,836,491,541,771
-2019F,NY,LUACP,1368,1332,1208,1207,1268,1122,1166,1085,1192,1174,1196,1089,1166,1048,1004,950,1055,1063,1142,1195,1064,1020,931,974,1039,968,947,1070,1032,1059,1089,975,994,1012,1058,1039,1009,1066,1116,1127,1110,1017,1005,929,942,937,913,942,875,787,966,860,785,822,912,919,893,817,796,722
-2019F,NY,LUICP,944,918,999,999,1049,1099,1141,1061,1165,985,1003,1149,1231,1014,971,998,1109,1027,1102,1154,1027,985,898,941,1003,935,914,1033,997,1022,1052,941,959,977,1021,1004,974,1029,1077,1088,1072,982,971,897,909,904,881,910,845,759,716,598,538,542,555,583,562,511,488,446
-2019F,NY,LUTCP,2312,2250,2207,2206,2317,2221,2307,2146,2358,2159,2199,2238,2397,2063,1976,1948,2164,2090,2244,2349,2091,2006,1829,1915,2042,1903,1861,2104,2029,2081,2141,1916,1953,1989,2079,2043,1983,2094,2193,2216,2182,1999,1976,1827,1851,1841,1794,1852,1720,1546,1682,1457,1323,1364,1467,1503,1455,1328,1284,1168
-2019F,NY,LUTXP,2312,2250,2207,2206,2317,2221,2307,2146,2358,2159,2199,2238,2397,2063,1976,1948,2164,2090,2244,2349,2091,2006,1829,1915,2042,1903,1861,2104,2029,2081,2141,1916,1953,1989,2079,2043,1983,2094,2193,2216,2182,1999,1976,1827,1851,1841,1794,1852,1720,1546,1682,1457,1323,1364,1467,1503,1455,1328,1284,1168
-2019F,NY,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-293,-109,-77,0,0,0,-68,-31,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,MGACP,91701,93035,97399,99775,101568,104690,109260,111729,116195,124197,126403,132821,136302,141197,131210,130948,140984,138202,141734,134695,124853,124431,127775,125340,111563,133195,133690,140259,127936,130745,136834,131498,127273,130528,126968,131294,129665,129555,130227,132521,131698,131764,133825,135605,135049,134906,137309,136714,134206,134075,135571,128969,125461,125006,129656,124089,128992,130571,131879,129953
-2019F,NY,MGCCP,636,683,687,762,798,828,864,931,876,994,1052,1093,1143,1114,1115,1162,1126,1102,1135,1166,1035,1144,1045,974,1073,1911,1856,1371,1104,1348,1201,716,681,198,180,208,200,195,212,200,202,218,855,293,197,235,284,263,209,212,180,186,174,189,193,3102,3080,3070,3064,3088
-2019F,NY,MGICP,3369,3360,2747,2874,3396,3708,3488,2957,2678,3617,3281,3085,3518,2787,2018,1351,1349,1779,2056,1221,1535,4155,1047,829,613,1224,1252,1287,1410,1389,1145,1097,1110,984,1079,1126,1114,1173,1030,899,931,1741,1984,2112,2145,2214,2426,2164,1691,1635,2336,1564,2267,2266,2094,2718,2726,2773,2814,2829
-2019F,NY,MGTCP,95706,97078,100832,103411,105763,109226,113612,115616,119748,128808,130737,136999,140964,145099,134343,133461,143459,141083,144925,137083,127422,129730,129867,127144,113249,136330,136798,142918,130449,133483,139180,133311,129064,131710,128228,132627,130979,130923,131469,133621,132831,133724,136664,138010,137391,137355,140020,139140,136105,135921,138087,130718,127902,127461,131943,129909,134799,136414,137758,135870
-2019F,NY,MGTXP,95706,97078,100832,103411,105763,109226,113612,115616,119748,128808,130737,136999,140964,145099,134343,133461,143459,141083,144925,137083,127422,129730,129867,127144,113249,136330,136798,142918,130449,133483,139180,133311,129064,131710,128228,132627,130979,130923,131469,133621,132831,133724,136664,138010,137391,137355,140020,139140,136105,135921,138087,130718,127902,127461,131943,129909,134799,136414,137758,135870
-2019F,NY,MSICP,743,830,911,482,482,470,583,545,608,566,506,474,486,602,771,1039,1020,1154,1004,929,881,766,671,602,517,520,538,540,655,603,542,570,373,354,395,363,932,1023,1245,1171,1248,297,319,300,270,268,234,229,244,261,273,283,278,262,280,289,293,377,375,342
-2019F,NY,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,NGACP,2285,2402,2681,2923,2799,3309,3663,6728,3324,2698,3181,3417,3401,3026,3016,2917,2981,2660,3395,3354,3528,3861,4109,3293,4928,3549,3364,6580,4757,5292,4735,5036,6008,6251,6212,8335,8161,7545,7934,8574,8250,6008,8942,8342,8694,12775,14233,15581,15973,15470,18711,22702,21464,20134,33349,35091,27739,25906,27442,26206
-2019F,NY,NGCCP,63008,70852,74158,81419,81142,86540,117853,122050,122885,128282,139498,145458,147326,142736,136332,128273,143530,130898,142988,143512,161813,167253,164784,161770,170365,165498,167503,167178,188037,196380,194990,199598,217214,220729,223256,231352,253075,320862,335343,360188,365879,347253,362247,339371,359070,275721,259972,285030,290150,280763,287389,291118,270232,300776,320168,311207,302572,310319,330213,322778
-2019F,NY,NGEIP,57819,60962,68882,82098,77411,74189,71602,84386,102137,107260,106141,98536,74953,69580,38231,13613,5293,4089,1222,75964,124391,130507,152577,135811,169620,172631,133580,173328,148493,182529,229445,228710,254415,240770,289132,430886,319502,413102,377087,432513,373388,357409,365705,260733,258650,304059,388040,408260,399385,368353,425488,434019,499074,455846,452796,471586,472427,385490,415495,378567
-2019F,NY,NGICP,71733,61569,74131,76336,83066,92908,114317,62300,92217,114122,115532,117054,103638,124597,108882,104696,104180,98448,91129,88034,113809,122029,110769,97575,107844,100870,87643,97056,91671,97468,102125,120017,148485,142366,161733,214539,215580,206524,172679,102265,97097,85051,93125,83523,78903,81485,78462,77930,80653,73171,76048,75660,74556,80151,84578,83335,81066,83030,91600,90505
-2019F,NY,NGRCP,224601,239606,254597,264246,269594,287555,324350,313656,319282,331326,346533,352085,363412,342608,341032,327384,339949,325603,330968,313027,333902,336813,343029,321949,337253,320073,336712,334417,357260,364713,337988,338892,378689,384216,385408,375005,403264,375641,339512,370711,400224,376176,369614,409649,392738,406175,356453,400259,394196,404868,390491,393825,357709,416357,458313,452166,412467,432566,485693,473617
-2019F,NY,NGTCP,419446,435391,474449,507022,514012,544501,631785,589120,639845,683688,710885,716550,692730,682547,627493,576883,595933,561698,569702,623891,737443,760463,775268,720398,790010,762621,728802,778559,790218,846382,869282,892253,1004811,994331,1065742,1260117,1199582,1323675,1232553,1274251,1244837,1171898,1199633,1101619,1098056,1080215,1097160,1187060,1180357,1142625,1198127,1217324,1223035,1273264,1349204,1353385,1296271,1237311,1350443,1291673
-2019F,NY,NGTPP,24.9,25.5,27.4,29,29.2,30.7,35.4,32.8,35.4,37.8,38.9,39,37.8,37.5,34.8,32,33.2,31.5,32.2,35.5,42,43.3,44.1,40.7,44.5,42.9,40.9,43.6,44,47.1,48.2,49.2,55.1,54.1,57.7,68,64.5,70.9,65.7,67.5,65.5,61.4,62.7,57.4,57.3,56.5,57.4,62,61.4,59.2,61.8,62.4,62.5,64.9,68.6,68.8,66,63.1,69.1,66.4
-2019F,NY,NGTXP,361627,374429,405567,424924,436601,470312,560183,504734,537708,576428,604744,618014,617777,612967,589262,563270,590640,557609,568480,547927,613052,629956,622691,584587,620390,589990,595222,605231,641725,663853,639837,663543,750396,753562,776610,829230,880080,910573,855467,841739,871450,814489,833928,840886,839405,776156,709120,778800,780972,774272,772639,783305,723961,817418,896408,881799,823844,851821,934948,913106
-2019F,NY,NUEGP,0,0,61,591,382,727,798,1153,1074,1272,4273,6521,6465,7227,9272,13111,15659,20590,21701,18507,19276,17444,14438,16376,21187,24092,22084,22926,24175,22847,23623,28448,24155,26889,29231,26336,35226,29570,31314,37019,31508,40395,39617,40679,40640,42443,42224,42453,43209,43485,41870,42695,40775,44756,43039,44603,41571,42167,42919,44865
-2019F,NY,NUETP,0,0,61,591,382,727,798,1153,1074,1272,4273,6521,6465,7227,9272,13111,15659,20590,21701,18507,19276,17444,14438,16376,21187,24092,22084,22926,24175,22847,23623,28448,24155,26889,29231,26336,35226,29570,31314,37019,31508,40395,39617,40679,40640,42443,42224,42453,43209,43485,41870,42695,40775,44756,43039,44603,41571,42167,42919,44865
-2019F,NY,OPICP,2328,2370,2448,2030,3527,3341,3539,3217,3493,3768,3843,3708,3933,4140,4253,4227,3965,4115,4652,4583,4415,2455,1898,2074,1893,1625,1467,1980,2031,1955,1894,1177,1061,1063,1017,945,1411,1466,1759,1740,1679,835,930,814,662,711,625,630,658,495,453,441,406,831,872,837,814,878,849,822
-2019F,NY,OPTCP,2328,2370,2448,2030,3527,3341,3539,3217,3493,3768,3843,3708,3933,4140,4253,4227,3965,4115,4652,4583,4415,2455,1898,2074,1893,1625,1467,1980,2031,1955,1894,1177,1061,1063,1017,945,1411,1466,1759,1740,1679,835,930,814,662,711,625,630,658,495,453,441,406,831,872,837,814,878,849,822
-2019F,NY,OPTXP,2328,2370,2448,2030,3527,3341,3539,3217,3493,3768,3843,3708,3933,4140,4253,4227,3965,4115,4652,4583,4415,2455,1898,2074,1893,1625,1467,1980,2031,1955,1894,1177,1061,1063,1017,945,1411,1466,1759,1740,1679,835,930,814,662,711,625,630,658,495,453,441,406,831,872,837,814,878,849,822
-2019F,NY,P1ICP,9888,10941,11627,11988,12692,13497,13894,12883,12247,12804,12744,13393,13761,15072,14257,13662,13565,14510,15511,14593,12192,11674,10730,10798,10488,12514,10822,12544,14431,11694,10972,10919,12153,12005,11435,10947,11049,10434,12590,12778,11243,12625,11434,11510,14209,14482,14004,12398,12438,12166,9811,9233,9163,8687,8568,9120,9797,8761,8611,8357
-2019F,NY,P1TCP,29628,34708,22931,22567,22262,21674,20739,18906,19407,20188,20395,21132,21761,21696,20586,19053,20575,20193,20815,18282,15469,14633,13894,14783,16696,17784,14462,17270,19938,16132,14173,14270,14882,15257,14525,14018,14348,14114,17011,17643,15988,17194,14979,14955,18701,20911,17960,15583,14618,14423,12882,11499,10414,9969,10274,10599,11423,10089,9907,9816
-2019F,NY,P1TXP,29628,34708,22931,22567,22262,21674,20739,18906,19407,20188,20395,21132,21761,21696,20204,19053,20575,20193,20815,18282,15469,14633,13894,14783,16696,17784,14462,17270,19938,16132,14173,14270,14882,15257,14525,14018,14325,14114,16792,16999,15721,17156,14750,14761,18186,18655,17100,15087,14256,14124,11969,11030,10414,9969,10274,10599,11423,10089,9907,9816
-2019F,NY,PAACP,142046,146688,144976,148535,152233,156856,165166,173690,180559,191616,195396,202516,202780,212226,191925,188899,200087,197427,199371,195838,183885,172443,155184,142534,129440,153015,155612,163739,155781,156930,166656,161771,157434,161005,158767,163878,170658,170865,172495,173145,173804,174437,177966,189890,197315,190437,194606,194083,194971,191161,221143,207983,203565,205589,215316,210356,220036,222406,223380,217736
-2019F,NY,PACCP,45091,49396,51627,50500,47001,58921,61720,68175,67442,66466,66096,62364,61882,62347,55550,49830,57187,58476,55173,39453,41779,28356,34269,27407,34284,33505,41256,38557,37285,35830,35345,34011,34315,35362,34139,31362,30557,26576,20997,23487,27322,26372,26473,32931,34183,30254,25326,25112,23110,22738,19937,19551,14630,14273,11303,14967,13605,13343,13491,13842
-2019F,NY,PAEIP,10391,13432,16093,17434,17957,22584,29578,31284,35103,43755,59927,76277,90609,92689,87111,89658,87411,88740,88855,69171,64647,63165,56186,57964,49165,44041,53453,52538,65002,68357,54895,45414,29286,24346,20086,13891,16231,14381,24685,22905,25409,28194,19702,32230,34977,38894,11236,13596,6106,4296,3340,1826,851,1385,3061,2778,968,905,2405,742
-2019F,NY,PAICP,48956,52939,54637,54372,52791,63813,66156,69559,67820,68678,67657,65465,66569,68210,61102,55256,61592,64846,63371,61466,40480,31863,29861,21914,23889,25648,22526,24356,25743,22487,21531,19015,21039,22127,20033,18014,18813,17939,20192,20514,19773,20451,18814,19630,22878,23820,22948,20890,19538,17798,15528,15552,15396,14807,14167,15131,15741,14639,14482,14768
-2019F,NY,PARCP,51054,55384,60344,60403,59764,63849,61788,64110,67104,67856,68259,67779,70539,70023,64481,62533,69639,68837,68080,48764,41714,38999,35789,33626,40854,40784,43193,48098,49269,45044,37023,35690,38355,36117,35150,34004,36214,35124,32466,34973,43266,43198,39522,41448,41447,41917,32755,36190,34685,27668,26561,24327,26689,23644,26817,27448,21642,20619,26170,26287
-2019F,NY,PATCP,297538,317839,327678,331243,329747,366023,384410,406819,418028,438371,457335,474401,492380,505494,460171,446175,475917,478327,474849,414691,372505,334826,311288,283445,277631,296994,316039,327287,333081,328648,315450,295902,280429,278957,268176,261149,272474,264886,270834,275024,289574,292651,282478,316129,330800,325323,286871,289871,278410,263662,286510,269238,261132,259698,270664,270679,271993,271913,279930,273376
-2019F,NY,PATPP,17.7,18.6,18.9,19,18.7,20.6,21.5,22.7,23.2,24.2,25,25.8,26.8,27.8,25.5,24.8,26.5,26.9,26.9,23.6,21.2,19.1,17.7,16,15.6,16.7,17.7,18.3,18.6,18.3,17.5,16.3,15.4,15.2,14.5,14.1,14.7,14.2,14.4,14.6,15.2,15.3,14.8,16.5,17.3,17,15,15.2,14.5,13.7,14.8,13.8,13.3,13.2,13.8,13.8,13.9,13.9,14.3,14
-2019F,NY,PATXP,287146,304408,311585,313809,311789,343439,354831,375534,382925,394616,397408,398124,401770,412805,373059,356518,388506,389587,385994,345521,307858,271661,255102,225481,228467,252953,262586,274750,268078,260292,260555,250487,251143,254610,248090,247258,256243,250504,246150,252119,264165,264457,262776,283899,295823,286428,275635,276275,272304,259366,283170,267412,260281,258312,267603,267901,271024,271007,277524,272634
-2019F,NY,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,220,644,267,38,229,194,514,2256,860,496,363,299,913,469,0,0,0,0,0,0,0,0
-2019F,NY,PCICP,533,1641,1858,2071,1693,1827,1825,1907,1669,1964,1499,1565,1852,1826,1530,1665,1870,2395,2047,1758,1350,2405,2007,1331,1392,1508,1379,2350,2521,2243,2253,2091,3028,1657,1603,1517,1798,1252,2620,3600,2455,4709,4147,3513,4598,5326,5660,5010,5384,4496,1714,2035,2680,1403,950,1499,2101,1467,1641,1406
-2019F,NY,PCTCP,533,1641,1858,2071,1693,1827,1825,1907,1669,1964,1499,1565,1852,1826,1912,1665,1870,2395,2047,1758,1350,2405,2007,1331,1392,1508,1379,2350,2521,2243,2253,2091,3028,1657,1603,1517,1820,1252,2839,4244,2722,4747,4376,3707,5112,7583,6520,5506,5747,4795,2627,2504,2680,1403,950,1499,2101,1467,1641,1406
-2019F,NY,PCTXP,533,1641,1858,2071,1693,1827,1825,1907,1669,1964,1499,1565,1852,1826,1530,1665,1870,2395,2047,1758,1350,2405,2007,1331,1392,1508,1379,2350,2521,2243,2253,2091,3028,1657,1603,1517,1798,1252,2620,3600,2455,4709,4147,3513,4598,5326,5660,5010,5384,4496,1714,2035,2680,1403,950,1499,2101,1467,1641,1406
-2019F,NY,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47,43,44,44,38,37,38,75,38,37
-2019F,NY,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1718,1797,1558,1693,1776,1892,2061,2023,2118,2200
-2019F,NY,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,593,702,887,869,952,831,889,663,699,678
-2019F,NY,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5781,5146,4381,5051,6463,5849,5529,5698,7098,7361
-2019F,NY,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8138,7689,6869,7657,9230,8609,8516,8459,9953,10276
-2019F,NY,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8138,7689,6869,7657,9230,8609,8516,8459,9953,10276
-2019F,NY,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,NY,RFACP,17060,15210,17020,16954,17903,16158,17659,17812,18488,16867,18450,18609,14957,17085,12503,8862,8772,7575,6159,12188,11344,11737,11214,2100,1988,884,1526,2175,3059,526,1358,3948,3688,3216,3122,2318,6441,5109,4024,6237,8126,3207,3826,4583,5823,5684,6530,7063,10336,11743,12094,5158,4988,6300,7770,4897,4965,3736,3296,1431
-2019F,NY,RFCCP,28208,31231,31637,30390,27011,37514,40898,46504,45075,43824,43318,39759,38354,38763,33691,28482,33788,35102,31914,22336,25431,13763,18776,12442,16986,16677,19955,18987,18154,15741,17400,17002,15773,17303,16057,13555,12791,10105,6765,7439,9429,7193,8678,10784,11441,10066,7941,8723,7685,8571,7835,7089,4237,3139,846,312,312,285,156,117
-2019F,NY,RFEIP,9851,12733,15256,16527,17024,21410,28040,29657,33278,41480,56787,69014,78017,82665,79751,84338,82579,85307,87186,67918,63898,62258,55531,57361,48352,43220,52104,51096,62840,64720,53800,44432,28786,23444,17786,12264,14940,12813,23075,20053,22789,25146,17244,29627,32722,35064,9754,11728,4935,3261,1790,1026,459,882,2228,1942,624,642,1616,361
-2019F,NY,RFICP,22444,24856,24984,24174,21527,29213,31849,36229,35363,34213,33696,30975,30108,30592,26830,23039,27501,28537,25462,25405,14815,7987,10184,4164,5685,5553,6033,5232,4919,4328,4684,2369,3060,3860,3160,1990,2456,1965,1868,1623,2005,1544,1362,1584,1483,1337,1301,1461,1247,485,514,1244,578,711,552,431,457,539,406,360
-2019F,NY,RFTCP,77563,84031,88898,88045,83465,104296,118446,130202,132204,136383,152252,158357,161435,169105,152776,144721,152639,156520,150720,127846,115488,95745,95706,76067,73011,66334,79619,77490,88972,85316,77242,67751,51308,47822,40125,30126,36628,29992,35732,35353,42349,37090,31110,46578,51469,52150,25526,28975,24204,24060,22234,14517,10262,11032,11396,7582,6358,5202,5474,2269
-2019F,NY,RFTXP,67712,71297,73642,71518,66441,82886,90406,100544,98926,94903,95465,89343,83418,86440,73025,60383,70060,71214,63534,59928,51590,33487,40175,18706,24659,23114,27515,26394,26132,20596,23442,23319,22522,24378,22339,17863,21688,17178,12657,15300,19560,11944,13866,16951,18747,17086,15772,17248,19269,20799,20443,13491,9802,10150,9168,5640,5734,4560,3858,1908
-2019F,NY,SGICP,1217,1176,1209,1162,1201,898,943,946,1022,1174,1191,1204,1304,1328,1279,1262,1219,1219,1564,1606,1541,1211,545,540,0,0,0,654,684,691,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,SNICP,0,0,0,0,1475,1596,1659,1382,1481,1623,1721,1679,1798,1819,1804,1551,1381,1440,1732,1753,1686,819,763,896,1198,921,750,836,659,620,619,340,404,404,313,274,169,164,243,330,221,322,421,331,210,257,267,297,323,176,99,86,56,497,527,493,465,452,415,431
-2019F,NY,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,4,7,7,9,14,26,48,99,125,183,262,317,439,616,806
-2019F,NY,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,53,67,71,98,137,178,294,507
-2019F,NY,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,3,3,5,10,13,14,17,23
-2019F,NY,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,1,2,2,2,3,3,4,4,7,7,9,16,21,32,42,56,77,162,319,547,733,868,1039
-2019F,NY,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,4,5,6,7,11,13,17,26,35,59,97,210,272,421,689,1013,1364,1794,2376
-2019F,NY,TPOPP,16838,17061,17301,17461,17589,17734,17843,17935,18051,18105,18268,18358,18339,18177,18050,18003,17941,17813,17681,17584,17567,17568,17590,17687,17746,17792,17833,17869,17941,17983,18021,18123,18247,18375,18459,18524,18588,18657,18756,18883,19002,19083,19138,19176,19172,19133,19105,19132,19212,19307,19400,19500,19574,19626,19653,19657,19636,19594,19544,19463
-2019F,NY,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-311,-161,-94,0,0,0,-173,-133,-184,-177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,NY,WXICP,368,364,329,316,298,318,283,280,315,332,333,226,233,299,293,262,228,190,196,192,188,213,166,181,179,183,179,191,198,196,195,268,284,305,309,309,310,279,270,239,211,215,191,184,182,186,124,104,91,58,81,71,73,73,65,54,57,48,59,49
-2019F,NY,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3
-2019F,NY,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,21,82,41,116,103,655,833,1251,2266,2596,2828,2988,3536,3966,3974,3939,4131,3989,4452
-2019F,NY,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,2,2,2,1,6,1
-2019F,NY,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,21,82,41,116,103,655,833,1251,2266,2596,2828,2992,3539,3968,3977,3940,4136,3998,4456
-2019F,NY,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,2,2,2,5,9,4
-2019F,OH,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,31,5,1,27,3,0,-7,1,1,0,1,1,39,34,46,59,26,41,24,39,48,47,68,51,4,11,1,-5,-1,0,0,-2,-1,-2,-2,-1,-10,-8
-2019F,OH,ARICP,6862,6019,6613,6612,6707,7344,7157,7022,9755,9115,9017,8555,9125,10867,9099,8749,7918,9210,9608,8967,7324,6903,7364,6744,6881,6339,7341,9006,6356,10622,9880,8993,9910,7682,8847,8973,11258,14376,12638,14091,13171,11809,10765,9857,10468,9954,10056,8726,8317,4889,5138,4754,5327,4402,4582,5428,5970,4533,4767,5024
-2019F,OH,ARTCP,6862,6019,6613,6612,6707,7344,7157,7022,9755,9115,9017,8555,9125,10867,9099,8749,7918,9210,9608,8967,7324,6903,7364,6744,6881,6339,7341,9006,6356,10622,9880,8993,9910,7682,8847,8973,11258,14376,12638,14091,13171,11809,10765,9857,10468,9954,10056,8726,8317,4889,5138,4754,5327,4402,4582,5428,5970,4533,4767,5024
-2019F,OH,ARTXP,6862,6019,6613,6612,6707,7344,7157,7022,9755,9115,9017,8555,9125,10867,9099,8749,7918,9210,9608,8967,7324,6903,7364,6744,6881,6339,7341,9006,6356,10622,9880,8993,9910,7682,8847,8973,11258,14376,12638,14091,13171,11809,10765,9857,10468,9954,10056,8726,8317,4889,5138,4754,5327,4402,4582,5428,5970,4533,4767,5024
-2019F,OH,AVACP,1395,1366,2133,2158,2187,2125,1626,1174,1070,833,712,682,628,625,593,491,468,467,455,442,473,408,393,397,322,330,375,239,331,250,239,214,224,207,186,235,345,379,365,244,218,147,141,129,118,109,331,327,189,217,150,140,124,111,106,79,80,92,85,95
-2019F,OH,AVTCP,1395,1366,2133,2158,2187,2125,1626,1174,1070,833,712,682,628,625,593,491,468,467,455,442,473,408,393,397,322,330,375,239,331,250,239,214,224,207,186,235,345,379,365,244,218,147,141,129,118,109,331,327,189,217,150,140,124,111,106,79,80,92,85,95
-2019F,OH,AVTXP,1395,1366,2133,2158,2187,2125,1626,1174,1070,833,712,682,628,625,593,491,468,467,455,442,473,408,393,397,322,330,375,239,331,250,239,214,224,207,186,235,345,379,365,244,218,147,141,129,118,109,331,327,189,217,150,140,124,111,106,79,80,92,85,95
-2019F,OH,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,18,15,30,101,290,393,337,357,289,984,931,1512,1431,1251,1780,1528,1400,1087
-2019F,OH,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,18,15,30,101,290,393,337,357,289,984,931,1512,1431,1251,1780,1528,1400,1087
-2019F,OH,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,CLACP,444,105,98,92,95,87,86,65,60,48,48,32,26,17,13,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,CLCCP,1399,1176,1298,1046,938,969,1010,890,806,719,712,707,681,716,1044,792,850,995,1132,764,439,576,595,711,774,670,810,625,566,431,523,401,482,479,424,356,577,293,348,191,192,205,314,176,410,307,100,127,242,217,226,193,131,146,133,82,45,1,0,0
-2019F,OH,CLEIP,21559,20784,22106,23143,23684,24923,26806,28646,31414,34112,35321,38424,40171,43631,44751,47321,49349,50507,49656,52075,48537,48460,45759,44017,45025,46700,47785,47520,48893,50479,48848,49577,50358,51456,50118,49785,53543,52893,54613,52228,55734,53834,55917,57224,54994,59607,58604,59452,58953,51096,53712,48140,37119,40623,38417,30518,29057,28523,25121,19595
-2019F,OH,CLICP,25835,23220,24521,24804,25733,26758,28936,27136,27736,28897,29875,24695,25291,24156,25271,22307,21385,21336,19998,19222,15821,16433,12476,10438,11069,10420,10487,11018,11478,9992,9703,8511,7725,6992,6886,6386,5636,5599,5510,5156,4296,4360,3336,3637,3573,3885,4303,4279,4249,3545,4589,4440,4921,4973,5035,4626,4019,3914,4028,3988
-2019F,OH,CLKCP,11948,9293,9895,9278,10465,10889,12514,11477,11715,12869,12929,11026,12799,14051,13665,12338,12514,12560,12231,12159,10268,9982,7132,4693,5102,5242,5184,5361,5448,5265,4949,3698,3755,2892,3092,2777,1842,1848,1826,1789,1608,2033,1200,1536,1600,1946,2371,2406,2418,2085,2945,2908,3593,3685,3709,3564,3313,3353,3520,3548
-2019F,OH,CLOCP,13888,13927,14626,15525,15268,15869,16422,15659,16021,16028,16947,13669,12492,10105,11606,9969,8871,8776,7767,7063,5553,6451,5344,5745,5967,5178,5303,5657,6030,4727,4753,4813,3970,4100,3794,3609,3794,3751,3684,3367,2688,2327,2136,2101,1973,1940,1931,1873,1831,1460,1644,1532,1327,1288,1326,1062,707,561,508,439
-2019F,OH,CLRCP,2013,1693,1868,1444,1296,1285,1339,1180,1026,915,906,679,514,421,491,340,347,387,338,191,117,126,122,135,181,189,242,187,160,115,131,88,106,105,75,53,79,36,43,26,24,25,43,26,46,27,10,14,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,CLTCP,51250,46978,49890,50529,51746,54022,58176,57917,61043,64690,66863,64537,66683,68942,71570,70764,71933,73227,71124,72252,64914,65595,58953,55301,57049,57979,59324,59350,61096,61016,59205,58578,58671,59031,57503,56580,59835,58821,60514,57600,60246,58424,59610,61064,59023,63826,63017,63873,63445,54859,58527,52773,42170,45742,43585,35226,33121,32438,29149,23583
-2019F,OH,CLTXP,29691,26194,27785,27386,28062,29099,31371,29271,29628,30579,31542,26113,26512,25310,26819,23443,22585,22720,21468,20177,16377,17135,13194,11284,12024,11279,11539,11830,12203,10537,10357,9001,8313,7576,7384,6795,6292,5928,5901,5373,4512,4590,3692,3839,4029,4219,4412,4421,4491,3762,4815,4633,5051,5119,5167,4708,4064,3915,4028,3988
-2019F,OH,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,DFACP,7987,7481,8401,8944,10576,9722,10472,9792,10856,11163,11068,12156,16371,16370,15381,15647,18270,17444,19940,19845,24578,23624,22167,21587,21938,22418,22284,21530,24449,25409,24495,23786,24458,25849,27389,27993,32731,36052,35753,36490,38414,38560,39154,39899,43160,42707,45037,47104,42629,38183,40680,42193,39632,40955,42633,42406,40731,40967,42199,42192
-2019F,OH,DFCCP,1443,1452,1440,1541,1466,1548,1736,1797,1848,1829,1850,1829,2015,2124,2064,2139,2679,2857,2820,1538,2591,2597,2104,3575,4391,2114,2239,2329,2350,1965,1920,1611,1670,1388,1367,1709,1335,1402,1124,1810,1740,1886,2256,1806,1932,1270,1534,1765,1953,2458,2434,2295,2517,2258,1980,2050,2059,2090,2136,2147
-2019F,OH,DFEIP,107,109,111,117,117,119,167,184,263,309,791,1272,2017,1482,2550,2455,2728,2998,3248,1617,1643,840,734,523,478,508,493,519,533,508,452,584,427,545,844,642,584,574,635,985,792,785,671,869,741,723,584,591,526,484,549,585,517,462,592,416,421,368,446,311
-2019F,OH,DFICP,7112,7183,7115,7900,7623,8479,9533,9829,11567,11802,11429,10740,10864,11260,10879,11150,14096,14552,14457,14544,12591,12365,10901,4545,5582,6944,6148,5837,5469,6123,5973,5242,6345,6547,6490,5861,5609,5721,5369,5271,4868,5471,5451,6389,6576,6017,5941,5883,6329,5280,6029,5199,6021,5952,6486,6155,5893,6367,6473,5314
-2019F,OH,DFRCP,7270,7316,7254,7762,7385,7795,8746,9052,9308,9215,9320,9212,10149,10698,10397,10776,13494,14389,14204,7746,7430,5696,4488,3118,3830,4645,4825,4582,4903,5328,4740,4211,4625,4488,4457,3998,3777,3325,2893,3432,2999,2764,3175,3341,3348,2860,2197,2514,2299,1798,1665,1563,1281,1310,1402,1420,1269,1340,1495,1442
-2019F,OH,DFTCP,23919,23541,24321,26265,27167,27663,30655,30654,33843,34318,34458,35209,41416,41933,41270,42168,51267,52239,54670,45290,48833,45122,40393,33347,36219,36629,35989,34796,37704,39333,37580,35433,37525,38817,40548,40203,44036,47075,45775,47989,48814,49465,50706,52304,55757,53578,55293,57859,53738,48204,51357,51835,49967,50938,53094,52446,50372,51132,52749,51407
-2019F,OH,DFTXP,23812,23432,24210,26147,27050,27544,30488,30470,33579,34010,33667,33937,39399,40451,38721,39713,48539,49241,51421,43673,47190,44281,39660,32824,35740,36121,35496,34278,37171,38825,37128,34849,37098,38272,39704,39561,43452,46501,45140,47004,48022,48680,50036,51435,55015,52855,54709,57268,53211,47720,50808,51250,49451,50476,52502,52030,49952,50764,52303,51096
-2019F,OH,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,14,68,397,225,55,0,0,0,0,0,0,0,0,0,0,1,0
-2019F,OH,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,49,844,361,0,4,0,0,0,0,0,0,2,17,82,0
-2019F,OH,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31620,29106,25527,32152,41379,39208,33699,34842,30542,42368,36142,30161,23901,22821,24858,21895,14662,20217,19424,21808,22551,30973,35029,24544,27181,38244,42449,37032,36570,37952
-2019F,OH,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-12,-65,-348,619,306,0,4,0,0,0,0,0,0,2,17,81,0
-2019F,OH,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,215,1118,1074,1280,1723,2113,2304,2695,2485,2619,3211,4630,5424,5074,2002,3576,5312,5478,5593,4881,4774,4413,4342,5320,5801,7271,10054,11243,10736,10939,11577,12047,11880,10972,11100,11251,10998,11103
-2019F,OH,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,22,7,29,38,62,50,24,22,21,16,22,19,6,61,34,8,24,9,16,8,7,12,22,27,32,30,25,9,10,10,10,286,287,296,297,305
-2019F,OH,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,15,13,16,19,21,25,22,23,85,46,53,53,21,38,59,52,33,77,78,76,86,102,117,115,129,141,126,148,157,166,102,150,149,152,154,155
-2019F,OH,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,218,1137,1111,1300,1769,2171,2387,2769,2531,2665,3317,4692,5499,5147,2030,3675,5404,5537,5650,4966,4868,4497,4434,5435,5940,7413,10215,11415,10887,11096,11745,12223,11992,11408,11536,11699,11448,11563
-2019F,OH,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,ESACP,91,80,74,69,67,57,55,55,55,54,54,51,49,48,45,45,43,43,45,45,46,48,45,41,41,46,46,46,47,48,44,46,51,49,49,49,50,50,47,52,53,43,43,45,49,48,44,48,47,39,36,34,34,44,42,40,41,39,36,38
-2019F,OH,ESCCP,7594,7863,8320,8625,9832,10384,11285,12041,13234,15436,17073,18130,19637,21150,21191,20047,20846,21842,21551,22406,23323,26036,26521,27071,27978,29176,30476,31771,33318,34470,34850,36813,36150,37740,38526,40093,40570,40935,42232,43297,44635,43310,44029,44737,45313,46870,46141,48129,47310,45370,46526,47112,46756,46718,47005,47124,47742,46158,47192,46009
-2019F,OH,ESICP,39246,39150,40622,42612,42447,41757,41580,43056,45531,46353,45827,47337,53074,58922,57366,55597,62642,67615,66195,67164,55283,54209,42565,46290,59208,61109,58497,61855,62238,68314,69682,67856,69674,68831,74010,74473,73394,73888,72998,74293,74019,65099,58472,57828,58558,59354,55869,59219,58621,49486,53109,53913,53379,51387,50829,50557,50291,50651,51236,50249
-2019F,OH,ESRCP,10786,11374,11999,12549,13525,14504,15740,16791,18453,20382,22266,23606,25269,27227,27859,27890,28725,30679,31466,31899,33459,32863,32798,33418,34090,33945,35220,36711,38713,38792,37889,40942,39141,41950,41791,44010,44573,43635,44516,46629,46488,47346,50864,49621,50300,53904,51375,54376,53411,51405,54474,53687,52288,52158,52804,51493,52524,49796,54452,52226
-2019F,OH,ESRPP,1108,1154,1209,1257,1342,1422,1524,1612,1755,1930,2088,2199,2351,2529,2588,2590,2671,2848,2915,2954,3098,3046,3049,3112,3175,3162,3282,3412,3585,3582,3488,3740,3549,3779,3747,3929,3965,3869,3935,4114,4091,4158,4459,4339,4392,4702,4475,4728,4638,4459,4721,4650,4527,4504,4550,4431,4512,4269,4662,4465
-2019F,OH,ESTCP,57718,58467,61015,63855,65870,66702,68660,71943,77273,82225,85220,89124,98029,107347,106462,103579,112257,120179,119257,121514,112111,113155,101930,106820,121316,124275,124239,130383,134316,141624,142465,145658,145016,148571,154377,158626,158587,158508,159793,164271,165195,155798,153407,152230,154221,160176,153429,161771,159389,146300,154145,154746,152457,150307,150680,149213,150598,146644,152915,148522
-2019F,OH,ESTPP,5929,5933,6145,6394,6535,6539,6647,6908,7348,7784,7991,8302,9121,9970,9889,9617,10440,11157,11047,11253,10380,10489,9476,9948,11298,11577,11578,12117,12438,13078,13113,13307,13148,13383,13842,14160,14106,14055,14127,14492,14537,13682,13447,13313,13466,13973,13363,14066,13841,12690,13358,13403,13199,12980,12982,12839,12938,12571,13091,12698
-2019F,OH,ESTXP,57718,58467,61015,63855,65870,66702,68660,71943,77273,82225,85220,89124,98029,107347,106462,103579,112257,120179,119257,121514,112111,113155,101930,106820,121316,124275,124239,130383,134316,141624,142465,145658,145016,148571,154377,158626,158587,158508,159793,164271,165195,155798,153407,152230,154221,160176,153429,161771,159389,146300,154145,154746,152457,150307,150680,149213,150598,146644,152915,148522
-2019F,OH,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,FSICP,0,0,0,360,352,407,445,409,407,374,510,652,586,498,557,602,627,598,668,434,504,240,236,318,415,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,HLACP,36,38,55,62,65,94,140,187,166,190,133,164,181,210,205,180,219,254,290,233,225,343,345,410,541,379,411,351,349,374,358,292,251,246,460,256,234,277,109,190,145,201,179,288,223,268,262,198,406,253,68,65,51,51,50,52,58,20,33,90
-2019F,OH,HLCCP,334,357,405,381,392,437,489,666,678,807,742,781,895,912,897,929,955,900,877,607,487,530,503,599,631,636,656,773,759,861,801,848,760,900,881,949,1274,1233,1066,1426,1233,822,1003,1199,1044,1076,690,959,1054,1088,1002,1008,751,932,971,830,940,998,1122,1239
-2019F,OH,HLICP,1585,1753,2157,2592,2250,2649,2519,2604,3431,4116,3999,4005,4442,4454,4483,3993,4266,4698,5720,42656,41031,36074,37343,36938,24806,23612,10190,10788,5989,7522,5689,5592,9696,9265,9334,8159,7922,3219,1998,3936,4206,4507,7021,12943,4776,7096,6564,2829,1276,1686,3275,3547,3323,3519,3764,3455,3404,3357,3173,3288
-2019F,OH,HLRCP,1725,1847,2094,1971,2026,2261,2530,3444,3508,4173,3837,4038,4630,4716,4638,4808,4942,4655,4536,3139,2520,2741,2603,3096,3262,3292,3395,4000,3928,4456,4146,4388,3930,4654,4558,4908,6588,6376,5514,7378,6377,4250,5189,6202,4922,4868,4621,5036,5296,5929,5237,5086,3947,4358,4754,4312,4395,4475,4922,5603
-2019F,OH,HLTCP,3680,3995,4711,5006,4731,5441,5678,6900,7783,9286,8712,8988,10148,10292,10222,9910,10383,10507,11423,46635,44263,39689,40793,41043,29239,27919,14652,15912,11025,13213,10994,11120,14638,15065,15234,14273,16019,11105,8687,12929,11961,9779,13392,20632,10965,13308,12137,9022,8032,8956,9583,9706,8073,8860,9538,8649,8797,8849,9251,10220
-2019F,OH,HLTXP,3680,3995,4711,5006,4731,5441,5678,6900,7783,9286,8712,8988,10148,10292,10222,9910,10383,10507,11423,46635,44263,39689,40793,41043,29239,27919,14652,15912,11025,13213,10994,11120,14638,15065,15234,14273,16019,11105,8687,12929,11961,9779,13392,20632,10965,13308,12137,9022,8032,8956,9583,9706,8073,8860,9538,8649,8797,8849,9251,10220
-2019F,OH,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,HYEGP,7,6,5,0,8,10,9,10,8,8,7,9,9,8,10,7,8,5,4,4,6,6,5,135,164,175,172,225,187,130,181,154,253,190,192,232,397,507,406,423,583,511,488,511,730,516,632,410,386,528,429,384,414,549,478,457,500,277,244,403
-2019F,OH,HYICP,12,14,12,8,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,HYTCP,20,21,17,8,10,11,10,10,8,8,7,9,9,8,10,7,8,6,5,4,6,6,5,135,164,175,172,225,187,130,181,154,253,190,192,232,397,507,406,423,583,511,488,511,730,516,632,410,386,528,429,384,414,549,478,457,500,277,244,403
-2019F,OH,HYTXP,12,14,12,8,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OH,JFACP,1808,1969,2486,2546,2800,3075,3685,4996,5763,6212,5857,6448,6647,6741,5628,5926,6168,6662,6875,6753,7219,5745,5485,5821,6832,7204,9924,10800,9218,10405,10602,10400,10631,10650,11678,11236,11960,12610,13838,16457,18655,18579,17489,17685,18635,18615,18486,18145,17998,12744,5868,5597,4687,4698,5222,5703,6265,5505,6470,5737
-2019F,OH,JFTCP,1808,1969,2486,2546,2800,3075,3685,4996,5763,6212,5857,6448,6961,6967,5812,6039,6389,6882,7075,6815,7219,5745,5485,5821,6832,7204,9924,10800,9218,10405,10602,10400,10631,10650,11678,11236,11960,12610,13838,16457,18655,18579,17489,17685,18635,18615,18486,18145,17998,12744,5868,5597,4687,4698,5222,5703,6265,5505,6470,5737
-2019F,OH,JFTXP,1808,1969,2486,2546,2800,3075,3685,4996,5763,6212,5857,6448,6647,6741,5628,5926,6168,6662,6875,6753,7219,5745,5485,5821,6832,7204,9924,10800,9218,10405,10602,10400,10631,10650,11678,11236,11960,12610,13838,16457,18655,18579,17489,17685,18635,18615,18486,18145,17998,12744,5868,5597,4687,4698,5222,5703,6265,5505,6470,5737
-2019F,OH,KSCCP,95,66,85,94,76,188,177,160,165,166,155,145,128,127,116,107,151,153,137,84,130,67,61,345,243,440,190,189,264,240,189,180,68,201,144,89,155,127,218,129,132,147,93,203,258,224,161,84,41,28,27,13,7,5,9,6,12,6,8,10
-2019F,OH,KSICP,2023,1196,1582,1525,1650,2513,2327,3489,4078,3823,3360,3137,2399,2267,1701,1433,1839,1968,1751,1871,1306,1668,1590,673,362,328,196,198,220,223,87,114,136,313,209,187,221,244,263,103,95,204,152,153,191,177,170,174,62,73,79,10,3,3,11,5,5,7,13,12
-2019F,OH,KSRCP,1837,1278,1629,1820,1466,3626,3416,3084,3187,3193,2979,2797,2464,2449,2237,2060,2904,2948,2637,1618,1016,1016,912,877,987,941,1181,1072,1259,874,625,677,728,839,709,748,818,774,774,1295,419,442,329,369,485,442,364,243,121,208,172,118,45,44,95,59,74,44,47,50
-2019F,OH,KSTCP,3955,2540,3296,3439,3191,6328,5920,6734,7430,7182,6494,6079,4991,4843,4054,3600,4894,5069,4525,3573,2452,2751,2563,1895,1592,1709,1566,1458,1743,1337,901,971,932,1352,1063,1024,1194,1144,1255,1526,647,792,573,726,934,842,695,500,224,309,277,141,55,52,115,71,91,57,69,71
-2019F,OH,KSTXP,3955,2540,3296,3439,3191,6328,5920,6734,7430,7182,6494,6079,4991,4843,4054,3600,4894,5069,4525,3573,2452,2751,2563,1895,1592,1709,1566,1458,1743,1337,901,971,932,1352,1063,1024,1194,1144,1255,1526,647,792,573,726,934,842,695,500,224,309,277,141,55,52,115,71,91,57,69,71
-2019F,OH,LUACP,1381,1344,1273,1273,1337,1263,1312,1106,1215,1218,1241,1241,1329,1545,1480,1622,1802,1424,1530,1601,1425,1367,1247,1305,1392,1297,1268,1434,1383,1418,1459,1306,1331,1355,1417,1392,1351,1427,1494,1510,1487,1363,1347,1245,1261,1255,1222,1262,1172,1054,942,904,820,865,898,971,901,830,790,753
-2019F,OH,LUICP,1683,1638,1778,1778,1867,2050,2130,1986,2181,2346,2390,2294,2456,2721,2606,1987,2208,2394,2571,2690,2395,2297,2095,2193,2339,2180,2131,2409,2324,2383,2453,2194,2237,2278,2381,2340,2271,2399,2511,2537,2499,2290,2263,2092,2119,2108,2054,2121,1969,1771,849,821,727,787,888,1068,1075,980,936,907
-2019F,OH,LUTCP,3064,2982,3051,3050,3204,3312,3441,3092,3396,3564,3631,3535,3785,4266,4086,3609,4009,3818,4100,4290,3821,3664,3341,3498,3730,3477,3399,3843,3706,3801,3912,3500,3568,3633,3797,3732,3622,3826,4006,4047,3987,3653,3610,3337,3381,3363,3277,3384,3141,2824,1791,1725,1547,1652,1786,2039,1976,1810,1726,1659
-2019F,OH,LUTXP,3064,2982,3051,3050,3204,3312,3441,3092,3396,3564,3631,3535,3785,4266,4086,3609,4009,3818,4100,4290,3821,3664,3341,3498,3730,3477,3399,3843,3706,3801,3912,3500,3568,3633,3797,3732,3622,3826,4006,4047,3987,3653,3610,3337,3381,3363,3277,3384,3141,2824,1791,1725,1547,1652,1786,2039,1976,1810,1726,1659
-2019F,OH,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1624,-1234,-953,-461,-1369,-1742,-795,-362,349,312,-152,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,MGACP,74274,74555,77095,78378,79931,83101,87306,89533,94883,99239,103970,105837,111380,117011,115221,116333,119951,124121,125053,119663,110021,108141,104596,105275,105436,107086,109051,113040,113023,111499,108455,108032,105229,113239,111632,114584,113793,115149,117877,119601,120065,119363,121086,121972,121921,122074,121470,121717,119644,118720,119245,115961,115598,116955,117474,116337,117317,117183,116030,114839
-2019F,OH,MGCCP,541,531,567,565,572,572,588,325,377,368,401,392,517,626,607,956,912,743,766,955,2058,1186,837,789,2142,604,1863,2020,3024,2059,1059,925,673,393,448,438,365,1956,744,175,525,213,403,212,189,275,454,458,380,320,278,98,99,102,97,3035,3037,3084,3132,3155
-2019F,OH,MGICP,3354,2788,3079,2536,2636,2598,2557,2206,2370,2172,1926,1938,1697,1624,1777,1519,1355,1266,1168,1000,1154,866,470,1042,1466,1074,1019,1031,1025,1016,973,963,2794,1123,1099,1200,1203,1231,1311,1126,707,1874,1976,2098,2408,2349,2440,1932,1537,1491,1403,1570,1570,1612,1005,1587,1570,1588,1621,1599
-2019F,OH,MGTCP,78170,77874,80740,81478,83138,86271,90452,92064,97629,101780,106296,108167,113594,119261,117606,118808,122219,126130,126987,121618,113232,110193,105904,107106,109043,108763,111933,116091,117072,114574,110487,109920,108696,114756,113178,116222,115361,118336,119932,120902,121297,121450,123465,124282,124517,124698,124364,124107,121561,120531,120925,117629,117267,118669,118576,120958,121924,121855,120783,119593
-2019F,OH,MGTXP,78170,77874,80740,81478,83138,86271,90452,92064,97629,101780,106296,108167,113594,119261,117606,118808,122219,126130,126987,121618,113232,110193,105904,107106,109043,108763,111933,116091,117072,114574,110487,109920,108696,114756,113178,116222,115361,118336,119932,120902,121297,121450,123465,124282,124517,124698,124364,124107,121561,120531,120925,117629,117267,118669,118576,120958,121924,121855,120783,119593
-2019F,OH,MSICP,460,514,564,299,299,291,384,359,400,373,333,298,305,378,484,652,1250,1414,1230,1138,1079,884,775,695,596,601,603,605,734,675,608,605,396,375,419,385,411,451,549,516,550,427,459,431,388,386,401,393,418,447,468,485,476,538,575,594,602,813,810,737
-2019F,OH,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,NGACP,9098,9131,9481,10381,10279,11057,12219,13344,12617,12142,11992,12673,12726,12798,10023,9026,7725,8055,8922,14544,11429,12861,13885,10205,12461,8281,8684,11232,10004,10395,10054,9113,9674,10404,18023,17859,20407,19895,17980,17864,18955,16031,16754,15530,13496,13801,12635,14048,11480,16705,15962,14346,9648,10334,15255,20347,18537,29758,29143,29989
-2019F,OH,NGCCP,107915,115907,124381,130777,120872,126856,136525,153376,165414,175372,183412,189791,208068,196663,192497,169357,179392,149011,172429,158117,166210,161110,157664,143568,155350,143311,139119,146983,158790,161516,143503,150339,160645,164044,166798,175160,189966,183838,156630,167573,177917,172555,163274,179611,170240,166693,146930,160580,167070,160612,156407,161408,145482,168233,183105,166602,152478,156979,178992,177428
-2019F,OH,NGEIP,2992,2162,2432,2201,2991,2947,4683,6362,10999,17395,21380,20773,16121,16144,20680,6140,5322,3377,3141,5604,4706,2051,1230,1046,694,699,606,871,974,983,1254,3237,2956,2737,2969,7459,2902,3491,7981,11388,10123,10545,22722,18774,18258,27941,23184,37292,23493,37668,58161,92845,171590,161174,175221,208222,212528,207466,322926,363963
-2019F,OH,NGICP,218469,219988,231391,252878,289264,327456,357168,347379,353847,370640,376177,403069,432558,439339,427651,344536,373298,285126,328380,346133,320879,317185,271303,262802,266496,253234,241069,229363,284928,282081,283588,281226,296255,302626,310568,331889,345005,336075,332247,326964,340088,296579,306892,291436,302935,294830,287350,294853,283674,233511,270060,268815,265368,275301,308197,286016,289123,295426,330451,319648
-2019F,OH,NGRCP,361839,374026,390412,402736,402014,412024,434072,442360,444964,456414,459972,460820,478331,439212,435800,427817,440190,401928,416721,373631,393759,377134,369437,329647,350296,327591,327300,326480,350612,359148,308321,321724,340628,354110,343331,357754,374824,354543,296576,318214,343920,308534,321317,343037,320823,322697,272261,299577,306529,292429,283703,286132,250871,297361,320568,285306,255826,258699,301232,290080
-2019F,OH,NGTCP,700313,721214,758097,798973,825420,880340,944667,962821,987841,1031963,1052933,1087126,1147804,1104156,1086651,956876,1005927,847497,929593,898029,896983,870341,813519,747268,785297,733116,716778,714929,805308,814123,746720,765640,810158,833921,841690,890121,933104,897842,811414,842003,891003,804244,830959,848388,825753,825961,742360,806350,792246,740925,784293,823546,842959,912403,1002346,966493,928492,948328,1162744,1181108
-2019F,OH,NGTPP,71.9,73.2,76.4,80,81.9,86.3,91.4,92.5,93.9,97.7,98.7,101.3,106.8,102.5,100.9,88.8,93.6,78.7,86.1,83.2,83,80.7,75.6,69.6,73.1,68.3,66.8,66.4,74.6,75.2,68.7,69.9,73.5,75.1,75.5,79.5,83,79.6,71.7,74.3,78.4,70.6,72.8,74.2,72.1,72.1,64.7,70.1,68.8,64.3,68,71.3,73,78.8,86.4,83.2,79.8,81.3,99.5,101
-2019F,OH,NGTXP,697321,719052,755665,796772,822429,877393,939984,956459,976842,1014568,1031553,1066353,1131683,1088012,1065971,950736,1000605,844120,926452,892425,892277,868290,812289,746222,784603,732417,716172,714058,804334,813140,745466,762403,807202,831184,838721,882663,930202,894352,803434,830615,880880,793699,808237,829614,807495,798020,719176,769058,768753,703257,726132,730701,671369,751229,827125,758271,715964,740862,839818,817145
-2019F,OH,NUEGP,0,0,0,0,17,22,1,0,0,0,0,0,0,0,0,0,0,468,2425,3163,2119,4407,3226,4904,4312,1943,24,7513,8455,12661,10664,14833,14805,10011,10952,16768,13919,15331,16476,16422,16781,15464,10865,8475,15950,14803,16847,15764,17514,15206,15805,14890,17087,16121,16284,17377,16817,17688,18315,17011
-2019F,OH,NUETP,0,0,0,0,17,22,1,0,0,0,0,0,0,0,0,0,0,468,2425,3163,2119,4407,3226,4904,4312,1943,24,7513,8455,12661,10664,14833,14805,10011,10952,16768,13919,15331,16476,16422,16781,15464,10865,8475,15950,14803,16847,15764,17514,15206,15805,14890,17087,16121,16284,17377,16817,17688,18315,17011
-2019F,OH,OPICP,6414,6290,6842,6666,9235,9660,10130,9541,9963,10002,10932,10314,10960,11265,11133,10799,11554,11788,12507,12307,11893,7247,6670,8501,9383,7788,7587,8904,9533,9528,9111,7953,9463,8739,9103,8460,10115,9993,9546,10452,8749,10012,10110,10401,9815,9883,10499,10463,9615,8672,9015,9145,9170,10948,10831,10764,11176,11918,11564,11772
-2019F,OH,OPTCP,6414,6290,6842,6666,9235,9660,10130,9541,9963,10002,10932,10314,10960,11265,11133,10799,11554,11788,12507,12307,11893,7247,6670,8501,9383,7788,7587,8904,9533,9528,9111,7953,9463,8739,9103,8460,10115,9993,9546,10452,8749,10012,10110,10401,9815,9883,10499,10463,9615,8672,9015,9145,9170,10948,10831,10764,11176,11918,11564,11772
-2019F,OH,OPTXP,6414,6290,6842,6666,9235,9660,10130,9541,9963,10002,10932,10314,10960,11265,11133,10799,11554,11788,12507,12307,11893,7247,6670,8501,9383,7788,7587,8904,9533,9528,9111,7953,9463,8739,9103,8460,10115,9993,9546,10452,8749,10012,10110,10401,9815,9883,10499,10463,9615,8672,9015,9145,9170,10948,10831,10764,11176,11918,11564,11772
-2019F,OH,P1ICP,19969,19043,20738,20732,23658,25751,25753,26284,29987,29345,29198,27595,28532,30807,28842,27794,27778,29887,30708,30324,26952,21648,21057,21294,22575,20208,20941,24940,22826,27435,26497,24107,27506,24279,26023,25319,29643,32015,31486,34373,29421,31563,30090,29130,27980,24794,26514,28697,29008,24029,21165,20579,21278,20852,19876,21097,22197,21406,21157,21460
-2019F,OH,P1TCP,24677,23098,25857,26076,28724,32953,32284,31808,35623,34755,34285,32461,33082,35553,33267,32074,33103,34879,35467,34068,29996,24505,23669,24219,25519,23216,23955,27873,26063,30217,29009,26483,29856,26881,28478,27783,32313,34722,34338,37551,31677,33661,31999,31076,31995,28670,30428,32114,32431,27305,24387,23772,24613,24479,23063,24572,25415,24279,24836,23946
-2019F,OH,P1TXP,24677,23098,25857,26076,28724,32953,32284,31808,35623,34755,34285,32461,33082,35553,33267,32074,33103,34879,35467,34068,29996,24505,23669,24219,25519,23216,23955,27873,26063,30217,29009,26483,29856,26881,28478,27783,32313,34722,34338,37551,31677,33661,31999,31076,30101,26824,28592,30614,30532,25535,22455,21755,22274,21877,20983,22213,23265,22378,22087,22367
-2019F,OH,PAACP,87192,87180,91846,93732,97338,100013,105240,107595,114717,119681,123739,126850,136738,142598,138830,140790,147775,151011,154729,149249,144198,139678,134233,134813,136500,138713,143318,147423,148764,149366,145613,144036,142178,151563,152825,155753,160497,165953,169494,174499,178997,178280,179498,181234,185319,185028,186808,188757,182038,171171,166953,164861,160912,163635,166384,165555,165353,164597,165615,163730
-2019F,OH,PACCP,4532,3942,3838,3828,4116,4743,4346,3998,3924,4073,3972,3866,4140,4458,4483,5589,6338,6752,6430,4522,5646,4408,3684,5336,7424,3877,5107,5362,6476,5144,3991,3605,3243,2909,2847,3189,3130,4719,3153,3541,3630,3068,3759,3423,3523,2953,2867,3267,3437,3895,3746,3420,3374,3297,3057,5921,6048,6178,6398,6550
-2019F,OH,PAEIP,201,205,209,220,220,223,314,345,495,581,1487,1907,3216,3528,5343,3880,4175,5817,7164,4394,2248,1056,876,626,589,649,576,608,921,1018,588,753,489,565,872,642,584,574,647,1006,804,798,678,869,2634,2569,2420,2092,2426,2254,2481,2602,2855,3064,2672,2776,2570,2269,3195,1890
-2019F,OH,PAICP,41102,37916,39493,39893,43225,47705,46386,45778,51509,51628,50718,47857,49713,52678,50648,51495,55329,60316,60029,95074,87405,76504,71893,67761,57059,53936,40366,44504,37645,43859,40626,37026,47759,43286,44866,41901,45978,43371,41011,45898,40687,44366,45390,51113,42388,41572,42805,40246,39400,33220,32525,31377,32389,32446,31483,32717,33676,33128,32803,31946
-2019F,OH,PARCP,10832,10441,10977,11553,10877,13682,14692,15581,16003,16581,16136,16047,17243,17863,17271,17644,21341,21992,21378,12503,10966,9454,8003,7091,8078,8878,9400,9654,10090,10657,9510,9275,9284,9980,9724,9655,11184,10475,9182,12105,9796,7456,8693,9912,8754,8170,7182,7794,7716,7934,7074,6768,5273,5712,6250,5791,5738,5858,6465,7095
-2019F,OH,PATCP,143859,139683,146363,149227,155776,166366,170979,173297,186647,192543,196053,196527,211050,221125,216575,219398,234957,245888,249731,265742,250463,231100,218689,215628,209652,206053,198766,207551,203896,210044,200328,194695,202953,208304,211134,211140,221373,225093,223486,237048,233915,233968,238017,246550,242618,240292,242083,242156,235017,218475,212779,209027,204804,208154,209846,212759,213386,212030,214475,211211
-2019F,OH,PATPP,14.8,14.2,14.7,14.9,15.5,16.3,16.6,16.6,17.7,18.2,18.4,18.3,19.6,20.5,20.1,20.4,21.9,22.8,23.1,24.6,23.2,21.4,20.3,20.1,19.5,19.2,18.5,19.3,18.9,19.4,18.4,17.8,18.4,18.8,18.9,18.8,19.7,20,19.8,20.9,20.6,20.5,20.9,21.6,21.2,21,21.1,21.1,20.4,19,18.4,18.1,17.7,18,18.1,18.3,18.3,18.2,18.4,18.1
-2019F,OH,PATXP,143658,139478,146154,149007,155556,166143,170664,172951,186153,191963,194565,194620,207834,217597,211232,215518,230782,240071,242566,261348,248215,230044,217813,215001,209063,205404,198191,206943,202975,209025,199740,193942,202464,207739,210262,210498,220789,224519,222839,236042,233110,233170,237339,245681,239984,237723,239663,240064,232591,216221,210298,206425,201948,205090,207174,209984,210816,209761,211280,209322
-2019F,OH,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1893,1846,1836,1500,1900,1770,1932,2017,2339,2602,2080,2360,2150,1901,2748,1579
-2019F,OH,PCICP,2986,3901,3922,4151,4200,4184,4010,4246,4010,4058,3498,3296,3593,3686,4302,4827,4260,4529,4272,4488,4034,3533,3338,3182,3611,3573,3685,4423,4393,4679,4966,4853,5760,5267,5483,5359,5778,5004,6528,7189,4907,7247,6801,6626,5386,2671,3734,7213,9045,8624,6084,5849,6051,4711,3564,3832,3972,3968,3877,3745
-2019F,OH,PCTCP,2986,3901,3922,4151,4200,4184,4010,4246,4010,4058,3498,3296,3593,3686,4302,4827,4260,4529,4272,4488,4034,3533,3338,3182,3611,3573,3685,4423,4393,4679,4966,4853,5760,5267,5483,5359,5778,5004,6528,7189,4907,7247,6801,6626,7280,4517,5570,8713,10945,10394,8016,7866,8389,7313,5644,6192,6122,5869,6625,5324
-2019F,OH,PCTXP,2986,3901,3922,4151,4200,4184,4010,4246,4010,4058,3498,3296,3593,3686,4302,4827,4260,4529,4272,4488,4034,3533,3338,3182,3611,3573,3685,4423,4393,4679,4966,4853,5760,5267,5483,5359,5778,5004,6528,7189,4907,7247,6801,6626,5386,2671,3734,7213,9045,8624,6084,5849,6051,4711,3564,3832,3972,3968,3877,3745
-2019F,OH,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,65,51,51,50,52,58,20,33,90
-2019F,OH,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1002,1008,751,932,971,830,940,998,1122,1239
-2019F,OH,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1456,1728,1504,1700,1945,1635,1585,1538,1354,1469
-2019F,OH,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5237,5086,3947,4358,4754,4312,4395,4475,4922,5603
-2019F,OH,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7764,7887,6254,7041,7719,6830,6978,7029,7432,8401
-2019F,OH,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7764,7887,6254,7041,7719,6830,6978,7029,7432,8401
-2019F,OH,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819
-2019F,OH,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1819,1819,1819,1819,1819,1819,1819,1819,1819,1819
-2019F,OH,RFACP,310,427,402,372,443,633,700,807,765,825,758,322,202,96,323,592,897,639,587,712,255,50,1,19,40,0,4,31,12,10,5,8,54,16,63,56,82,59,58,7,12,68,102,16,1,0,1,3,0,0,0,0,0,0,0,6,1,0,7,24
-2019F,OH,RFCCP,2118,1535,1342,1247,1610,1997,1355,1050,857,903,824,719,585,669,799,1457,1640,2099,1830,1338,380,28,178,29,19,83,160,50,79,18,22,40,73,27,7,5,2,2,1,0,0,1,4,2,101,108,28,1,8,1,6,5,0,0,0,0,0,0,0,0
-2019F,OH,RFEIP,94,96,98,103,103,105,147,162,231,272,697,635,885,1820,2610,1312,1226,2600,3716,2715,605,216,143,104,111,141,82,90,387,510,136,169,62,21,28,0,0,0,11,21,12,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,RFICP,9082,7148,6405,6133,7058,8228,6023,4855,4154,4192,4166,3579,4177,4533,4667,7038,7834,9913,7976,6550,5678,5552,2122,3942,2630,2098,2067,1909,2336,1763,1493,1121,1417,2073,1919,1362,1600,1185,846,1193,1485,952,852,553,648,1315,1346,905,1250,734,653,482,197,511,352,424,611,410,379,284
-2019F,OH,RFTCP,11605,9206,8247,7856,9214,10963,8225,6874,6006,6191,6445,5254,5849,7119,8398,10399,11597,15251,14109,11316,6918,5846,2444,4093,2800,2322,2313,2079,2814,2300,1656,1338,1606,2136,2018,1422,1684,1246,916,1221,1510,1034,966,571,750,1424,1375,909,1258,735,659,488,197,511,353,430,612,410,386,308
-2019F,OH,RFTXP,11511,9111,8150,7753,9111,10859,8078,6712,5775,5920,5748,4620,4964,5299,5788,9087,10371,12651,10393,8601,6313,5630,2301,3990,2689,2181,2231,1989,2427,1790,1520,1169,1544,2115,1990,1422,1684,1246,905,1200,1498,1021,958,571,750,1424,1375,909,1258,735,659,488,197,511,353,430,612,410,386,308
-2019F,OH,SGICP,5896,5719,6226,5958,6009,6175,5993,6007,6188,6007,6649,6333,6829,7078,6808,6716,6492,6492,6684,6765,6490,6721,6191,6658,6936,7134,7534,7622,7920,8000,7503,7341,7542,7491,7763,7644,8030,7893,7763,7715,7772,7906,7852,8163,8355,7763,7770,7611,7216,7393,7595,7662,7855,7659,7888,7662,8062,8106,8195,7829
-2019F,OH,SNICP,0,0,0,0,2528,2737,3232,2691,2884,3161,3352,2909,3114,3150,3125,2687,3014,3142,3779,3827,3679,2563,2386,2804,3748,2882,3012,3358,2645,2489,2484,2174,2583,2584,2002,1750,1710,1658,2461,3335,2234,1623,2117,1664,1055,1293,1700,1894,2060,1120,633,549,357,2485,2637,2466,2325,2464,2260,2348
-2019F,OH,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,6,14,51,56,69,80,86,99,116,121
-2019F,OH,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,15,36,43,51,51,61,100,114,136
-2019F,OH,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,7,7,7,8,9,26
-2019F,OH,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,5,9,10,14,20,27,34,53
-2019F,OH,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,20,33,97,114,137,151,173,234,272,336
-2019F,OH,TPOPP,9734,9854,9929,9986,10080,10201,10330,10414,10516,10563,10664,10735,10747,10767,10766,10770,10753,10771,10796,10798,10801,10788,10757,10738,10738,10735,10730,10760,10799,10829,10864,10946,11029,11101,11152,11203,11243,11277,11312,11335,11364,11387,11408,11435,11452,11463,11481,11500,11515,11529,11539,11546,11551,11580,11607,11622,11640,11666,11681,11697
-2019F,OH,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1723,-1834,-1154,-1980,-2066,-1950,-2023,-1538,-2125,-1936,-2387,-1905,-2136,-1551,-1782,-649,-578,-1747,-1592,-2217,-419,-751,-276,-421,15,362,335,-272,-407,149,298,328,86,-432,-94,47,422,169,749
-2019F,OH,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OH,WXICP,58,57,52,50,47,50,75,74,84,88,88,122,126,162,159,142,171,143,147,144,141,151,118,129,127,130,127,136,141,139,138,373,395,425,430,430,568,510,494,437,386,436,386,372,369,376,263,220,193,123,172,152,154,183,164,137,142,114,140,117
-2019F,OH,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,3
-2019F,OH,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,14,15,15,14,13,197,973,1117,1118,1169,1191,1530,1684,1968
-2019F,OH,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,12,29,35,34,52,55,63,72
-2019F,OH,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,14,15,15,14,13,198,985,1146,1153,1203,1245,1589,1750,2043
-2019F,OH,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,12,29,35,34,54,59,66,75
-2019F,OK,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,28,4,0,20,3,0,-5,1,1,0,1,1,32,29,37,48,22,35,22,36,43,42,60,49,4,11,1,-5,-1,0,0,-2,-1,-2,-2,-1,-9,-7
-2019F,OK,ARICP,2034,2072,2553,2700,3214,3586,3302,3239,3304,3433,4598,5227,4842,5049,5506,5675,4728,4646,4385,4662,4826,3353,3436,4332,3093,4003,3281,2729,3564,2750,3508,3433,2930,3721,3542,3181,2762,1426,2582,1719,1964,4395,3892,3077,4081,3762,3273,4256,2510,2220,2317,1863,2445,2021,1627,2189,1865,1737,1524,1687
-2019F,OK,ARTCP,2034,2072,2553,2700,3214,3586,3302,3239,3304,3433,4598,5227,4842,5049,5506,5675,4728,4646,4385,4662,4826,3353,3436,4332,3093,4003,3281,2729,3564,2750,3508,3433,2930,3721,3542,3181,2762,1426,2582,1719,1964,4395,3892,3077,4081,3762,3273,4256,2510,2220,2317,1863,2445,2021,1627,2189,1865,1737,1524,1687
-2019F,OK,ARTXP,2034,2072,2553,2700,3214,3586,3302,3239,3304,3433,4598,5227,4842,5049,5506,5675,4728,4646,4385,4662,4826,3353,3436,4332,3093,4003,3281,2729,3564,2750,3508,3433,2930,3721,3542,3181,2762,1426,2582,1719,1964,4395,3892,3077,4081,3762,3273,4256,2510,2220,2317,1863,2445,2021,1627,2189,1865,1737,1524,1687
-2019F,OK,AVACP,562,483,668,683,717,745,684,509,493,484,448,421,398,387,368,309,300,331,351,307,328,268,155,121,188,217,250,179,172,165,146,111,124,104,84,154,117,80,133,102,108,80,121,106,133,64,261,51,45,245,199,186,174,131,53,58,58,60,66,69
-2019F,OK,AVTCP,562,483,668,683,717,745,684,509,493,484,448,421,398,387,368,309,300,331,351,307,328,268,155,121,188,217,250,179,172,165,146,111,124,104,84,154,117,80,133,102,108,80,121,106,133,64,261,51,45,245,199,186,174,131,53,58,58,60,66,69
-2019F,OK,AVTXP,562,483,668,683,717,745,684,509,493,484,448,421,398,387,368,309,300,331,351,307,328,268,155,121,188,217,250,179,172,165,146,111,124,104,84,154,117,80,133,102,108,80,121,106,133,64,261,51,45,245,199,186,174,131,53,58,58,60,66,69
-2019F,OK,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,9,18,60,171,232,199,211,171,582,572,875,878,737,1073,1040,883,657
-2019F,OK,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,9,18,60,171,232,199,211,171,582,572,875,878,737,1073,1040,883,657
-2019F,OK,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,CLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,CLCCP,21,14,14,11,8,8,9,7,4,2,3,2,2,2,3,2,2,5,3,12,24,3,13,2,5,2,3,2,6,0,0,1,1,0,1,10,1,259,1,2,0,1,1,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,CLEIP,0,10,0,32,9,1,0,0,2,1,1,1,1,2,1,0,0,438,2075,2975,5752,8368,11096,12042,12541,12747,11628,12861,14435,14423,14957,16585,17580,18722,18089,19276,20402,21151,20013,19567,20708,20500,21365,21580,20294,21952,21188,20547,21957,20959,19363,21307,18317,18794,18743,15647,12170,10940,9541,5206
-2019F,OK,CLICP,25,18,10,10,14,11,9,8,8,0,0,3,3,170,177,20,69,231,384,391,264,676,669,585,707,852,763,613,563,663,557,676,730,1198,764,1455,738,736,698,719,714,724,724,702,714,727,732,747,713,630,650,625,606,634,691,602,591,474,356,241
-2019F,OK,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,CLOCP,25,18,10,10,14,11,9,8,8,0,0,3,3,170,177,20,69,231,384,391,264,676,669,585,707,852,763,613,563,663,557,676,730,1198,764,1455,738,736,698,719,714,724,724,702,714,727,732,747,713,630,650,625,606,634,691,602,591,474,356,241
-2019F,OK,CLRCP,30,19,21,15,12,10,12,9,5,3,3,2,1,1,1,1,1,2,1,3,6,1,3,0,1,1,1,1,2,0,0,0,0,0,0,1,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,CLTCP,77,61,46,68,43,30,30,24,20,6,7,7,7,175,181,23,73,675,2463,3382,6046,9048,11781,12629,13254,13602,12395,13476,15006,15086,15514,17263,18311,19920,18854,20742,21141,22178,20711,20288,21422,21224,22090,22283,21008,22680,21923,21295,22670,21589,20013,21932,18923,19428,19434,16249,12761,11413,9897,5446
-2019F,OK,CLTXP,77,51,46,36,34,29,30,24,17,5,6,6,6,173,181,23,73,238,388,406,294,680,685,587,712,855,766,616,571,663,557,677,731,1198,765,1466,739,1027,699,721,714,724,725,703,714,728,735,747,713,630,650,625,606,634,691,602,591,474,356,241
-2019F,OK,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,DFACP,1325,1334,1511,2150,2315,1582,1797,2012,2856,2835,3351,2773,3719,4094,4281,4809,5673,6210,6745,8149,8030,9779,9666,9994,10209,10611,9840,10622,11045,10916,11227,10373,11386,12537,12856,13501,16070,16865,17673,18842,24586,30601,26923,26617,18787,24296,27818,29102,30330,26560,26963,27539,25497,24327,26185,26241,25316,27142,26669,25690
-2019F,OK,DFCCP,72,120,98,91,62,68,90,100,122,120,95,166,360,414,414,406,547,489,594,209,315,524,157,597,734,732,296,449,657,743,626,484,371,325,239,270,383,566,619,362,242,673,350,98,293,252,292,473,614,742,651,536,688,588,641,836,949,1027,556,825
-2019F,OK,DFEIP,26,21,28,51,39,22,22,19,28,22,51,45,53,49,40,55,51,72,84,60,59,37,56,50,58,79,116,67,56,52,28,26,18,21,19,17,84,20,18,24,77,257,18,153,31,23,46,59,23,23,24,30,21,18,22,17,31,27,31,33
-2019F,OK,DFICP,1193,1671,1593,1423,906,1203,1620,1754,2154,1944,2084,2488,3801,4382,4102,4166,5569,6180,7072,6136,3705,5052,4632,5873,7214,7215,3663,3225,3331,3237,3592,3193,4167,3145,3172,2873,3388,3462,3329,2921,3341,3769,3459,3768,3645,3449,3797,4112,4150,2111,2607,2548,4487,4536,5746,3793,4048,6603,6027,4538
-2019F,OK,DFRCP,2,3,3,3,2,2,3,3,4,4,3,5,10,12,12,12,16,14,17,6,15,96,1,75,92,86,31,11,29,0,0,0,2,0,0,11,23,4,1,2,2,3,2,1,1,1,1,30,1,3,3,13,7,6,4,1,4,2,2,3
-2019F,OK,DFTCP,2618,3149,3233,3717,3324,2877,3531,3888,5163,4925,5584,5477,7944,8951,8849,9449,11856,12965,14513,14560,12125,15488,14512,16589,18307,18723,13947,14374,15118,14948,15473,14075,15945,16029,16287,16672,19948,20917,21640,22151,28249,35302,30752,30637,22757,28020,31954,33776,35118,29439,30247,30667,30699,29475,32598,30888,30348,34802,33285,31089
-2019F,OK,DFTXP,2592,3128,3204,3666,3285,2854,3509,3869,5136,4903,5533,5432,7891,8902,8809,9393,11804,12894,14429,14500,12066,15450,14456,16540,18248,18644,13831,14307,15063,14896,15444,14049,15927,16008,16268,16655,19864,20897,21622,22127,28172,35045,30734,30484,22726,27998,31908,33717,35095,29415,30223,30636,30678,29457,32576,30871,30318,34774,33254,31056
-2019F,OK,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,538,-4964,-6943,-7494,-3913,-6074,-3221,-3041,-2730,-2316,-4,-282,-4101,-4480,-3537,-8748,-9523,-11852,-14385,-15623,-9246,-9814,-13439,-8388,-3323,-9517,-11868,-8294,-16673,-15919
-2019F,OK,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,363,173,51,46,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,999,995,1965,3691,3371,3549,3477,3622,3433,3975,4268,4275,4212,4262,4268
-2019F,OK,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,10,17,14,13,12,13,14,14,92,90,83,83,85
-2019F,OK,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,40,57,94,87,66,70,68,73,62,85,91,92,93,88
-2019F,OK,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,368,176,53,48,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,1038,2032,3801,3472,3628,3559,3703,3520,4051,4445,4455,4387,4438,4441
-2019F,OK,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,ESCCP,1904,1983,2270,2518,2697,2945,3175,3353,3690,4084,4415,4741,5351,5624,5806,6810,7122,7766,8174,8335,9005,10624,11372,11768,11228,11706,11650,11594,12132,11885,13663,12665,12414,12931,13294,13359,13828,14275,15211,15164,15989,16515,16661,16958,17020,17477,18197,18634,19022,18670,19005,19613,19961,19843,20449,20691,20696,20499,21229,20086
-2019F,OK,ESICP,2561,2763,2899,3101,3302,3563,3983,4224,4441,4688,4888,5243,5962,6430,6840,7233,8034,8743,9316,9835,9795,10383,10284,10557,10343,10576,10206,10417,10719,11039,11764,11415,11599,11699,11721,11714,12160,12802,13175,13271,13935,13356,12898,13308,14223,14920,15018,15198,15395,14233,15152,15809,16570,16886,17773,18029,18031,18156,19229,20904
-2019F,OK,ESRCP,2372,2472,2942,3462,3761,4086,4441,4563,5360,6397,7293,7776,9161,9659,10188,9222,9303,10304,11053,10635,12309,13351,14138,14644,14259,14400,13903,14085,14475,14083,17077,15325,14254,15901,16128,16319,17303,17376,19511,18301,19640,19796,19927,20162,19699,21309,21690,21361,21861,21641,23689,24425,22810,23200,23351,22616,22790,21838,24117,23806
-2019F,OK,ESRPP,1015,1039,1212,1419,1538,1675,1810,1833,2141,2524,2841,2970,3446,3583,3725,3324,3291,3590,3789,3574,4048,4312,4410,4451,4340,4402,4274,4388,4570,4470,5423,4826,4426,4889,4916,4933,5180,5152,5730,5325,5686,5710,5711,5753,5588,6005,6035,5877,5958,5821,6300,6447,5972,6020,6020,5783,5802,5552,6116,6011
-2019F,OK,ESTCP,6838,7218,8112,9081,9760,10594,11599,12140,13491,15169,16596,17760,20474,21713,22833,23266,24459,26813,28543,28805,31109,34358,35794,36969,35829,36682,35759,36096,37326,37007,42504,39404,38267,40531,41143,41392,43291,44453,47897,46737,49564,49667,49485,50428,50942,53707,54905,55193,56279,54545,57846,59847,59341,59929,61573,61336,61517,60492,64575,64796
-2019F,OK,ESTPP,2927,3033,3342,3723,3990,4342,4727,4877,5390,5984,6465,6782,7701,8054,8349,8385,8653,9343,9784,9681,10231,11097,11164,11235,10905,11213,10994,11245,11786,11747,13498,12409,11882,12462,12540,12512,12961,13179,14066,13598,14348,14325,14183,14388,14451,15135,15277,15187,15339,14672,15385,15796,15537,15550,15873,15685,15660,15378,16375,16360
-2019F,OK,ESTXP,6838,7218,8112,9081,9760,10594,11599,12140,13491,15169,16596,17760,20474,21713,22833,23266,24459,26813,28543,28805,31109,34358,35794,36969,35829,36682,35759,36096,37326,37007,42504,39404,38267,40531,41143,41392,43291,44453,47897,46737,49564,49667,49485,50428,50942,53707,54905,55193,56279,54545,57846,59847,59341,59929,61573,61336,61517,60492,64575,64796
-2019F,OK,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,FSICP,0,0,0,324,315,370,411,383,382,382,462,568,517,423,491,572,600,577,632,412,477,233,216,256,301,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,HLACP,290,365,387,476,384,489,607,606,594,543,516,570,553,517,471,474,500,600,681,165,235,332,419,497,134,133,105,93,102,85,97,109,80,94,144,59,41,58,72,48,44,66,49,74,51,63,64,49,79,70,32,35,41,42,40,41,45,151,87,63
-2019F,OK,HLCCP,732,755,857,935,858,863,876,916,948,1029,1078,1035,1089,1048,983,1046,1067,1052,1053,351,327,351,405,481,302,377,275,253,246,280,237,255,207,239,223,226,303,285,301,426,485,461,563,605,339,370,373,365,350,304,465,404,323,407,480,404,449,450,593,617
-2019F,OK,HLICP,1511,1635,1632,1909,1747,1704,1830,1695,1836,2310,2277,2047,2258,2528,2396,2248,2234,2253,2835,6051,6683,4592,5093,4579,5093,5517,4106,3792,3252,3821,1693,3154,3114,4080,4073,2138,2117,2832,1846,6454,2751,2320,3728,2532,4923,8532,12462,777,517,346,368,505,439,364,497,501,392,442,547,661
-2019F,OK,HLRCP,3901,4021,4566,4984,4574,4598,4667,4879,5052,5485,5747,5515,5806,5584,5237,5575,5688,5604,5610,1869,1742,1870,2157,2565,1610,2008,1463,1349,1311,1494,1262,1360,1101,1274,1186,1203,1615,1518,1603,2270,2582,2459,3003,2261,2034,1874,1971,2466,2131,1997,2140,1850,1479,1946,1942,1809,1670,1819,2059,2180
-2019F,OK,HLTCP,6433,6775,7441,8304,7563,7654,7980,8096,8430,9367,9618,9167,9706,9677,9087,9342,9490,9508,10179,8437,8987,7145,8073,8122,7138,8035,5950,5487,4911,5681,3288,4878,4502,5687,5626,3625,4076,4693,3821,9198,5862,5306,7343,5472,7348,10840,14870,3656,3077,2717,3005,2794,2281,2760,2960,2755,2556,2862,3286,3521
-2019F,OK,HLTXP,6433,6775,7441,8304,7563,7654,7980,8096,8430,9367,9618,9167,9706,9677,9087,9342,9490,9508,10179,8437,8987,7145,8073,8122,7138,8035,5950,5487,4911,5681,3288,4878,4502,5687,5626,3625,4076,4693,3821,9198,5862,5306,7343,5472,7348,10840,14870,3656,3077,2717,3005,2794,2281,2760,2960,2755,2556,2862,3286,3521
-2019F,OK,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,HYEGP,705,1002,731,190,306,825,512,726,1526,1886,1406,1383,1447,3761,3590,2945,1541,1749,1763,2323,1315,1122,2090,2500,2339,3980,2951,2948,2045,2392,2731,1922,3242,4357,2515,2780,2158,2921,3509,3175,2277,2345,1988,1798,2977,2630,624,3066,3811,3553,2809,1507,1146,2178,1428,2664,2573,2036,2035,3903
-2019F,OK,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,HYTCP,705,1002,731,191,306,825,512,726,1526,1886,1406,1383,1447,3761,3590,2945,1541,1749,1763,2323,1315,1122,2090,2500,2339,3980,2951,2948,2045,2392,2731,1922,3242,4357,2515,2780,2158,2921,3509,3175,2277,2345,1988,1798,2977,2630,624,3066,3811,3553,2809,1507,1146,2178,1428,2664,2573,2036,2035,3903
-2019F,OK,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,JFACP,2920,3119,3591,3694,3799,3453,3809,4405,5048,4668,4378,4378,4143,4017,4001,3916,3967,4183,4750,4564,4900,5009,5911,5974,7017,5870,5942,7440,7224,9239,7832,10569,12948,9012,10345,5359,4707,5259,5348,6576,6812,7041,6434,6240,6898,5964,5661,5295,5591,6447,4636,4702,4912,4991,5601,5275,5697,6136,6450,5543
-2019F,OK,JFTCP,2920,3119,3591,3694,3799,3453,3809,4405,5048,4668,4378,4378,4143,4017,4001,3916,3967,4183,4750,4564,4900,5009,5911,5974,7017,5870,5942,7440,7224,9239,7832,10569,12948,9012,10345,5359,4707,5259,5348,6576,6812,7041,6434,6240,6898,5964,5661,5295,5591,6447,4636,4702,4912,4991,5601,5275,5697,6136,6450,5543
-2019F,OK,JFTXP,2920,3119,3591,3694,3799,3453,3809,4405,5048,4668,4378,4378,4143,4017,4001,3916,3967,4183,4750,4564,4900,5009,5911,5974,7017,5870,5942,7440,7224,9239,7832,10569,12948,9012,10345,5359,4707,5259,5348,6576,6812,7041,6434,6240,6898,5964,5661,5295,5591,6447,4636,4702,4912,4991,5601,5275,5697,6136,6450,5543
-2019F,OK,KSCCP,83,75,72,132,92,353,354,125,173,194,233,183,174,182,146,106,56,63,80,27,15,38,242,13,12,20,5,5,43,88,13,10,4,5,4,5,5,16,21,12,32,8,5,5,7,9,9,8,4,3,3,4,2,1,1,1,0,0,0,0
-2019F,OK,KSICP,330,295,298,354,217,514,555,832,871,759,819,663,466,433,316,198,194,165,158,612,306,249,205,95,62,64,62,36,21,12,16,12,17,14,23,6,7,15,12,25,30,37,11,10,10,21,14,11,8,3,4,2,4,2,2,2,2,1,0,0
-2019F,OK,KSRCP,18,17,16,29,20,78,79,28,39,43,52,41,39,41,32,24,13,14,18,6,21,15,14,13,20,30,9,22,25,19,10,10,11,7,5,4,20,14,13,9,59,7,15,14,17,6,9,8,3,4,5,3,1,1,2,0,0,1,0,0
-2019F,OK,KSTCP,431,387,386,515,329,945,988,984,1083,996,1103,886,678,656,494,328,263,241,256,645,342,302,461,120,94,114,77,63,89,120,38,31,31,26,32,15,32,45,46,45,121,51,31,29,33,35,31,28,15,10,11,9,6,4,5,3,2,3,1,1
-2019F,OK,KSTXP,431,387,386,515,329,945,988,984,1083,996,1103,886,678,656,494,328,263,241,256,645,342,302,461,120,94,114,77,63,89,120,38,31,31,26,32,15,32,45,46,45,121,51,31,29,33,35,31,28,15,10,11,9,6,4,5,3,2,3,1,1
-2019F,OK,LUACP,485,472,437,436,458,527,547,381,418,448,457,433,464,549,526,537,596,777,834,873,777,745,680,712,759,707,692,782,754,773,796,712,726,739,772,759,737,778,815,823,811,743,734,679,688,684,667,688,639,575,464,440,407,413,442,471,440,417,392,367
-2019F,OK,LUICP,176,171,151,151,159,152,158,182,200,163,166,319,341,526,503,274,304,579,621,650,579,555,506,530,565,527,515,583,562,576,593,530,541,551,576,566,549,580,607,613,604,554,547,506,512,510,497,513,476,428,565,563,532,585,666,791,749,664,658,637
-2019F,OK,LUTCP,661,643,588,588,617,679,706,563,619,611,622,752,805,1075,1029,810,900,1355,1456,1523,1356,1301,1186,1242,1324,1234,1207,1364,1316,1349,1389,1242,1267,1290,1348,1325,1286,1358,1422,1437,1415,1297,1281,1185,1200,1194,1163,1201,1115,1003,1029,1002,939,998,1108,1262,1189,1081,1051,1004
-2019F,OK,LUTXP,661,643,588,588,617,679,706,563,619,611,622,752,805,1075,1029,810,900,1355,1456,1523,1356,1301,1186,1242,1324,1234,1207,1364,1316,1349,1389,1242,1267,1290,1348,1325,1286,1358,1422,1437,1415,1297,1281,1185,1200,1194,1163,1201,1115,1003,1029,1002,939,998,1108,1262,1189,1081,1051,1004
-2019F,OK,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1573,-1129,-767,-334,-1007,-1367,-621,-285,279,270,-131,387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,MGACP,21148,21799,22794,23441,23976,24799,26019,26839,28466,29935,31776,32997,35064,36701,36309,37768,39833,41277,43166,40580,38974,41012,42763,42034,40562,40855,39316,37551,37673,37668,37790,37690,38880,39750,40378,41161,42509,41385,41993,42847,41617,41721,40750,41841,43518,43421,41869,43898,43236,42717,44772,42027,44210,43336,46354,44528,45117,43970,44963,44330
-2019F,OK,MGCCP,177,185,193,196,198,204,209,208,209,222,229,235,241,250,251,264,276,282,290,295,301,315,321,411,599,338,346,359,341,312,374,231,172,37,37,38,38,37,37,37,38,39,76,78,129,139,123,218,194,174,161,149,161,178,163,955,946,864,879,883
-2019F,OK,MGICP,1383,1287,1137,996,862,812,703,658,622,579,515,479,449,485,437,437,369,344,306,404,359,346,325,286,747,977,907,821,792,908,834,895,831,1026,1109,1183,1216,1248,1319,686,671,1268,1398,1442,1691,1590,1683,1269,1098,1108,833,848,834,922,719,889,957,963,978,917
-2019F,OK,MGTCP,22708,23271,24124,24632,25036,25815,26931,27705,29297,30735,32521,33711,35754,37437,36997,38469,40477,41903,43763,41279,39633,41673,43409,42731,41908,42170,40568,38731,38806,38888,38998,38816,39883,40814,41524,42382,43763,42670,43349,43571,42325,43027,42224,43361,45338,45150,43675,45385,44528,43998,45766,43024,45205,44435,47236,46371,47021,45797,46820,46130
-2019F,OK,MGTXP,22708,23271,24124,24632,25036,25815,26931,27705,29297,30735,32521,33711,35754,37437,36997,38469,40477,41903,43763,41279,39633,41673,43409,42731,41908,42170,40568,38731,38806,38888,38998,38816,39883,40814,41524,42382,43763,42670,43349,43571,42325,43027,42224,43361,45338,45150,43675,45385,44528,43998,45766,43024,45205,44435,47236,46371,47021,45797,46820,46130
-2019F,OK,MSICP,38,42,46,25,25,24,16,15,17,16,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,33,30,27,51,34,32,35,33,58,64,78,73,78,42,45,42,38,38,45,45,47,51,53,55,54,85,91,94,95,120,120,109
-2019F,OK,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,NGACP,8980,10054,8017,8878,8086,12556,13002,14184,13873,14049,22778,25871,24596,26061,24064,23704,27128,27424,19082,25408,22742,21966,28816,24555,27534,25316,21117,23735,27740,36482,26030,25091,25759,26733,26287,30833,33848,26162,24742,24456,21686,24308,24126,31356,31448,31665,31510,28663,27810,29128,30854,31204,33095,42158,47410,47400,50243,51300,58068,56089
-2019F,OK,NGCCP,28827,23605,23898,26704,29219,27219,28261,38459,42751,41151,43921,41978,43852,40403,41074,41806,44862,48253,45729,52036,47135,40833,45664,44177,44423,40791,36517,32428,47870,38509,37208,39588,35190,40766,36504,39639,46152,45086,43800,39565,43125,40558,40229,37472,37103,39359,35492,40846,40772,41421,41822,40393,36106,44238,47041,41982,37064,37833,46960,48791
-2019F,OK,NGEIP,82820,83053,97800,116425,123952,127231,147130,154247,162029,196106,234721,240771,260457,270484,293842,300871,331003,333766,347634,334446,329940,285702,246923,236950,224987,200686,197239,187895,177222,180617,176242,174885,156414,159757,160595,160858,143496,135487,181191,177045,175758,173893,194770,196710,199907,242178,278602,286686,282942,284689,288986,264178,317867,247556,207577,254401,276964,228586,317128,337487
-2019F,OK,NGICP,128045,125733,209639,263902,280861,236059,183285,175093,203030,219575,218289,227724,223244,201046,228093,222517,275039,270721,273758,327733,245902,252696,275831,244028,274630,244502,232611,287869,263995,276021,306609,269061,268146,279275,286851,274901,274053,288181,259647,235709,231195,188083,182010,208883,210670,209962,226062,242324,270239,241774,248636,258758,255541,258509,271232,276277,286933,295458,317527,323969
-2019F,OK,NGRCP,59801,62918,62968,62637,67439,64848,67110,67395,74782,75310,77460,75238,77608,73744,72937,79921,82078,86822,84046,85285,76599,69774,79528,79240,81379,76112,66641,64164,71970,71793,65618,69200,65811,78360,69211,68702,76629,71762,66521,61611,66862,64617,67163,65681,59449,59372,52734,59861,66225,62293,65429,61387,49052,66108,69050,59399,50573,51069,67340,67890
-2019F,OK,NGTCP,308473,305363,402322,478546,509557,467913,438788,449378,496465,546191,597169,611582,629757,611738,660010,668819,760110,766986,770249,824908,722318,670971,676762,628950,652953,587407,554125,596091,588797,603422,611706,577825,551321,584891,579447,574934,574177,566678,575901,538386,538626,491459,508298,540103,538577,582535,624400,658379,687988,659305,675727,655920,691661,658569,642310,679459,701777,664246,807023,834226
-2019F,OK,NGTPP,132.1,128.3,165.8,196.2,208.3,191.8,178.8,180.5,198.3,215.5,232.6,233.6,236.9,226.9,241.3,241,268.9,267.2,264,277.3,237.5,216.7,211.1,191.1,198.7,179.6,170.4,185.7,185.9,191.5,194.3,182,171.2,179.8,176.6,173.8,171.9,168,169.1,156.6,155.9,141.7,145.7,154.1,152.8,164.2,173.7,181.2,187.5,177.3,179.7,173.1,181.1,170.9,165.6,173.8,178.7,168.9,204.6,210.6
-2019F,OK,NGTXP,225653,222310,304522,362121,385605,340682,291658,295131,334436,350085,362448,370811,369300,341254,366168,367948,429107,433220,422615,490462,392378,385269,429839,392000,427966,386721,356886,408196,411575,422804,435464,402940,394907,425134,418852,414075,430681,431191,394711,361341,362868,317566,313528,343393,338670,340357,345798,371694,405046,374616,386741,391742,373794,411013,434733,425058,424813,435660,489895,496739
-2019F,OK,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,OPICP,5546,5363,5533,5701,5776,6067,6055,6096,6295,6630,6599,6195,6664,6555,6608,7050,6922,6968,7096,6983,6766,3636,3198,4035,3710,3188,3091,3834,4807,5046,5154,4299,5379,4837,5274,5093,6134,6220,5300,5569,5177,7032,6496,7203,7137,7570,7975,8189,7122,7059,7610,7764,7941,7784,7174,7249,7415,7649,7508,7637
-2019F,OK,OPTCP,5546,5363,5533,5701,5776,6067,6055,6096,6295,6630,6599,6195,6664,6555,6608,7050,6922,6968,7096,6983,6766,3636,3198,4035,3710,3188,3091,3834,4807,5046,5154,4299,5379,4837,5274,5093,6134,6220,5300,5569,5177,7032,6496,7203,7137,7570,7975,8189,7122,7059,7610,7764,7941,7784,7174,7249,7415,7649,7508,7637
-2019F,OK,OPTXP,5546,5363,5533,5701,5776,6067,6055,6096,6295,6630,6599,6195,6664,6555,6608,7050,6922,6968,7096,6983,6766,3636,3198,4035,3710,3188,3091,3834,4807,5046,5154,4299,5379,4837,5274,5093,6134,6220,5300,5569,5177,7032,6496,7203,7137,7570,7975,8189,7122,7059,7610,7764,7941,7784,7174,7249,7415,7649,7508,7637
-2019F,OK,P1ICP,10522,10339,10906,11127,11939,12857,12492,12955,13450,13625,14487,14824,13938,14722,14853,15792,14584,14818,14630,15502,15047,9768,9158,11108,9107,9347,8676,8924,10759,10306,11306,10281,11011,11360,11085,10504,11134,9889,10263,9790,9689,13858,12845,12747,13586,13857,13630,14740,11803,11451,12354,12054,12874,12178,11048,11931,11723,11789,11477,11786
-2019F,OK,P1TCP,11670,11385,12099,12408,13226,14560,14156,13997,14574,14794,15675,15901,15011,15882,15925,16767,15549,16002,15913,16715,16188,10834,10249,11966,10087,10322,9633,9911,11753,11352,12271,11124,11875,12216,11950,11427,12013,10778,11244,10735,10700,14696,13721,13551,14430,14620,14576,15496,12494,12279,13024,12687,13458,12725,11545,12462,12222,12268,11935,12223
-2019F,OK,P1TXP,11670,11385,12099,12408,13226,14560,14156,13997,14574,14794,15675,15901,15011,15882,15925,16767,15549,16002,15913,16715,16188,10834,10249,11966,10087,10322,9633,9911,11753,11352,12271,11124,11875,12216,11950,11427,12013,10778,11244,10735,10700,14696,13721,13551,14430,14620,14576,15496,12494,12279,13024,12687,13458,12725,11545,12462,12222,12268,11935,12223
-2019F,OK,PAACP,26737,27621,29566,31096,31871,31839,33699,34852,37965,39007,41000,41606,44635,46302,45970,47854,50869,53377,56527,54638,53244,57146,59594,59331,58869,58394,56145,56667,56971,58847,57888,59564,64144,62237,64580,60994,64181,64425,66035,69239,73978,80252,75011,75556,70075,74492,76339,79083,79919,76613,77066,74929,75240,73240,78675,76614,76674,77876,78627,76063
-2019F,OK,PACCP,1459,1234,1328,1448,1356,1721,1699,1507,1617,1738,1825,1825,2235,2392,2179,2018,2148,2044,2138,1109,988,1228,1124,1502,1647,1466,922,1082,1293,1469,1329,1056,797,607,503,539,729,905,978,837,797,1181,1005,785,769,770,796,1064,1161,1222,1280,1093,1173,1174,1285,2195,2345,2341,2028,2325
-2019F,OK,PAEIP,59,48,64,114,87,50,49,44,62,49,116,68,155,123,214,85,93,206,221,119,59,41,58,51,73,87,123,68,60,62,86,38,28,27,25,129,217,30,18,24,77,258,20,188,42,25,46,249,23,23,24,30,21,18,22,17,31,27,31,33
-2019F,OK,PAICP,15626,15594,15920,15886,15869,16921,16894,17600,18660,18884,19840,20192,21098,23008,22430,23018,23184,24085,25614,28695,26495,20496,19883,22360,22504,23267,17739,17076,18784,18608,17910,17676,19692,20310,19982,17027,18114,17691,16857,19962,16689,21556,21880,20968,24456,27649,31818,21028,17988,15322,16703,16542,19244,18514,18493,17426,17532,20304,19396,18280
-2019F,OK,PARCP,3922,4041,4585,5016,4596,4678,4748,4909,5094,5532,5802,5560,5855,5637,5282,5610,5716,5632,5645,1882,1778,1981,2172,2653,1722,2124,1504,1382,1365,1514,1272,1370,1114,1281,1192,1217,1658,1536,1617,2281,2644,2468,3020,2277,2052,1881,1981,2504,2135,2004,2147,1866,1488,1953,1947,1811,1675,1822,2061,2184
-2019F,OK,PATCP,47803,48538,51462,53561,53779,55209,57089,58912,63397,65210,68583,69251,73977,77462,76075,78585,82011,85342,90145,86443,82565,80891,82831,85899,84815,85338,76433,76276,78473,80501,78485,79703,85774,84462,86281,79906,84898,84586,85505,92343,94185,105714,100935,99774,97394,104817,110981,103928,101227,95184,97220,94460,97166,94900,100422,98064,98256,102371,102143,98885
-2019F,OK,PATPP,20.5,20.4,21.2,22,22,22.6,23.3,23.7,25.3,25.7,26.7,26.4,27.8,28.7,27.8,28.3,29,29.7,30.9,29.1,27.2,26.1,25.8,26.1,25.8,26.1,23.5,23.8,24.8,25.6,24.9,25.1,26.6,26,26.3,24.2,25.4,25.1,25.1,26.9,27.3,30.5,28.9,28.5,27.6,29.5,30.9,28.6,27.6,25.6,25.9,24.9,25.4,24.6,25.9,25.1,25,26,25.9,25
-2019F,OK,PATXP,47744,48490,51399,53447,53692,55159,57040,58869,63335,65160,68467,69183,73822,77340,75861,78500,81917,85137,89924,86324,82506,80850,82773,85847,84742,85251,76310,76208,78413,80438,78398,79665,85746,84435,86256,79777,84681,84556,85487,92319,94108,105457,100915,99585,97352,104792,110934,103679,101204,95161,97196,94430,97145,94882,100400,98047,98225,102343,102112,98852
-2019F,OK,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,PCICP,2437,2437,2371,2220,2573,2537,2422,2605,2780,2640,2305,2420,1625,2160,1920,2595,2435,2460,2370,2595,2570,1975,1813,2115,1677,1564,1727,1741,1805,1922,2036,2007,2145,2238,1670,1658,1682,1648,1761,1863,1913,1841,1899,1952,1846,1994,1871,1771,1687,1741,1859,1862,1954,1788,1578,1701,1693,1738,1786,1825
-2019F,OK,PCTCP,2437,2437,2371,2220,2573,2537,2422,2605,2780,2640,2305,2420,1625,2160,1920,2595,2435,2460,2370,2595,2570,1975,1813,2115,1677,1564,1727,1741,1805,1922,2036,2007,2145,2238,1670,1658,1682,1648,1761,1863,1913,1841,1899,1952,1846,1994,1871,1771,1687,1741,1859,1862,1954,1788,1578,1701,1693,1738,1786,1825
-2019F,OK,PCTXP,2437,2437,2371,2220,2573,2537,2422,2605,2780,2640,2305,2420,1625,2160,1920,2595,2435,2460,2370,2595,2570,1975,1813,2115,1677,1564,1727,1741,1805,1922,2036,2007,2145,2238,1670,1658,1682,1648,1761,1863,1913,1841,1899,1952,1846,1994,1871,1771,1687,1741,1859,1862,1954,1788,1578,1701,1693,1738,1786,1825
-2019F,OK,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,35,41,42,40,41,45,151,87,63
-2019F,OK,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,465,404,323,407,480,404,449,450,593,617
-2019F,OK,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,368,505,439,364,497,501,392,442,547,661
-2019F,OK,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2140,1850,1479,1946,1942,1809,1670,1819,2059,2180
-2019F,OK,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3005,2794,2281,2760,2960,2755,2556,2862,3286,3521
-2019F,OK,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3005,2794,2281,2760,2960,2755,2556,2862,3286,3521
-2019F,OK,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OK,RFACP,8,51,178,215,221,244,236,99,88,94,75,34,294,37,15,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,RFCCP,395,99,108,94,146,233,170,159,165,173,190,207,370,498,385,196,202,158,120,227,30,0,0,0,0,0,0,16,6,45,80,76,43,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,RFEIP,33,27,35,64,49,28,27,24,34,27,64,23,102,73,174,29,42,134,137,59,0,4,2,2,15,9,7,1,4,10,58,12,10,6,6,112,133,10,0,0,0,1,2,35,11,3,0,190,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,RFICP,1017,663,653,432,415,346,249,539,598,426,477,354,652,891,642,374,428,489,771,601,702,738,675,515,343,211,386,314,651,336,484,153,568,698,542,329,259,259,100,111,237,342,449,478,611,221,246,130,420,305,542,586,611,514,483,312,411,506,367,378
-2019F,OK,RFTCP,1454,839,974,805,831,851,682,821,885,720,807,617,1418,1499,1216,641,672,781,1028,888,732,741,676,516,358,219,393,332,660,391,623,241,621,704,548,442,392,269,102,111,237,343,461,513,623,224,246,320,420,305,542,586,611,514,483,312,411,506,367,378
-2019F,OK,RFTXP,1421,813,939,742,783,823,655,797,851,693,743,594,1317,1426,1042,612,630,648,892,829,732,738,675,515,343,211,386,331,656,381,565,229,611,698,542,329,259,259,102,111,237,342,459,478,612,221,246,130,420,305,542,586,611,514,483,312,411,506,367,378
-2019F,OK,SGICP,5509,5321,5486,5353,5379,5611,5535,5621,5814,6142,6028,5516,6027,6012,5997,6375,6210,6274,6324,6429,6152,6510,5665,5360,5030,5252,5912,5958,6235,6397,6492,6331,6471,6547,6371,6430,6443,6473,6532,6672,6938,7253,6971,7280,7348,7399,7474,7688,7234,7356,7368,7382,7539,7389,7241,7021,7070,7075,7167,6801
-2019F,OK,SNICP,0,0,0,0,57,62,92,76,82,90,95,111,119,121,120,103,112,117,141,142,137,102,95,111,149,115,47,52,41,38,38,62,73,73,57,50,64,62,92,125,83,65,85,67,42,52,75,83,91,49,28,24,16,207,220,206,194,75,69,72
-2019F,OK,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,5
-2019F,OK,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,33,62,60
-2019F,OK,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-2019F,OK,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,3,4,7,14
-2019F,OK,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,5,9,38,73,79
-2019F,OK,TPOPP,2336,2380,2427,2439,2446,2440,2454,2489,2503,2535,2567,2619,2659,2696,2735,2775,2827,2870,2917,2975,3041,3096,3206,3290,3286,3271,3253,3210,3167,3150,3149,3175,3221,3252,3281,3308,3340,3373,3405,3437,3454,3467,3489,3505,3525,3549,3594,3634,3669,3718,3760,3789,3819,3854,3879,3911,3928,3934,3943,3961
-2019F,OK,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1669,-1679,-929,-1436,-1521,-1530,-1581,-1211,-1699,-1675,-2058,-1634,-1867,-1273,-1499,-521,-474,-1470,-1377,-1979,-384,-667,-246,-370,14,349,338,-272,-405,144,287,315,83,-396,-86,41,368,148,651
-2019F,OK,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,48,52,52,52,53,48,46,41,36,21,19,18,18,18,29,24,21,13,19,17,17,22,20,17,17,11,13,11
-2019F,OK,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,573,848,1712,1849,2358,2698,3808,5605,8158,11162,11937,14031,20069,23599,27338,29008
-2019F,OK,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OK,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,573,848,1712,1849,2358,2698,3808,5605,8158,11162,11937,14031,20069,23599,27338,29008
-2019F,OK,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,ARICP,1820,1983,2012,1938,2344,1960,2233,1826,1853,2029,2167,2735,3141,2862,2595,3218,2790,2803,3030,3253,2483,1839,1669,2173,2519,2838,2225,2140,2423,2802,3026,2657,3297,3329,3422,2758,2745,2965,4187,3649,3245,2187,3232,3309,3599,3662,3666,2785,2614,1704,1598,1629,1666,1488,1495,1529,1817,1864,1485,1496
-2019F,OR,ARTCP,1820,1983,2012,1938,2344,1960,2233,1826,1853,2029,2167,2735,3141,2862,2595,3218,2790,2803,3030,3253,2483,1839,1669,2173,2519,2838,2225,2140,2423,2802,3026,2657,3297,3329,3422,2758,2745,2965,4187,3649,3245,2187,3232,3309,3599,3662,3666,2785,2614,1704,1598,1629,1666,1488,1495,1529,1817,1864,1485,1496
-2019F,OR,ARTXP,1820,1983,2012,1938,2344,1960,2233,1826,1853,2029,2167,2735,3141,2862,2595,3218,2790,2803,3030,3253,2483,1839,1669,2173,2519,2838,2225,2140,2423,2802,3026,2657,3297,3329,3422,2758,2745,2965,4187,3649,3245,2187,3232,3309,3599,3662,3666,2785,2614,1704,1598,1629,1666,1488,1495,1529,1817,1864,1485,1496
-2019F,OR,AVACP,655,851,463,319,300,277,337,328,477,187,305,165,178,189,205,171,169,199,193,209,260,219,127,125,125,141,193,127,98,102,121,126,129,110,156,143,191,176,150,160,139,226,155,136,127,144,204,202,185,134,138,129,124,100,91,99,101,98,122,109
-2019F,OR,AVTCP,655,851,463,319,300,277,337,328,477,187,305,165,178,189,205,171,169,199,193,209,260,219,127,125,125,141,193,127,98,102,121,126,129,110,156,143,191,176,150,160,139,226,155,136,127,144,204,202,185,134,138,129,124,100,91,99,101,98,122,109
-2019F,OR,AVTXP,655,851,463,319,300,277,337,328,477,187,305,165,178,189,205,171,169,199,193,209,260,219,127,125,125,141,193,127,98,102,121,126,129,110,156,143,191,176,150,160,139,226,155,136,127,144,204,202,185,134,138,129,124,100,91,99,101,98,122,109
-2019F,OR,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,6,12,39,112,152,131,139,112,381,452,529,669,741,1117,1214,1243,1421
-2019F,OR,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,6,12,39,112,152,131,139,112,381,452,529,669,741,1117,1214,1243,1421
-2019F,OR,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,CLACP,4,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,CLCCP,66,74,56,50,48,55,51,36,26,27,14,21,17,10,8,10,16,15,15,15,13,3,5,3,4,2,1,2,4,5,2,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,CLEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,1197,537,358,506,418,0,0,0,306,850,1831,1994,1981,2333,977,1044,822,2037,2154,2241,2490,2155,2533,2077,2103,1449,2577,2382,1854,2417,1985,1583,2183,1853,1401,1125,1031,898,1499
-2019F,OR,CLICP,217,218,240,201,177,175,162,124,110,114,109,114,74,85,144,116,283,256,232,236,213,313,157,216,174,170,162,202,172,84,82,108,129,117,145,147,90,95,37,0,0,0,50,65,64,9,109,95,69,79,77,77,75,85,109,100,0,41,61,52
-2019F,OR,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,CLOCP,217,218,240,201,177,175,162,124,110,114,109,114,74,85,144,116,283,256,232,236,213,313,157,216,174,170,162,202,172,84,82,108,129,117,145,147,90,95,37,0,0,0,50,65,64,9,109,95,69,79,77,77,75,85,109,100,0,41,61,52
-2019F,OR,CLRCP,94,107,80,68,67,73,68,48,33,34,18,21,13,6,4,4,6,6,5,4,4,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,CLTCP,381,400,377,320,293,305,281,209,170,174,140,157,104,101,156,130,306,277,251,255,715,1514,700,578,685,591,163,205,177,396,934,1940,2124,2100,2479,1125,1134,918,2074,2154,2241,2490,2205,2598,2141,2112,1558,2672,2451,1933,2494,2062,1658,2268,1963,1501,1125,1072,958,1551
-2019F,OR,CLTXP,381,400,377,320,293,305,281,209,170,174,140,157,104,101,156,130,306,277,251,255,230,317,163,220,179,173,163,205,177,90,84,109,130,119,146,148,90,96,37,0,0,0,50,65,64,9,109,95,69,79,77,77,75,85,109,100,0,41,61,52
-2019F,OR,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,DFACP,2893,3013,3220,3598,3748,3664,4078,3863,4563,5005,4782,5688,6401,7478,6870,6783,7086,8183,9059,9265,8851,9631,8927,9128,7250,8895,8745,9579,10094,9999,10526,11259,11459,10823,11332,10625,11394,11781,11363,12769,12835,11954,12801,12478,14183,14777,15590,16134,15258,15116,15897,15590,15553,15573,16042,14469,13828,14237,14916,14390
-2019F,OR,DFCCP,1485,1530,1615,1757,1919,1752,1727,1614,1676,1707,1607,1686,1721,1584,1344,1238,1378,1614,1493,1401,1792,957,1000,1798,2108,1345,1362,1374,1414,1088,1192,990,875,813,793,1061,911,951,994,834,994,1204,1027,529,592,516,477,471,589,720,743,517,309,279,360,385,398,409,522,409
-2019F,OR,DFEIP,0,0,0,0,0,0,1,0,0,0,0,1,1,28,54,29,20,266,142,931,110,36,14,25,10,3,4,2,1,76,56,23,19,56,11,12,10,23,59,15,105,182,14,100,40,93,11,9,21,6,6,12,12,10,18,11,8,18,9,14
-2019F,OR,DFICP,3723,3630,3881,3983,4529,4287,4443,4244,3826,3595,3413,3548,4251,4108,3075,2827,3077,3626,3619,3986,3992,3264,2922,3238,3796,2475,2513,2580,2711,2932,2537,2280,2589,3609,3236,3556,2553,2813,2633,2719,3602,3020,2949,2003,2217,1844,1859,1675,2153,2087,2020,2545,2526,2033,2471,2495,2824,2563,2256,2215
-2019F,OR,DFRCP,2865,2952,3117,3391,3703,3382,3332,3115,3235,3295,3101,3254,3321,3057,2594,2390,2659,3115,2880,2703,2019,2535,2111,1845,2163,2308,2075,1480,1714,1911,1592,1481,1218,1537,1444,1276,1206,1072,956,1089,983,1053,971,901,760,623,649,558,666,545,429,405,369,355,293,294,308,340,258,228
-2019F,OR,DFTCP,10966,11124,11834,12730,13899,13085,13580,12836,13300,13602,12904,14178,15695,16256,13937,13267,14220,16804,17193,18285,16764,16423,14974,16035,15328,15027,14699,15015,15935,16006,15902,16033,16159,16838,16816,16530,16074,16641,16005,17426,18519,17413,17762,16012,17792,17853,18586,18847,18688,18474,19095,19068,18769,18251,19183,17654,17366,17568,17961,17257
-2019F,OR,DFTXP,10966,11124,11834,12730,13899,13085,13579,12836,13300,13602,12904,14177,15694,16228,13883,13238,14200,16538,17051,17354,16655,16387,14960,16009,15317,15024,14695,15013,15934,15930,15846,16009,16141,16782,16805,16518,16063,16617,15946,17410,18414,17231,17748,15911,17752,17760,18575,18838,18666,18468,19089,19057,18757,18241,19166,17643,17358,17550,17953,17243
-2019F,OR,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,167,27,11,9,6,77,445,470,207,272,472,216,422,455,317,206,282,129,105,110,0
-2019F,OR,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5096,1325,5257,1635,2131,852,1323,870,1081,1066,828,2774,773,704,477,180,151,1477,284,2523,521,456,1441,597,761,435,706,922,376,361,2370,956,1130,544,0
-2019F,OR,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-3078,123,5072,7233,10930,5376,592,1232,653,-3702,4483,5590,1805,1076,-2592,2336,159,-2428,-4620,-5008,-5542,-9071,-10750,-8446,-9178,-8982,-10090,-10146,-11903,-8535
-2019F,OR,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,5096,1325,5257,1635,2131,852,1323,870,1081,1066,828,2774,773,591,310,153,140,1468,278,2445,76,-14,1234,324,289,219,284,466,59,155,2087,827,1025,434,0
-2019F,OR,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,1,0,0,0,0,0,0,0,501,862,0,0,0,0,346,296,331,427,814,619,650,1111,1245,1583,2804,3241,2875,2872,2719,2777,3057,3663,3736,3856,3834,3818
-2019F,OR,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,3,3,3,3,3,3,3,92,95,98,99,101
-2019F,OR,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,7,3,4,10,19,15,19,29,34,37,55,61,62,82,65,71,44,67,66,67,68,69
-2019F,OR,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,1,0,0,0,0,0,0,0,508,874,0,0,0,0,353,299,335,438,834,635,669,1141,1282,1622,2862,3305,2940,2956,2787,2850,3105,3822,3897,4021,4000,3988
-2019F,OR,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,9,9,10,10,10,11,14,11,11,14,33,35,34,36,15,16,17,18,18,19,24,25,25,25,22,23,24,24,25,26,27
-2019F,OR,ESCCP,3083,3274,3607,3948,4392,4557,4956,5367,5645,6168,6674,7153,7827,8203,8172,8804,8714,9096,9602,10514,10456,9088,9119,9001,9773,10340,10350,10785,11332,11613,12091,12395,12575,12859,13426,13558,14085,14477,14724,15347,15730,15263,15370,15483,15667,15380,16083,16187,16313,15978,15454,15754,15804,16080,16039,16021,16060,16571,16470,16423
-2019F,OR,ESICP,5247,5437,5598,5415,6434,7167,7588,8067,8615,8945,9123,9268,8743,9598,10657,12402,14108,12815,13623,14010,13847,15376,11847,11613,14245,11081,10994,13210,13633,14913,15498,15297,15123,15012,15072,15839,17029,16880,14640,14106,16353,13084,12296,11961,11954,12684,12991,13117,12945,11761,11708,11963,12006,12210,12654,12950,12692,13382,13899,14668
-2019F,OR,ESRCP,5263,5510,5941,6341,7002,7169,7595,8020,8591,9479,9850,10835,11303,11694,11809,12096,12152,12377,12779,13749,13545,13182,13825,13116,14050,14526,13722,13711,14338,15085,15380,15949,15202,16696,16462,16315,17285,17185,17529,18058,18212,17503,17554,17736,18001,18339,18978,19374,19910,19804,18839,19429,18855,19329,18618,18269,18573,20066,18931,19286
-2019F,OR,ESRPP,2970,3083,3268,3422,3708,3701,3857,4053,4287,4597,4688,5037,5144,5216,5168,5192,5109,5059,5074,5313,5128,4941,5188,4944,5269,5435,5113,5076,5231,5406,5377,5446,5081,5456,5274,5123,5323,5201,5229,5321,5310,5047,4996,5000,5043,5076,5170,5205,5283,5200,4909,5017,4834,4926,4695,4546,4538,4838,4525,4574
-2019F,OR,ESTCP,13593,14220,15147,15704,17828,18893,20139,21455,22850,24592,25648,27256,27873,29495,30638,33302,34974,34288,36004,38273,37848,37645,34791,33730,38068,35947,35066,37713,39312,41619,42977,43651,42910,44578,44971,45725,48410,48552,46907,47544,50330,45885,45255,45195,45636,46419,48069,48697,49187,47567,46026,47171,46689,47641,47335,47264,47349,50044,49326,50404
-2019F,OR,ESTPP,7671,7958,8332,8475,9443,9754,10228,10841,11402,11926,12207,12671,12685,13156,13408,14295,14706,14014,14297,14789,14330,14110,13055,12714,14276,13450,13067,13963,14341,14914,15025,14905,14343,14566,14408,14359,14908,14694,13992,14008,14675,13231,12881,12740,12785,12847,13095,13082,13051,12489,11993,12181,11971,12141,11937,11761,11568,12067,11790,11955
-2019F,OR,ESTXP,13593,14220,15147,15704,17828,18893,20139,21455,22850,24592,25648,27256,27873,29495,30638,33302,34974,34288,36004,38273,37848,37645,34791,33730,38068,35947,35066,37713,39312,41619,42977,43651,42910,44578,44971,45725,48410,48552,46907,47544,50330,45885,45255,45195,45636,46419,48069,48697,49187,47567,46026,47171,46689,47641,47335,47264,47349,50044,49326,50404
-2019F,OR,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,FSICP,0,0,0,5,6,8,9,10,10,10,12,15,20,0,0,15,0,0,16,11,13,0,7,9,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,165,183,179,184,174,176,185
-2019F,OR,HLACP,10,9,8,11,5,4,6,9,10,11,18,21,19,15,14,13,16,19,76,96,65,140,74,87,288,191,156,175,201,186,183,158,146,144,220,110,99,66,1,23,63,21,23,92,82,172,144,104,215,160,12,11,10,9,9,9,10,49,17,33
-2019F,OR,HLCCP,197,98,141,159,293,305,259,313,314,339,337,367,314,277,247,141,138,146,140,236,223,244,237,280,171,201,169,163,123,139,147,189,168,188,198,190,180,152,188,211,242,269,319,398,150,260,250,244,375,360,345,360,357,305,308,344,451,894,911,987
-2019F,OR,HLICP,558,308,369,366,48,33,54,63,82,120,212,218,244,235,350,287,277,288,335,654,614,379,530,385,494,728,850,821,1008,1005,755,826,776,849,603,850,983,370,203,516,523,172,318,152,477,163,173,213,540,499,614,689,662,674,726,731,711,577,531,450
-2019F,OR,HLRCP,400,200,286,323,594,619,526,635,637,688,684,745,637,563,502,286,280,296,284,480,452,496,482,569,348,407,342,331,249,283,299,385,340,381,402,385,365,310,381,429,492,547,647,693,313,684,525,505,644,775,623,631,480,597,669,502,490,577,743,858
-2019F,OR,HLTCP,1164,615,804,859,940,961,844,1020,1042,1159,1251,1350,1214,1089,1113,726,710,749,835,1466,1354,1259,1322,1321,1301,1527,1517,1490,1581,1612,1384,1558,1430,1561,1423,1535,1627,898,773,1179,1320,1009,1307,1335,1022,1278,1092,1066,1774,1794,1594,1691,1508,1586,1712,1586,1661,2098,2201,2329
-2019F,OR,HLTXP,1164,615,804,859,940,961,844,1020,1042,1159,1251,1350,1214,1089,1113,726,710,749,835,1466,1354,1259,1322,1321,1301,1527,1517,1490,1581,1612,1384,1558,1430,1561,1423,1535,1627,898,773,1179,1320,1009,1307,1335,1022,1278,1092,1066,1774,1794,1594,1691,1508,1586,1712,1586,1661,2098,2201,2329
-2019F,OR,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,HYEGP,12389,12413,13233,13561,14941,16447,16653,17797,20376,27815,29836,34304,36470,28140,35964,34522,35356,24352,31896,29837,30194,32132,45195,45049,46607,40752,40743,35431,34646,38002,41240,41082,31716,35862,31219,40764,44906,46704,39902,45639,38116,28645,34413,33250,33081,30948,37850,33587,33805,33034,30542,42315,39410,33098,35262,31254,34549,38294,35443,30322
-2019F,OR,HYICP,77,79,80,75,64,61,66,63,71,83,77,60,8,10,40,40,27,32,16,29,28,28,28,28,28,28,28,28,28,5,0,6,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,HYTCP,12466,12493,13313,13636,15005,16508,16719,17861,20447,27898,29912,34364,36478,28150,36004,34562,35384,24385,31911,29866,30222,32160,45223,45077,46635,40780,40771,35459,34674,38007,41240,41088,31719,35864,31220,40764,44906,46704,39902,45639,38116,28645,34413,33250,33081,30948,37850,33587,33805,33034,30542,42315,39410,33098,35262,31254,34549,38294,35443,30322
-2019F,OR,HYTXP,77,79,80,75,64,61,66,63,71,83,77,60,8,10,40,40,27,32,16,29,28,28,28,28,28,28,28,28,28,5,0,6,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,JFACP,384,619,765,593,625,812,950,1603,2145,2366,2086,2072,2085,2386,2212,2079,2055,2307,2534,2631,2465,1694,1785,1777,1962,2142,2618,2928,3189,3377,3319,3744,4011,4310,4649,5114,5235,5723,5866,6437,6277,5217,5175,5589,5097,5402,5764,5630,5464,6525,4604,4514,4556,4841,4811,4974,5158,5527,6191,6234
-2019F,OR,JFTCP,384,619,765,593,625,812,950,1603,2145,2366,2086,2072,2085,2386,2212,2079,2055,2307,2534,2631,2465,1694,1785,1777,1962,2142,2618,2928,3189,3377,3319,3744,4011,4310,4649,5114,5235,5723,5866,6437,6277,5217,5175,5589,5097,5402,5764,5630,5464,6525,4604,4514,4556,4841,4811,4974,5158,5527,6191,6234
-2019F,OR,JFTXP,384,619,765,593,625,812,950,1603,2145,2366,2086,2072,2085,2386,2212,2079,2055,2307,2534,2631,2465,1694,1785,1777,1962,2142,2618,2928,3189,3377,3319,3744,4011,4310,4649,5114,5235,5723,5866,6437,6277,5217,5175,5589,5097,5402,5764,5630,5464,6525,4604,4514,4556,4841,4811,4974,5158,5527,6191,6234
-2019F,OR,KSCCP,0,3,4,2,3,4,5,4,5,21,46,23,14,5,34,34,29,49,102,45,37,53,12,45,29,26,7,5,9,7,8,4,5,11,14,14,38,22,63,31,28,73,46,23,45,61,42,13,10,18,7,11,4,3,4,5,1,2,1,1
-2019F,OR,KSICP,44,19,17,16,6,10,9,12,9,16,107,99,84,78,171,143,141,251,277,52,38,18,24,1,1,1,2,1,2,4,4,4,9,12,10,23,11,6,18,58,31,56,31,28,45,33,23,2,2,13,5,4,2,2,1,1,3,1,0,1
-2019F,OR,KSRCP,1,4,6,3,5,5,7,5,8,30,65,33,19,8,48,48,40,69,143,63,37,71,60,28,22,41,22,10,10,38,13,13,17,18,50,26,40,34,66,81,186,173,110,76,93,76,51,8,11,61,60,63,31,24,27,22,42,26,21,26
-2019F,OR,KSTCP,45,27,26,21,15,19,21,21,22,67,218,155,117,91,253,225,210,368,522,160,112,142,96,74,52,68,31,17,20,50,26,21,31,41,74,62,89,62,147,170,245,302,187,126,182,170,116,22,22,92,72,77,37,28,32,28,46,28,23,28
-2019F,OR,KSTXP,45,27,26,21,15,19,21,21,22,67,218,155,117,91,253,225,210,368,522,160,112,142,96,74,52,68,31,17,20,50,26,21,31,41,74,62,89,62,147,170,245,302,187,126,182,170,116,22,22,92,72,77,37,28,32,28,46,28,23,28
-2019F,OR,LUACP,301,293,320,320,336,404,419,359,394,478,487,414,443,498,477,490,545,529,569,595,530,508,463,485,517,482,471,533,514,527,542,485,495,504,527,518,502,531,555,561,553,507,501,463,469,466,454,469,436,392,332,306,281,292,299,319,297,280,270,254
-2019F,OR,LUICP,175,170,165,165,173,208,216,212,233,276,281,236,252,304,291,189,210,221,238,249,221,212,194,203,216,201,197,223,215,220,227,203,207,211,220,216,210,222,232,235,231,212,209,193,196,195,190,196,182,164,174,175,157,181,177,197,200,186,185,174
-2019F,OR,LUTCP,476,464,485,485,509,612,635,571,627,754,768,649,695,803,769,679,754,751,806,844,751,720,657,688,733,684,668,756,729,747,769,688,702,714,747,734,712,752,788,796,784,718,710,656,665,661,644,665,618,555,506,481,438,474,477,516,497,466,455,428
-2019F,OR,LUTXP,476,464,485,485,509,612,635,571,627,754,768,649,695,803,769,679,754,751,806,844,751,720,657,688,733,684,668,756,729,747,769,688,702,714,747,734,712,752,788,796,784,718,710,656,665,661,644,665,618,555,506,481,438,474,477,516,497,466,455,428
-2019F,OR,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-39,-28,0,-39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,MGACP,15142,15704,16562,17160,17768,18824,19893,20440,21440,22476,23987,25312,26906,28147,27451,28125,30026,31366,32894,31268,29803,29102,27798,27714,28572,28335,29213,29924,31438,31191,31030,31462,31502,33044,33306,33476,34562,32980,35638,36085,35557,35320,36006,35617,35747,36488,36873,36910,35671,36184,35715,34300,33666,34139,34934,35298,36387,37050,37146,36330
-2019F,OR,MGCCP,139,163,188,189,173,206,174,199,207,217,249,236,227,209,215,218,216,207,195,175,291,296,305,407,296,231,234,243,237,220,272,174,165,32,32,33,33,30,30,30,29,31,31,31,31,32,64,32,32,32,32,32,32,33,31,888,924,938,955,966
-2019F,OR,MGICP,1080,970,964,923,918,808,685,666,683,717,722,599,623,597,587,560,504,482,407,403,417,315,284,188,486,482,500,482,417,478,425,489,254,452,498,513,565,584,692,396,403,807,861,879,1041,968,1018,868,706,686,776,975,811,868,507,645,640,648,658,653
-2019F,OR,MGTCP,16361,16837,17714,18272,18859,19838,20753,21305,22330,23410,24958,26147,27756,28953,28253,28904,30747,32054,33497,31845,30511,29713,28386,28309,29354,29047,29947,30649,32092,31889,31728,32125,31921,33528,33837,34021,35161,33594,36360,36512,35989,36157,36898,36527,36818,37488,37956,37810,36410,36902,36523,35307,34508,35040,35472,36831,37952,38635,38758,37948
-2019F,OR,MGTXP,16361,16837,17714,18272,18859,19838,20753,21305,22330,23410,24958,26147,27756,28953,28253,28904,30747,32054,33497,31845,30511,29713,28386,28309,29354,29047,29947,30649,32092,31889,31728,32125,31921,33528,33837,34021,35161,33594,36360,36512,35989,36157,36898,36527,36818,37488,37956,37810,36410,36902,36523,35307,34508,35040,35472,36831,37952,38635,38758,37948
-2019F,OR,MSICP,53,59,65,34,34,33,46,43,48,45,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,16,15,17,15,0,0,0,0,0,20,22,21,19,18,45,45,47,51,53,55,54,44,47,48,49,56,56,51
-2019F,OR,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,NGACP,55,64,65,36,473,682,871,1903,3934,3647,5508,6813,9924,8716,7301,7886,8816,8664,8701,9245,5620,3648,3412,3003,2685,4585,3493,7976,8052,8522,9014,8819,6833,4903,5816,7295,7991,12690,13388,10293,11832,11060,9188,7184,9803,7462,8418,9701,7539,8252,6577,5188,4698,4252,3865,4763,5051,5359,6432,5720
-2019F,OR,NGCCP,3106,3259,3562,4179,5315,5592,6577,6961,7874,9965,11360,13563,14530,13722,13401,15896,13995,10861,12124,13820,15171,14922,16330,15143,17012,19043,16843,16718,18406,20249,20449,22328,19570,24047,22960,22419,25597,25465,25986,28510,28589,27884,27714,26110,26214,27631,27844,29007,30444,29744,27246,30359,28805,30566,28377,25602,26667,31763,28997,32379
-2019F,OR,NGEIP,701,572,500,579,321,113,122,321,537,464,1010,0,0,2859,266,3,1,6,0,2380,321,186,32,1,0,0,0,0,0,12942,7386,11601,14765,17278,26762,19511,26354,24171,52846,49661,69451,82542,55854,74400,88734,87998,75186,101503,116637,108705,108827,60252,81444,101930,90098,113519,107003,104362,123365,143791
-2019F,OR,NGICP,20212,22844,25761,29472,36703,38815,44809,47265,51755,53271,57664,59304,62575,60393,55183,57364,48650,42897,47737,49393,39202,39643,32338,32119,39450,37896,31578,36806,39886,43811,48983,55109,58587,60735,62664,68970,87794,90403,102770,107984,76322,69908,70550,67562,71714,69666,70115,68836,68811,57344,55853,57016,57550,57416,56564,53681,57799,57880,54293,57028
-2019F,OR,NGRCP,6787,7088,7977,9084,11172,10863,12714,13427,15126,20507,19742,21217,23331,22271,21900,28749,21038,10093,17578,18869,18389,17163,18712,16779,19495,21478,19058,18750,20819,22504,23383,26324,23109,29777,28848,28067,33236,32522,34417,38564,38698,38271,38858,37300,38532,39806,41045,42880,45053,44819,40821,46604,43333,46254,41185,37070,39391,47841,42625,47927
-2019F,OR,NGTCP,30861,33827,37865,43350,53984,56065,65093,69877,79226,87854,95284,100897,110360,107961,98051,109898,92500,72521,86140,93707,78703,75562,70824,67045,78642,83002,70972,80250,87163,108029,109215,124181,122865,136740,147049,146263,180972,185251,229407,235013,224893,229665,202164,212556,234997,232562,222608,251927,268484,248864,239324,199419,215830,240418,220089,234635,235911,247205,255712,286845
-2019F,OR,NGTPP,17.4,18.9,20.8,23.4,28.6,28.9,33.1,35.3,39.5,42.6,45.4,46.9,50.2,48.2,42.9,47.2,38.9,29.6,34.2,36.2,29.8,28.3,26.6,25.3,29.5,31.1,26.4,29.7,31.8,38.7,38.2,42.4,41.1,44.7,47.1,45.9,55.7,56.1,68.4,69.2,65.6,66.2,57.5,59.9,65.8,64.4,60.6,67.7,71.2,65.3,62.4,51.5,55.3,61.3,55.5,58.4,57.6,59.6,61.1,68
-2019F,OR,NGTXP,30160,33255,37365,42771,53663,55952,64971,69556,78689,87390,94274,100897,110360,105102,97785,109895,92499,72515,86140,91327,78382,75376,70792,67044,78642,83002,70972,80250,87163,95086,101829,112579,108100,119462,120288,126752,154618,161080,176561,185352,155441,147123,146310,138156,146263,144564,147422,150423,151847,140159,130497,139167,134386,138488,129991,121116,128908,142843,132347,143054
-2019F,OR,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2103,6492,1563,4495,5395,6424,4792,3685,4736,6911,7081,4348,6339,5299,6074,1465,4573,-21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2103,6492,1563,4495,5395,6424,4792,3685,4736,6911,7081,4348,6339,5299,6074,1465,4573,-21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,OPICP,174,176,182,153,289,325,320,325,345,359,357,311,410,164,162,320,154,160,372,377,364,121,220,274,177,256,187,209,165,155,155,177,191,194,169,156,164,154,193,229,166,181,208,175,134,150,233,239,250,164,138,129,113,320,335,315,303,303,287,287
-2019F,OR,OPTCP,174,176,182,153,289,325,320,325,345,359,357,311,410,164,162,320,154,160,372,377,364,121,220,274,177,256,187,209,165,155,155,177,191,194,169,156,164,154,193,229,166,181,208,175,134,150,233,239,250,164,138,129,113,320,335,315,303,303,287,287
-2019F,OR,OPTXP,174,176,182,153,289,325,320,325,345,359,357,311,410,164,162,320,154,160,372,377,364,121,220,274,177,256,187,209,165,155,155,177,191,194,169,156,164,154,193,229,166,181,208,175,134,150,233,239,250,164,138,129,113,320,335,315,303,303,287,287
-2019F,OR,P1ICP,2473,3482,3711,3766,3983,3735,4007,3667,3572,4050,3930,4646,5247,4599,4185,4945,4293,4766,5032,4731,3785,3627,3203,3224,3427,3854,3633,4210,4458,4668,4897,4339,5584,4288,4478,3774,3784,3801,6059,6527,4678,2636,3680,3706,3974,4040,4112,3223,3048,2046,1914,1937,1938,1992,2008,2042,2322,2354,1957,1958
-2019F,OR,P1TCP,3430,4633,4503,4409,4628,4425,4776,4363,4456,4767,4833,5281,5900,5299,4950,5688,5075,5612,6038,5643,4649,4478,3866,3907,4120,4544,4326,4884,5088,5342,5582,4968,6230,4931,5225,4474,4556,4564,6893,7361,5583,3614,4492,4403,4707,4787,4863,3914,3689,2650,2451,2446,2378,2411,2429,2488,2763,2758,2371,2348
-2019F,OR,P1TXP,3430,4633,4503,4409,4628,4425,4776,4363,4456,4767,4833,5281,5900,5299,4950,5688,5075,5612,6038,5643,4649,4478,3866,3907,4120,4544,4326,4884,5088,5342,5582,4968,6230,4931,5225,4474,4556,4564,6893,7361,5583,3614,4492,4403,4707,4787,4863,3914,3689,2650,2451,2446,2378,2411,2429,2488,2763,2758,2371,2348
-2019F,OR,PAACP,20542,21425,22108,22669,23453,24654,26859,27686,30883,31661,32736,34136,36303,39004,37554,38098,40288,43026,46990,47796,43080,44903,44736,42587,42023,43277,44405,46559,49752,50096,49421,52929,53501,52690,54052,53163,55017,54491,57234,58426,56692,54421,55881,55899,57416,59319,60592,61627,58714,59283,58271,55773,54994,55563,56299,55420,55781,57240,58662,57693
-2019F,OR,PACCP,2811,2684,2885,3081,3453,3313,3236,3179,3358,3651,3565,3784,4140,3834,3393,2593,2524,2750,2652,2270,3219,2535,3042,2647,2900,1993,2100,2005,2115,1716,1903,1611,1453,1216,1147,1384,1243,1204,1346,1153,1355,1627,1487,1034,873,917,872,793,1047,1166,1153,951,717,624,704,1622,1774,2243,2389,2363
-2019F,OR,PAEIP,3,3,25,8,2,1,57,17,10,8,19,1,1,28,54,29,20,266,142,931,110,36,14,25,10,3,4,2,1,76,56,23,19,56,11,12,10,23,59,15,105,182,14,100,40,93,11,9,21,6,6,12,12,10,18,11,8,18,9,14
-2019F,OR,PAICP,11244,11509,12189,12341,13023,12262,12700,12200,11945,12924,12495,13652,16109,14862,12861,11541,10459,11366,11600,11073,11337,9336,10420,7892,10364,9219,9650,9670,10200,9446,9060,8282,9700,9866,9229,9018,8020,7735,9726,10302,9345,6768,8282,7107,8011,7281,7630,6307,6667,5478,5421,6308,6046,5686,5772,5977,6617,6163,5416,5276
-2019F,OR,PARCP,3265,3156,3409,3716,4302,4006,3865,3755,3879,4013,3850,4032,3977,3627,3144,2723,2979,3480,3307,3245,2508,3102,2653,2442,2534,2756,2439,1821,1973,2232,1904,1879,1575,1936,1896,1687,1611,1416,1403,1599,1660,1773,1728,1669,1167,1383,1226,1071,1320,1381,1111,1099,879,976,989,818,840,943,1023,1113
-2019F,OR,PATCP,37866,38778,40616,41816,44232,44235,46718,46837,50076,52257,52665,55606,60530,61356,57006,54984,56270,60887,64691,65315,60254,59911,60865,55594,57831,57248,58598,60055,64040,63566,62345,64723,66248,65763,66335,65263,65901,64869,69767,71494,69156,64771,67392,65808,67505,68994,70331,69807,67770,67313,65962,64142,62648,62859,63782,63848,65020,66606,67497,66460
-2019F,OR,PATPP,21.4,21.7,22.3,22.6,23.4,22.8,23.7,23.7,25,25.3,25.1,25.9,27.5,27.4,24.9,23.6,23.7,24.9,25.7,25.2,22.8,22.5,22.8,21,21.7,21.4,21.8,22.2,23.4,22.8,21.8,22.1,22.1,21.5,21.3,20.5,20.3,19.6,20.8,21.1,20.2,18.7,19.2,18.6,18.9,19.1,19.2,18.8,18,17.7,17.2,16.6,16.1,16,16.1,15.9,15.9,16.1,16.1,15.8
-2019F,OR,PATXP,37863,38775,40591,41808,44230,44234,46660,46820,50065,52248,52646,55605,60529,61327,56952,54955,56250,60621,64550,64384,60144,59875,60850,55568,57821,57245,58594,60054,64040,63490,62289,64700,66230,65707,66324,65252,65891,64846,69709,71479,69052,64589,67378,65708,67466,68900,70320,69798,67748,67307,65956,64130,62636,62849,63765,63837,65012,66588,67489,66445
-2019F,OR,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,PCICP,260,1132,1336,1494,1170,1231,1229,1293,1132,1370,1018,1267,1359,1190,965,1076,999,1330,1114,801,679,1437,1097,573,514,557,1022,1636,1654,1486,1485,1298,1880,543,656,621,654,455,1430,2357,1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,PCTCP,260,1132,1336,1494,1170,1231,1229,1293,1132,1370,1018,1267,1359,1190,965,1076,999,1330,1114,801,679,1437,1097,573,514,557,1022,1636,1654,1486,1485,1298,1880,543,656,621,654,455,1430,2357,1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,PCTXP,260,1132,1336,1494,1170,1231,1229,1293,1132,1370,1018,1267,1359,1190,965,1076,999,1330,1114,801,679,1437,1097,573,514,557,1022,1636,1654,1486,1485,1298,1880,543,656,621,654,455,1430,2357,1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,11,10,9,9,9,10,49,17,33
-2019F,OR,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,345,360,357,305,308,344,451,894,911,987
-2019F,OR,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,614,689,662,674,726,731,711,577,531,450
-2019F,OR,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,623,631,480,597,669,502,490,577,743,858
-2019F,OR,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1594,1691,1508,1586,1712,1586,1661,2098,2201,2329
-2019F,OR,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1594,1691,1508,1586,1712,1586,1661,2098,2201,2329
-2019F,OR,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,OR,RFACP,1157,935,770,667,670,670,1175,1085,1855,1137,1070,464,271,290,326,438,392,424,1666,3733,1107,3608,5562,3270,3309,3091,3010,3293,4218,4714,3700,5695,5759,3755,3863,3178,3033,3235,3660,2389,1268,1176,1220,1524,1712,1871,1562,2179,1485,772,1573,922,804,608,114,251,0,0,0,343
-2019F,OR,RFCCP,991,890,937,974,1065,1046,1071,1049,1156,1366,1326,1472,1865,1758,1552,962,764,734,722,413,876,985,1488,117,295,191,328,220,331,262,283,254,240,172,109,87,83,48,72,48,61,50,64,53,55,49,40,32,41,36,26,30,15,3,0,0,0,0,0,0
-2019F,OR,RFEIP,3,3,25,8,2,1,57,17,10,8,18,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,RFICP,3411,3121,3264,3304,3545,3398,3512,3559,3782,4442,4217,4641,5743,5324,4664,2922,2307,2204,2207,1299,2528,1751,3481,857,2162,1679,2153,1576,1606,363,447,346,498,668,413,325,134,166,139,144,138,134,474,366,302,266,468,328,220,161,96,163,109,119,60,63,120,21,14,0
-2019F,OR,RFTCP,5562,4949,4996,4954,5282,5115,5815,5710,6803,6953,6632,6577,7880,7372,6542,4321,3463,3362,4595,5445,4511,6344,10531,4244,5766,4961,5491,5089,6155,5339,4430,6296,6497,4595,4385,3589,3249,3449,3871,2581,1468,1360,1758,1942,2069,2186,2069,2539,1746,968,1696,1115,929,730,174,315,120,21,14,343
-2019F,OR,RFTXP,5558,4945,4972,4945,5280,5114,5758,5693,6793,6945,6614,6577,7880,7372,6542,4321,3463,3362,4595,5445,4511,6344,10531,4244,5766,4961,5491,5089,6155,5339,4430,6296,6497,4595,4385,3589,3249,3449,3871,2581,1468,1360,1758,1942,2069,2186,2069,2539,1746,968,1696,1115,929,730,174,315,120,21,14,343
-2019F,OR,SGICP,94,91,93,90,103,126,124,150,155,162,155,145,229,0,0,165,0,0,163,171,164,0,195,194,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,SNICP,0,0,0,0,124,134,117,97,104,114,121,151,162,164,162,140,154,160,193,195,188,121,113,132,177,136,187,209,165,155,155,103,123,123,95,83,87,84,125,170,114,104,136,107,68,83,135,150,163,89,50,44,28,245,260,243,229,232,213,221
-2019F,OR,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,10,18,28,31,40,38,41,41,71,79,86,88
-2019F,OR,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,20,24,24,41,194,572,676
-2019F,OR,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,4,13,15,15,16
-2019F,OR,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,3,4,9,15,22,27,36,47,67,85,104,123
-2019F,OR,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,5,13,23,38,47,70,88,104,116,192,373,776,903
-2019F,OR,TPOPP,1772,1787,1818,1853,1888,1937,1969,1979,2004,2062,2101,2151,2197,2242,2285,2330,2378,2447,2518,2588,2641,2668,2665,2653,2667,2673,2684,2701,2741,2791,2860,2929,2992,3060,3121,3184,3247,3304,3352,3394,3430,3468,3513,3547,3569,3613,3671,3722,3769,3809,3838,3873,3900,3924,3965,4019,4093,4147,4184,4216
-2019F,OR,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-58,-34,0,-60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,WXICP,27,27,24,23,22,23,24,24,27,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,53,57,57,57,77,69,67,59,52,56,50,48,48,49,53,44,39,25,35,30,31,31,28,23,24,15,18,15
-2019F,OR,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,20,85,67,89,376,444,619,734,931,1247,2575,3470,3920,4775,6343,7456,7555,6632,7157,6227,7447,6569
-2019F,OR,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,OR,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,20,85,67,89,376,444,619,734,931,1247,2575,3470,3920,4775,6343,7456,7555,6632,7157,6227,7447,6569
-2019F,OR,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,47,7,1,38,5,0,-10,1,2,-1,2,1,54,52,52,87,38,60,35,56,69,67,95,77,6,16,1,-7,-2,0,0,-3,-1,-2,-2,-1,-10,-5
-2019F,PA,ARICP,4731,4740,4859,4935,5348,6201,5900,6392,6593,6429,6600,6660,7153,6976,6678,5663,6305,6569,6330,6354,5148,5424,5400,3985,4061,4913,5956,6572,5473,6718,7466,6192,6036,6087,7610,7808,7472,6962,7890,4996,7365,8694,6881,7822,8783,9187,8787,7891,7059,6673,7058,6142,5747,5282,6381,7117,7009,7160,6564,6827
-2019F,PA,ARTCP,4731,4740,4859,4935,5348,6201,5900,6392,6593,6429,6600,6660,7153,6976,6678,5663,6305,6569,6330,6354,5148,5424,5400,3985,4061,4913,5956,6572,5473,6718,7466,6192,6036,6087,7610,7808,7472,6962,7890,4996,7365,8694,6881,7822,8783,9187,8787,7891,7059,6673,7058,6142,5747,5282,6381,7117,7009,7160,6564,6827
-2019F,PA,ARTXP,4731,4740,4859,4935,5348,6201,5900,6392,6593,6429,6600,6660,7153,6976,6678,5663,6305,6569,6330,6354,5148,5424,5400,3985,4061,4913,5956,6572,5473,6718,7466,6192,6036,6087,7610,7808,7472,6962,7890,4996,7365,8694,6881,7822,8783,9187,8787,7891,7059,6673,7058,6142,5747,5282,6381,7117,7009,7160,6564,6827
-2019F,PA,AVACP,1994,2418,1864,2263,1939,1922,1505,994,942,767,662,623,599,573,542,426,425,436,382,342,337,278,197,210,186,208,251,147,189,177,145,116,163,150,136,125,121,107,126,205,154,122,121,95,95,100,218,97,100,69,106,116,121,106,97,102,73,73,73,84
-2019F,PA,AVTCP,1994,2418,1864,2263,1939,1922,1505,994,942,767,662,623,599,573,542,426,425,436,382,342,337,278,197,210,186,208,251,147,189,177,145,116,163,150,136,125,121,107,126,205,154,122,121,95,95,100,218,97,100,69,106,116,121,106,97,102,73,73,73,84
-2019F,PA,AVTXP,1994,2418,1864,2263,1939,1922,1505,994,942,767,662,623,599,573,542,426,425,436,382,342,337,278,197,210,186,208,251,147,189,177,145,116,163,150,136,125,121,107,126,205,154,122,121,95,95,100,218,97,100,69,106,116,121,106,97,102,73,73,73,84
-2019F,PA,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,23,19,38,129,370,502,431,457,369,1257,1238,1273,1370,1309,1426,1534,1279,1206
-2019F,PA,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,23,19,38,129,370,502,431,457,369,1257,1238,1273,1370,1309,1426,1534,1279,1206
-2019F,PA,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,CLACP,569,137,127,126,142,130,118,92,83,58,57,39,30,22,16,5,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,CLCCP,3639,3291,2894,2767,2595,2403,2100,1881,1789,1602,1594,1765,1464,1771,1529,1308,1270,1211,1474,1048,1239,1480,1419,1244,1238,993,1104,1200,1097,1130,1046,1155,1333,1031,983,1034,875,1108,749,607,660,698,516,609,612,573,568,645,203,194,184,170,131,119,117,75,39,25,14,12
-2019F,PA,CLEIP,18062,18348,19423,20138,22154,23182,24146,24637,26414,26473,29141,32238,35053,38794,35052,36659,37447,36451,36376,41448,42466,39685,39972,40046,40836,41713,40589,41263,43166,45051,45165,44837,46212,46693,45079,46895,49541,50597,50810,48971,52266,49297,49860,50926,51698,54464,55936,55712,53995,48853,50888,47403,41602,41992,38307,31391,27528,24384,23503,19480
-2019F,PA,CLICP,33140,30182,31824,33949,38508,40010,39800,38395,38084,34812,35753,30078,29516,30845,30285,28510,28413,25405,24888,27616,21877,19045,10790,12319,16283,13716,11080,12591,14226,14016,14546,12860,14041,14644,14894,14885,15155,14825,10691,10160,10508,10079,10137,10366,10418,9957,9595,9264,9135,6017,7498,7217,6872,7908,8056,7567,5818,6012,6223,6002
-2019F,PA,CLKCP,22009,19776,20479,22232,26019,28089,27743,27047,26971,25337,27022,22587,23255,24331,24047,22477,23326,20802,20130,22308,17064,14814,7130,8394,11546,9762,7007,8395,10146,9877,10456,8812,9868,10333,10849,10858,10689,10334,7107,6578,7010,6723,7017,7320,7081,7020,6802,6639,6494,3787,5188,5100,5180,6249,6475,6068,4582,5238,5648,5505
-2019F,PA,CLOCP,11131,10406,11345,11717,12489,11921,12057,11348,11113,9475,8731,7491,6261,6514,6238,6033,5088,4603,4757,5307,4812,4231,3661,3925,4738,3953,4074,4196,4080,4138,4090,4049,4173,4311,4044,4027,4466,4492,3584,3583,3498,3355,3121,3046,3337,2937,2792,2625,2641,2230,2310,2117,1692,1659,1581,1499,1235,774,576,496
-2019F,PA,CLRCP,5236,4736,4165,3822,3583,3185,2784,2493,2277,2039,2028,1696,1105,1040,719,561,519,471,440,262,329,325,291,237,290,280,330,358,309,300,262,253,293,226,173,154,119,137,93,83,82,86,70,91,68,50,56,72,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,CLTCP,60646,56694,58434,60803,66982,68911,68948,67499,68648,64986,68574,65816,67167,72471,67601,67043,67651,63539,63179,70374,65911,60535,52472,53846,58648,56702,53103,55413,58799,60497,61019,59106,61879,62594,61129,62969,65691,66667,62342,59822,63516,60161,60583,61992,62797,65044,66155,65693,63333,55063,58570,54790,48606,50019,46481,39033,33385,30420,29740,25494
-2019F,PA,CLTXP,42584,38346,39010,40664,44828,45729,44802,42862,42234,38513,39433,33578,32115,33678,32549,30384,30205,27088,26803,28925,23445,20850,12500,13800,17812,14989,12514,14150,15633,15446,15854,14269,15667,15901,16050,16074,16150,16070,11532,10850,11250,10863,10724,11066,11099,10580,10219,9981,9338,6211,7682,7388,7003,8027,8173,7642,5857,6036,6237,6014
-2019F,PA,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,DFACP,7662,8159,7078,8345,8979,8900,9529,9608,11610,12071,12662,12164,14488,16854,17478,16566,18742,19258,20260,21501,21539,18709,17161,18041,18488,20337,21116,24170,25041,23063,23187,23817,24586,26534,28066,29224,28464,30227,31153,32235,33989,35425,34831,32711,36709,38790,40699,39473,34423,34787,36048,37540,38285,37395,38346,37211,34437,34489,36608,37250
-2019F,PA,DFCCP,4363,4288,4848,4891,4700,4935,4783,5106,5342,5259,5431,5455,5895,5966,5551,5491,6050,6119,5754,5631,5858,5160,4721,5708,6714,5508,6693,6452,6394,8110,6640,6309,6289,6400,7694,6334,6152,4807,4597,4751,5495,5994,7454,6459,6216,6124,5703,4920,6155,4160,4091,3647,2962,3214,3443,3257,2653,3110,3530,3463
-2019F,PA,DFEIP,485,488,450,505,480,591,1008,1263,1594,3111,3959,4276,4729,3428,5695,3340,2933,3584,3679,1958,2238,1733,1441,2182,2073,1423,1436,1567,1673,2104,2140,970,828,991,1974,1398,1514,1055,1555,1325,2593,1167,1238,1346,1072,1273,651,838,794,592,735,671,502,571,1003,1043,585,519,1352,378
-2019F,PA,DFICP,8645,9047,9649,10184,10067,11641,11582,11888,10650,10822,10196,9894,10256,11572,11362,11033,12581,13872,12583,15239,11128,10081,8920,6238,7337,6434,7347,8805,7828,7038,7489,6197,7279,6507,5730,4392,4462,4179,4066,5034,5576,5997,5254,4883,5446,5681,7293,7847,8775,5495,5903,7049,7877,8707,9924,8869,6389,7264,7522,7609
-2019F,PA,DFRCP,25101,24667,27888,28135,27038,28391,27512,29375,30728,30255,31242,31383,33912,34319,31931,31587,34802,35199,33102,32391,27838,24202,20702,20703,24350,24185,21034,21779,22644,24506,20207,20236,20511,22306,22022,20307,20704,19169,16232,19175,20910,20863,20503,22927,22427,19896,16902,17139,26532,13305,14793,13963,12273,13759,15798,15062,12689,12376,14948,11576
-2019F,PA,DFTCP,46257,46649,49912,52060,51264,54459,54414,57240,59924,61519,63489,63171,69280,72139,72016,68017,75108,78031,75378,76720,68602,59885,52945,52872,58961,57887,57627,62774,63581,64822,59661,57530,59492,62738,65486,61656,61297,59438,57603,62519,68564,69446,69282,68326,71869,71764,71248,70216,76679,58339,61570,62870,61899,63647,68514,65441,56753,57758,63960,60277
-2019F,PA,DFTXP,45772,46160,49463,51555,50784,53867,53406,55977,58330,58408,59530,58895,64552,68711,66321,64677,72176,74447,71699,74762,66364,58152,51504,50691,56888,56464,56191,61207,61908,62718,57522,56559,58664,61748,63512,60257,59783,58382,56048,61194,65971,68279,68043,66980,70797,70491,70597,69379,75885,57747,60835,62199,61397,63076,67511,64399,56168,57240,62608,59899
-2019F,PA,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,0,175,30,0,0,96,103,263,317,127,96,356,446,348,231,21,33,24,31,5,1,12,0
-2019F,PA,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,23,207,114,11,13,0,0,0,18,86,30,32,158,889,616,769,667,1360,1142,578,567,314,33,56,0
-2019F,PA,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-47068,-42458,-48542,-46032,-46215,-43353,-48713,-50027,-45590,-49598,-51629,-46889,-48592,-49975,-53374,-52546,-56098,-60244,-56478,-62615,-67916,-65984,-66040,-66730,-60534,-54898,-55491,-56609,-52562,-70484
-2019F,PA,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,16,199,113,-164,-16,0,0,-96,-85,-177,-286,-95,62,533,170,421,435,1339,1109,554,536,309,32,44,0
-2019F,PA,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,551,1714,1287,1422,325,281,317,405,135,161,2115,1346,2961,3993,8575,10644,11269,11235,11309,11551,11226,10828,11052,11325,11184,11262
-2019F,PA,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,3,0,0,0,0,0,2,1,2,3,7,8,8,9,9,9,9,266,271,280,290,292
-2019F,PA,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,14,10,11,2,2,2,5,2,2,31,20,52,50,60,74,191,118,201,210,167,143,144,149,153,154
-2019F,PA,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,556,1730,1298,1437,330,283,319,410,137,163,2148,1367,3015,4047,8642,10726,11469,11362,11519,11770,11401,11237,11467,11754,11627,11708
-2019F,PA,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,ESACP,306,284,271,248,244,232,223,213,198,184,184,200,191,196,194,194,193,194,192,186,186,174,186,298,343,365,392,394,403,413,396,399,360,345,370,379,397,376,381,392,401,412,403,727,823,880,816,876,863,879,887,840,875,814,827,776,787,755,703,619
-2019F,PA,ESCCP,7125,7467,7867,8223,8783,9417,10093,10653,11601,12473,13435,14265,15193,16219,16026,18608,19482,20317,20656,21042,21746,22379,22649,22991,23907,24580,25875,26997,28369,29430,30198,31612,31813,33232,34361,35542,36373,36853,38088,38306,42988,41446,43598,43218,44355,45782,45624,47531,47347,46411,47366,43536,42920,43145,43348,43745,43535,42623,43222,40143
-2019F,PA,ESICP,20693,21225,22695,24373,27053,29075,31529,32277,35114,38050,38993,39848,42641,46201,45854,41256,43610,44839,45949,47943,46045,46596,40280,41047,44061,42520,42020,43989,46291,45916,45992,44728,44869,44949,46076,47528,47208,48063,48815,46059,45449,47383,47090,46773,47659,47950,47920,48579,48131,43552,45458,49585,48039,48043,48318,47404,47128,47889,49155,50423
-2019F,PA,ESRCP,11094,11779,12291,12950,13737,14807,16059,17419,19254,21037,23007,24297,25705,27423,27343,27678,28850,30203,30767,31410,31767,31714,31467,32334,33132,32686,34241,35761,37828,38141,38164,39598,39245,41455,42239,42802,43645,42785,42923,44126,45008,46030,48730,49651,50663,53661,51790,54587,54060,52906,55253,54796,52876,54252,54195,54419,53877,51724,55896,54396
-2019F,PA,ESRPP,979,1034,1082,1134,1193,1274,1377,1491,1640,1792,1948,2044,2159,2306,2303,2325,2425,2539,2590,2642,2677,2674,2657,2731,2804,2777,2906,3028,3193,3214,3206,3305,3257,3420,3472,3509,3571,3499,3505,3598,3664,3743,3952,4012,4082,4310,4140,4345,4286,4177,4347,4299,4141,4245,4237,4255,4213,4043,4364,4250
-2019F,PA,ESTCP,39217,40754,43125,45793,49816,53530,57903,60562,66168,71745,75620,78609,83731,90038,89416,87736,92135,95554,97564,100581,99744,100864,94582,96670,101444,100152,102527,107140,112891,113900,114751,116337,116288,119981,123045,126251,127623,128076,130206,128883,133845,135272,139820,140369,143501,148273,146150,151573,150401,143747,148964,148757,144710,146254,146688,146344,145328,142991,148977,145580
-2019F,PA,ESTPP,3462,3577,3798,4008,4325,4607,4964,5185,5636,6111,6401,6613,7031,7572,7532,7369,7744,8034,8213,8461,8404,8506,7985,8166,8586,8509,8701,9071,9530,9599,9640,9709,9651,9900,10114,10350,10443,10474,10633,10509,10896,10999,11339,11343,11563,11909,11682,12064,11925,11348,11719,11670,11333,11444,11467,11442,11364,11176,11631,11374
-2019F,PA,ESTXP,39217,40754,43125,45793,49816,53530,57903,60562,66168,71745,75620,78609,83731,90038,89416,87736,92135,95554,97564,100581,99744,100864,94582,96670,101444,100152,102527,107140,112891,113900,114751,116337,116288,119981,123045,126251,127623,128076,130206,128883,133845,135272,139820,140369,143501,148273,146150,151573,150401,143747,148964,148757,144710,146254,146688,146344,145328,142991,148977,145580
-2019F,PA,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,FSICP,0,0,0,482,461,536,596,526,549,535,645,807,708,606,682,801,837,840,932,584,626,312,357,443,578,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,HLACP,20,22,33,44,52,60,78,79,77,95,134,160,161,176,179,157,187,216,237,172,147,234,216,257,363,249,191,152,176,171,157,188,189,196,360,188,148,117,127,97,68,88,98,166,155,197,179,130,289,210,41,40,42,36,34,55,53,117,67,53
-2019F,PA,HLCCP,364,372,407,442,496,436,501,468,474,573,612,603,655,652,629,682,717,745,685,446,514,591,575,684,739,744,640,726,764,817,819,951,1006,919,935,999,1088,1071,1128,1208,1452,1126,1299,1617,1744,1427,1584,1736,1681,1784,1784,2089,1679,1980,2143,2038,2118,1881,2189,2088
-2019F,PA,HLICP,992,1172,1188,1323,1387,1383,1511,1521,2054,2198,2396,2542,3033,3261,3220,3439,3604,3931,4618,6717,5238,5251,4862,4467,5728,4624,5911,5604,3152,3825,3177,3938,5330,2222,1874,1687,1977,1272,1224,1188,1766,2391,2153,5164,5010,6649,7372,6933,8517,7851,7706,8050,5664,5472,5597,5405,5526,5460,5539,5413
-2019F,PA,HLRCP,959,980,1073,1166,1306,1151,1321,1233,1249,1511,1612,1591,1728,1719,1659,1799,1891,1964,1805,1176,1355,1559,1516,1802,1948,1961,1687,1915,2013,2154,2160,2508,2651,2422,2465,2635,2867,2824,2973,3184,3829,2968,3424,4285,4128,3937,3897,4509,5181,5617,5418,5085,4334,4865,5196,4746,4402,4600,5407,6184
-2019F,PA,HLTCP,2334,2545,2700,2976,3241,3030,3411,3301,3854,4376,4754,4895,5577,5808,5687,6077,6399,6857,7345,8511,7255,7635,7170,7210,8778,7577,8430,8398,6105,6967,6313,7585,9176,5759,5634,5509,6080,5283,5452,5677,7115,6573,6974,11231,11037,12209,13033,13307,15667,15461,14950,15263,11718,12353,12969,12244,12100,12057,13203,13737
-2019F,PA,HLTXP,2334,2545,2700,2976,3241,3030,3411,3301,3854,4376,4754,4895,5577,5808,5687,6077,6399,6857,7345,8511,7255,7635,7170,7210,8778,7577,8430,8398,6105,6967,6313,7585,9176,5759,5634,5509,6080,5283,5452,5677,7115,6573,6974,11231,11037,12209,13033,13307,15667,15461,14950,15263,11718,12353,12969,12244,12100,12057,13203,13737
-2019F,PA,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,HYEGP,1810,1472,1504,1266,1267,1313,1425,1899,1168,902,1354,772,1533,1371,1392,1575,1415,1205,759,1221,734,659,1828,1169,1446,971,1452,1131,705,1440,2869,1920,2578,2376,2750,2030,3012,2249,2381,1947,2290,1650,2211,3346,3155,2232,2844,2236,2549,2683,2332,3217,2242,2525,2641,2604,2375,3123,4262,3503
-2019F,PA,HYICP,16,17,15,14,15,15,18,15,14,15,12,6,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,HYTCP,1826,1489,1519,1280,1281,1329,1443,1914,1182,916,1366,779,1533,1372,1393,1576,1416,1205,760,1222,734,660,1829,1170,1447,972,1453,1132,705,1440,2869,1920,2578,2376,2750,2030,3012,2249,2381,1947,2290,1650,2211,3346,3155,2232,2844,2236,2549,2683,2332,3217,2242,2525,2641,2604,2375,3123,4262,3503
-2019F,PA,HYTXP,16,17,15,14,15,15,18,15,14,15,12,6,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,PA,JFACP,1036,1448,1822,2103,2343,3406,3826,5693,7070,8611,9083,8552,8449,9067,8825,8469,8436,8498,8945,9890,10148,9017,8624,9152,10465,10126,9915,10530,11705,9661,12042,11355,10932,11787,11748,12313,11831,14819,16731,15943,19009,18877,17006,17473,16381,16826,16465,15503,14435,12476,13188,12903,12825,13167,13196,13170,13212,13631,13973,14487
-2019F,PA,JFTCP,1036,1448,1822,2103,2343,3406,3826,5693,7070,8611,9083,8552,8669,9225,8954,8548,8436,8498,8958,9890,10148,9019,8625,9152,10465,10126,9915,10530,11705,9661,12042,11355,10932,11787,11748,12313,11831,14819,16731,15943,19009,18877,17006,17473,16381,16826,16465,15503,14435,12476,13188,12903,12825,13167,13196,13170,13212,13631,13973,14487
-2019F,PA,JFTXP,1036,1448,1822,2103,2343,3406,3826,5693,7070,8611,9083,8552,8449,9067,8825,8469,8436,8498,8945,9890,10148,9017,8624,9152,10465,10126,9915,10530,11705,9661,12042,11355,10932,11787,11748,12313,11831,14819,16731,15943,19009,18877,17006,17473,16381,16826,16465,15503,14435,12476,13188,12903,12825,13167,13196,13170,13212,13631,13973,14487
-2019F,PA,KSCCP,241,242,253,249,235,240,254,309,291,301,294,318,374,282,221,177,190,160,145,178,193,183,236,365,489,359,394,328,421,284,150,131,102,173,334,528,556,323,284,344,407,501,388,394,409,460,420,186,58,90,133,35,12,10,37,25,39,25,32,38
-2019F,PA,KSICP,503,601,540,535,720,858,697,725,780,627,589,743,828,460,894,1198,1206,555,711,719,208,476,502,211,405,345,446,441,353,253,127,143,142,227,254,169,150,151,186,201,216,280,98,76,79,117,72,82,26,29,50,33,10,11,24,12,14,10,14,11
-2019F,PA,KSRCP,2763,2772,2899,2859,2691,2753,2907,3539,3333,3445,3368,3650,4284,3232,2528,2023,2172,1836,1661,2040,2362,1992,2194,1260,3513,2853,2973,2150,2920,2534,1377,1508,1585,1655,1490,2064,2411,2541,2906,2518,2790,2884,1985,1597,1941,1822,1420,945,492,686,743,454,190,203,358,238,267,162,164,186
-2019F,PA,KSTCP,3508,3616,3692,3644,3646,3851,3858,4573,4404,4372,4251,4711,5486,3975,3642,3398,3567,2551,2517,2937,2763,2651,2932,1836,4407,3557,3813,2918,3693,3071,1654,1781,1828,2056,2078,2760,3116,3015,3375,3064,3413,3665,2471,2067,2429,2399,1911,1213,576,804,925,522,212,224,419,275,321,198,209,236
-2019F,PA,KSTXP,3508,3616,3692,3644,3646,3851,3858,4573,4404,4372,4251,4711,5486,3975,3642,3398,3567,2551,2517,2937,2763,2651,2932,1836,4407,3557,3813,2918,3693,3071,1654,1781,1828,2056,2078,2760,3116,3015,3375,3064,3413,3665,2471,2067,2429,2399,1911,1213,576,804,925,522,212,224,419,275,321,198,209,236
-2019F,PA,LUACP,1343,1307,1113,1113,1169,1121,1165,1172,1287,1302,1327,1320,1413,1174,1125,1094,1215,1312,1408,1474,1312,1259,1148,1202,1281,1194,1168,1320,1273,1306,1344,1202,1226,1248,1304,1282,1244,1314,1376,1390,1369,1255,1240,1146,1161,1155,1125,1162,1079,970,904,872,823,849,866,908,827,760,726,700
-2019F,PA,LUICP,1432,1394,1754,1754,1842,2419,2513,2104,2311,2472,2518,2309,2472,3621,3468,2255,2505,2755,2958,3096,2756,2644,2411,2524,2691,2508,2453,2773,2674,2743,2822,2525,2574,2621,2740,2693,2613,2761,2890,2920,2876,2635,2604,2408,2439,2426,2364,2441,2266,2038,974,947,878,943,1054,1164,1149,1065,1006,984
-2019F,PA,LUTCP,2775,2701,2867,2866,3010,3540,3678,3276,3598,3774,3844,3629,3886,4795,4593,3349,3720,4066,4367,4569,4069,3902,3558,3726,3973,3703,3620,4093,3947,4048,4166,3727,3800,3869,4044,3975,3857,4075,4266,4310,4246,3890,3844,3554,3600,3582,3490,3604,3345,3008,1879,1819,1701,1792,1920,2072,1976,1826,1732,1684
-2019F,PA,LUTXP,2775,2701,2867,2866,3010,3540,3678,3276,3598,3774,3844,3629,3886,4795,4593,3349,3720,4066,4367,4569,4069,3902,3558,3726,3973,3703,3620,4093,3947,4048,4166,3727,3800,3869,4044,3975,3857,4075,4266,4310,4246,3890,3844,3554,3600,3582,3490,3604,3345,3008,1879,1819,1701,1792,1920,2072,1976,1826,1732,1684
-2019F,PA,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2105,-1862,-1326,-642,-1887,-2596,-1184,-549,533,509,-242,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,MGACP,76565,75136,77504,78536,79225,81658,84063,88030,93762,94899,98082,103900,112575,111839,106340,106357,115655,118036,119584,114074,107026,102264,100522,101281,101209,100255,102385,104829,108871,107119,105586,105272,105729,108924,108538,111261,112697,113608,115066,116491,117185,118968,121261,120907,122535,121878,120499,122337,119724,121181,120515,118396,116448,117184,115666,112768,113617,114497,111077,111574
-2019F,PA,MGCCP,2084,2190,2211,2329,2494,2585,2706,2473,2412,2449,2455,2109,2414,1874,1316,1310,961,1205,1564,975,313,669,490,667,393,448,459,486,472,452,701,555,334,87,87,88,87,284,929,188,146,127,158,158,111,90,91,91,91,91,90,90,89,92,88,2765,2786,2831,2878,2897
-2019F,PA,MGICP,1456,1613,1643,1507,1510,1480,1392,1317,1322,1289,1181,1327,1153,1142,1167,1098,1093,1022,830,1108,586,1218,1122,732,558,1276,1259,1314,1386,1343,1180,1254,1342,959,908,934,855,887,872,741,703,1363,1432,1510,1823,1841,2112,1542,837,840,2048,1241,2073,2133,1716,1494,1485,1503,1523,1521
-2019F,PA,MGTCP,80104,78939,81358,82372,83228,85723,88161,91820,97497,98637,101718,107336,116142,114856,108823,108765,117709,120263,121978,116157,107925,104151,102134,102680,102159,101979,104103,106628,110729,108915,107467,107081,107406,109970,109532,112282,113639,114779,116867,117420,118034,120458,122851,122575,124468,123808,122702,123970,120652,122112,122653,119726,118610,119409,117470,117027,117887,118831,115478,115992
-2019F,PA,MGTXP,80104,78939,81358,82372,83228,85723,88161,91820,97497,98637,101718,107336,116142,114856,108823,108765,117709,120263,121978,116157,107925,104151,102134,102680,102159,101979,104103,106628,110729,108915,107467,107081,107406,109970,109532,112282,113639,114779,116867,117420,118034,120458,122851,122575,124468,123808,122702,123970,120652,122112,122653,119726,118610,119409,117470,117027,117887,118831,115478,115992
-2019F,PA,MSICP,243,271,298,158,158,154,136,127,142,132,118,98,101,125,160,216,776,877,763,706,670,855,750,672,577,581,377,378,459,422,380,420,276,261,292,268,220,242,294,277,295,285,306,288,259,258,265,260,277,296,310,321,315,392,419,433,438,447,445,405
-2019F,PA,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,NGACP,15109,12664,15151,16849,18254,19344,20970,23612,23513,25242,26666,27899,27555,22385,20919,17697,21574,23237,24461,26227,29486,33757,31166,29206,34498,33005,33029,36041,36990,27338,34397,34132,38605,36360,38035,37977,40785,39200,32801,36932,38852,33428,37568,34075,29572,31053,27730,35158,37513,41683,47763,51517,37473,38137,42486,43593,40796,44293,47042,42636
-2019F,PA,NGCCP,56134,58804,61825,64034,64688,67545,73738,82702,87620,95720,99339,110014,122518,116265,102495,98991,124517,111885,110620,111498,118462,128561,125557,115222,126211,115329,114442,114800,127382,132421,125673,125546,134254,131776,138473,143735,154642,144084,130996,143256,145319,136468,136202,149458,142608,144970,130328,145852,144603,144092,141699,141173,126936,149114,159636,152091,142724,145912,165119,161624
-2019F,PA,NGEIP,5987,2620,1934,4109,4737,1221,1203,2399,4355,7173,9354,9747,5474,2537,7825,1213,480,323,439,1862,2865,3267,1568,1654,2615,1570,724,1993,2649,11873,14945,7324,12923,22937,28903,39436,25629,20430,30240,31353,20597,22632,50251,41238,76186,80640,100946,143954,141011,210542,245559,306266,393775,362349,388056,437976,501116,526521,538527,672506
-2019F,PA,NGICP,212554,217767,225582,250837,269531,285285,306562,289948,316443,342779,340007,350126,367922,349579,312432,263207,276508,255552,252087,312649,336576,333317,263915,245590,248123,230874,206896,232148,233602,247090,241378,234877,240089,245628,239627,252480,246180,239858,232082,235766,235327,203417,212439,200201,200021,189828,194937,196131,197502,185675,220702,247341,282481,340236,399377,386292,400851,414786,457048,496696
-2019F,PA,NGRCP,232046,237276,245017,250241,251708,255609,274683,279817,285978,295027,297022,304327,305492,292531,271877,272634,290439,277340,286163,288582,288326,285789,272433,252280,265274,244889,254863,251175,268038,270742,240016,242728,266528,268996,268405,262126,278606,262494,217929,241468,262788,238849,239123,265020,247788,245099,205813,231305,229254,227714,223642,219446,197313,231861,254816,235669,215512,218734,252722,236631
-2019F,PA,NGTCP,521830,529131,549509,586070,608918,629004,677156,678478,717909,765941,772388,802113,828961,783297,715548,653742,713518,668337,673770,740818,775715,784691,694639,643952,676721,625667,609954,636157,668661,689464,656409,644606,692398,705697,713443,735754,745844,706066,644047,688774,702883,634795,675582,689993,696174,691591,659754,752401,749883,809706,879365,965743,1037978,1121697,1244371,1255621,1300999,1350246,1460458,1610093
-2019F,PA,NGTPP,46.1,46.4,48.4,51.3,52.9,54.1,58.1,58.1,61.1,65.2,65.4,67.5,69.6,65.9,60.3,54.9,60,56.2,56.7,62.3,65.4,66.2,58.6,54.4,57.3,53.2,51.8,53.9,56.4,58.1,55.1,53.8,57.5,58.2,58.6,60.3,61,57.7,52.6,56.2,57.2,51.6,54.8,55.8,56.1,55.5,52.7,59.9,59.5,63.9,69.2,75.8,81.3,87.8,97.3,98.2,101.7,105.5,114,125.8
-2019F,PA,NGTXP,515843,526511,547575,581961,604181,627783,675953,676079,713554,758768,763034,792366,823487,780760,707723,652529,713038,668014,673331,738956,772850,781424,693071,642298,674106,624097,609230,634164,666012,677591,641464,637282,679476,682760,684539,696318,720214,685636,613808,657421,682286,612162,625332,648754,619989,610951,558808,608447,608872,599164,633806,659477,644203,759348,856315,817645,799883,823725,921931,937587
-2019F,PA,NUEGP,230,305,320,355,25,313,525,603,468,415,465,445,288,361,6998,15869,16425,17821,22329,18796,12091,14276,16472,14718,21564,26232,39820,34982,37862,39166,57787,57476,60133,59331,67207,66462,68672,67655,61149,71127,73771,73731,76089,74361,77459,76289,75298,77376,78658,77328,77828,76147,75174,78714,78715,80517,82924,83200,83477,83230
-2019F,PA,NUETP,230,305,320,355,25,313,525,603,468,415,465,445,288,361,6998,15869,16425,17821,22329,18796,12091,14276,16472,14718,21564,26232,39820,34982,37862,39166,57787,57476,60133,59331,67207,66462,68672,67655,61149,71127,73771,73731,76089,74361,77459,76289,75298,77376,78658,77328,77828,76147,75174,78714,78715,80517,82924,83200,83477,83230
-2019F,PA,OPICP,8752,9321,9130,8888,10615,11111,10736,10079,10873,11261,11283,11122,11579,12022,11815,12231,12447,13003,13556,12944,11815,7109,7222,9020,9371,7937,7635,9221,10998,11280,11313,9440,11525,9490,10252,10549,9868,12368,10717,11190,9681,12343,11894,12709,12274,13017,13686,13347,12012,11474,12199,11925,7920,10596,9956,10025,9821,10444,10186,7944
-2019F,PA,OPTCP,8752,9321,9130,8888,10615,11111,10736,10079,10873,11261,11283,11122,11579,12022,11815,12231,12447,13003,13556,12944,11815,7109,7222,9020,9371,7937,7635,9221,10998,11280,11313,9440,11525,9490,10252,10549,9868,12368,10717,11190,9681,12343,11894,12709,12274,13017,13686,13347,12012,11474,12199,11925,7920,10596,9956,10025,9821,10444,10186,7944
-2019F,PA,OPTXP,8752,9321,9130,8888,10615,11111,10736,10079,10873,11261,11283,11122,11579,12022,11815,12231,12447,13003,13556,12944,11815,7109,7222,9020,9371,7937,7635,9221,10998,11280,11313,9440,11525,9490,10252,10549,9868,12368,10717,11190,9681,12343,11894,12709,12274,13017,13686,13347,12012,11474,12199,11925,7920,10596,9956,10025,9821,10444,10186,7944
-2019F,PA,P1ICP,17976,18614,18852,18870,21180,23354,22606,22003,22893,23695,23465,23629,24703,25519,26040,24391,25812,26126,26516,26072,22987,17967,18730,20758,20342,19794,21028,23462,23990,25303,27019,24178,25482,23517,25846,26762,24162,26899,27259,25131,25625,29540,26927,28739,29439,30674,30102,29370,27039,26299,24558,22384,18499,20568,21446,22411,21902,22597,21356,17780
-2019F,PA,P1TCP,24318,25353,24982,25354,27214,29391,28437,28017,28745,29509,29116,29540,31373,30781,30455,28111,29815,29870,31426,30731,27507,22016,22964,24746,26715,25190,26705,28492,30022,30738,31040,28121,29579,27675,30214,32071,29857,32502,33278,30308,30372,34326,31272,32814,34096,34745,33463,31760,28904,28254,26444,23860,19645,21737,22804,23685,23109,23618,22351,18789
-2019F,PA,P1TXP,24318,25353,24982,25354,27214,29391,28437,28017,28745,29509,29116,29540,31373,30781,30455,28111,29815,29870,30112,30106,27191,21679,22505,23795,25811,24409,25814,27407,28792,29603,30035,27134,28557,26743,29111,30761,28495,31184,31951,29589,30346,34303,30660,31971,33045,34211,33284,31760,28768,28114,26444,23860,19645,21737,22804,23685,23108,23618,22351,18789
-2019F,PA,PAACP,93625,92544,94992,98695,100425,101622,105294,111293,120536,122364,127497,132742,142794,145999,140537,138857,150887,154102,155822,152208,145306,136939,129491,131781,133591,134508,139588,147047,152726,145580,148044,147629,149740,154842,156057,159162,157831,164771,170060,171364,176473,177180,177435,175456,181037,183546,183371,182120,173586,172089,171600,170315,169736,169742,168772,164544,162640,163763,162727,164418
-2019F,PA,PACCP,12566,12072,12837,13167,13405,14096,14411,13269,13394,13461,14045,13726,14395,14162,12545,11290,12039,12649,12137,10394,8399,8193,7128,8953,10422,8472,9133,9194,9198,10569,9104,8574,8607,8690,10414,9170,9186,7514,7535,7030,8135,8248,9675,9192,9088,8727,8084,7322,8226,6369,6189,5900,4767,5306,5723,8094,7616,7848,8629,8486
-2019F,PA,PAEIP,3232,3255,2998,3370,3198,3943,6721,8420,10630,20741,26460,26289,27053,21272,23252,13691,17600,25151,31240,22380,19780,17405,11850,20182,16944,13827,15332,13882,13883,15926,9795,7923,5516,9509,11307,7545,7914,6034,8517,6471,7363,6365,5115,8012,7453,8865,1779,2353,1632,1508,1143,902,608,668,1231,1043,587,519,1362,385
-2019F,PA,PAICP,58762,57635,59030,59391,62192,67291,67760,63380,63111,63221,64370,64838,67026,71359,70128,61902,68376,72581,67681,67881,51494,42295,41825,36083,39272,34753,40650,44733,40791,43072,44600,40008,43592,37451,38422,36663,34748,35464,35640,33997,35664,40892,37082,42406,43635,46760,48588,46991,46212,41236,40894,39419,34318,37020,38762,38268,35424,36919,36017,32416
-2019F,PA,PARCP,28824,28419,31860,32160,31036,32294,31741,34147,35311,35210,36222,36623,39924,39271,36117,35409,38865,38999,36568,35607,31556,27753,24412,23765,29811,28999,25694,25844,27577,29194,23744,24252,24747,26383,25977,25006,25983,24534,22112,24877,27530,26715,25913,28808,28495,25654,22219,22593,32205,19608,20954,19502,16797,18828,21352,20047,17358,17139,20519,17946
-2019F,PA,PATCP,197008,193925,201717,206782,210256,219246,225928,230507,242981,254998,268595,274219,291193,292063,282578,261149,287768,303482,303447,288469,256535,232585,214706,220764,230040,220558,230397,240699,244174,244341,235286,228386,232202,236874,242176,237546,235662,238317,243864,243739,255164,259400,255219,263875,269710,273552,264041,261379,261861,240810,240781,236038,226226,231564,235840,231995,223624,226188,229253,223651
-2019F,PA,PATPP,17.4,17,17.8,18.1,18.3,18.9,19.4,19.7,20.7,21.7,22.7,23.1,24.5,24.6,23.8,21.9,24.2,25.5,25.5,24.3,21.6,19.6,18.1,18.6,19.5,18.7,19.6,20.4,20.6,20.6,19.8,19.1,19.3,19.5,19.9,19.5,19.3,19.5,19.9,19.9,20.8,21.1,20.7,21.3,21.7,22,21.1,20.8,20.8,19,18.9,18.5,17.7,18.1,18.4,18.1,17.5,17.7,17.9,17.5
-2019F,PA,PATXP,193776,190670,198719,203412,207058,215303,219207,222088,232351,234256,242135,247929,264139,270791,259327,247457,270168,278331,272207,266090,236754,215180,202857,200582,213096,206731,215065,226817,230292,228415,225492,220463,226685,227366,230869,230001,227748,232283,235347,237269,247802,253035,250104,255863,262256,264687,262262,259026,260229,239302,239637,235136,225618,230896,234610,230952,223038,225669,227891,223266
-2019F,PA,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,625,316,337,459,950,904,782,891,1085,1230,1135,1005,986,1022,932,1103,1310,1363,1318,1327,719,26,23,612,844,1051,534,179,0,137,140,0,0,0,0,0,0,1,0,0,0
-2019F,PA,PCICP,2558,2558,2569,2758,2656,2764,2761,2703,2335,2905,2475,2795,2670,2440,3185,3045,3350,3245,2960,2960,3060,2315,3196,5019,3813,4091,4538,4456,4493,4309,5292,5878,5205,5092,4991,5543,4059,4658,5577,5824,5487,5588,5450,5724,5864,5926,5193,5609,5675,6086,4277,3337,3944,3736,4032,4092,3909,3917,3586,2015
-2019F,PA,PCTCP,2558,2558,2569,2758,2656,2764,2761,2703,2335,2905,2475,2795,2670,2440,3185,3045,3350,3245,4274,3585,3376,2652,3654,5969,4717,4872,5429,5541,5722,5444,6296,6864,6227,6024,6093,6854,5422,5976,6904,6543,5513,5611,6062,6568,6915,6460,5372,5609,5812,6226,4277,3337,3944,3736,4032,4092,3910,3917,3586,2015
-2019F,PA,PCTXP,2558,2558,2569,2758,2656,2764,2761,2703,2335,2905,2475,2795,2670,2440,3185,3045,3350,3245,2960,2960,3060,2315,3196,5019,3813,4091,4538,4456,4493,4309,5292,5878,5205,5092,4991,5543,4059,4658,5577,5824,5487,5588,5450,5724,5864,5926,5193,5609,5675,6086,4277,3337,3944,3736,4032,4092,3909,3917,3586,2015
-2019F,PA,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,40,42,36,34,55,53,117,67,53
-2019F,PA,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1784,2089,1679,1980,2143,2038,2118,1881,2189,2088
-2019F,PA,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1237,1581,1499,1307,1432,1239,1361,1294,1374,1247
-2019F,PA,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5418,5085,4334,4865,5196,4746,4402,4600,5407,6184
-2019F,PA,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8481,8794,7553,8188,8804,8078,7934,7892,9037,9572
-2019F,PA,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8481,8794,7553,8188,8804,8078,7934,7892,9037,9572
-2019F,PA,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6469,6469,4165,4165,4165,4165,4165,4165,4165,4165
-2019F,PA,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6469,6469,4165,4165,4165,4165,4165,4165,4165,4165
-2019F,PA,RFACP,5005,4055,5577,6290,6718,4554,5129,5716,5789,4618,5548,6024,5109,6315,6048,5788,6227,6346,5007,4755,4796,5177,1624,1638,1599,2139,4561,5898,5470,4083,5584,5679,6916,6002,5904,4769,3326,4579,5481,5003,4699,2446,2878,2959,4003,4600,4186,3419,3536,2397,798,448,1192,1005,569,330,421,196,202,269
-2019F,PA,RFCCP,5514,4980,5118,5256,5481,5899,6167,4913,4875,4879,5254,5239,5057,5388,4828,3630,4122,4420,3989,3165,1521,1590,1106,1529,2087,1414,946,1202,1147,905,794,629,875,1110,1364,1221,1304,1029,598,540,634,500,376,564,609,626,287,389,241,245,91,40,26,11,13,9,20,1,1,0
-2019F,PA,RFEIP,2747,2767,2549,2864,2719,3351,5713,7157,9035,17630,22502,22013,22105,17686,17428,10273,14668,21567,26234,19797,17226,15334,9949,17049,13967,11622,13005,11231,10980,12687,6650,5966,3667,7586,8230,4836,5037,3661,5635,4426,4744,5175,3264,5822,5331,7058,949,1516,701,776,408,230,107,97,228,0,0,0,9,7
-2019F,PA,RFICP,29692,27189,27700,27507,28048,29434,30670,26651,26191,25218,27132,27448,27881,29864,28339,21941,25286,27630,23133,18744,11555,7777,8190,3888,5308,2624,5105,5547,4435,5563,5734,4441,4159,4246,4064,2888,3292,2227,2219,1903,1994,1600,1316,2111,1918,1915,1709,1300,1045,750,679,696,205,139,78,90,123,95,76,92
-2019F,PA,RFTCP,42958,38991,40943,41917,42965,43238,47678,44436,45890,52345,60436,60724,60152,59253,56643,41631,50302,59962,58363,46461,35099,29878,20869,24104,22962,17799,23616,23878,22033,23239,18762,16715,15617,18944,19562,13715,12959,11495,13933,11872,12071,9721,7834,11456,11859,14200,7131,6623,5523,4168,1976,1415,1529,1251,887,428,563,292,288,369
-2019F,PA,RFTXP,40211,36224,38394,39053,40247,39886,41965,37279,36855,34715,37934,38711,38047,41567,39215,31359,35635,38396,32129,26665,17872,14545,10920,7055,8995,6177,10611,12647,11053,10552,12112,10749,11950,11358,11332,8879,7921,7834,8298,7446,7327,4546,4570,5634,6529,7141,6181,5108,4822,3392,1568,1184,1423,1154,659,428,563,292,279,362
-2019F,PA,SGICP,8186,8731,8545,7972,7868,8123,8015,7729,8351,8598,8421,7841,8243,8624,8334,8928,8667,9125,9331,9105,8063,8712,9347,9271,9659,9838,11228,11353,12002,12205,12217,11655,11937,10613,10669,11711,9091,11730,11451,11345,11240,11434,11227,11611,11667,11700,11774,11419,10941,11125,11195,10769,6991,8613,8441,8253,7965,8149,8239,5639
-2019F,PA,SNICP,0,0,0,0,1866,2020,1731,1441,1544,1693,1795,1983,2124,2148,2131,1832,1690,1763,2120,2146,2064,1083,1009,1185,1585,1218,1157,1290,1016,956,954,1038,1233,1233,956,835,757,734,1090,1477,989,781,1019,801,508,622,845,942,1024,557,315,273,178,1323,1404,1313,1238,1311,1203,1250
-2019F,PA,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,32,81,104,100,113,113,123,144,155,169
-2019F,PA,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,18,26,55,50,52,61,56,50,70
-2019F,PA,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,38,54,57,63,68,68,64,66,70
-2019F,PA,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,30,57,72,83,88,93,109,163,207,265
-2019F,PA,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,11,81,194,256,295,314,325,361,427,479,575
-2019F,PA,TPOPP,11329,11392,11355,11424,11519,11620,11664,11681,11741,11741,11813,11886,11908,11891,11871,11906,11897,11894,11879,11888,11868,11859,11845,11838,11815,11771,11783,11811,11846,11866,11903,11982,12049,12120,12166,12198,12220,12228,12246,12264,12284,12299,12331,12375,12411,12450,12511,12564,12612,12667,12711,12747,12769,12780,12792,12790,12788,12795,12809,12799
-2019F,PA,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2234,-2769,-1607,-2758,-2849,-2906,-3013,-2330,-3242,-3152,-3789,-3015,-3027,-2132,-2731,-735,-859,-2576,-2341,-3207,-606,-1074,-392,-587,22,549,502,-412,-613,219,419,292,96,-462,-101,46,424,170,539
-2019F,PA,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,WXICP,322,319,288,276,261,278,259,255,288,303,304,392,404,519,508,454,477,398,411,402,393,441,345,375,371,380,370,396,411,405,403,358,380,408,414,414,483,434,421,372,328,391,346,334,331,338,247,207,181,116,161,143,145,174,156,130,136,113,138,116
-2019F,PA,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,58,112,306,284,361,470,729,1075,1854,1794,2129,3352,3565,3353,3476,3591,3567,3250
-2019F,PA,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,PA,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,58,112,306,284,361,470,729,1075,1854,1794,2129,3352,3565,3353,3476,3591,3567,3250
-2019F,PA,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,ARICP,735,882,843,737,1000,907,831,695,1059,983,937,1102,799,1306,1151,1330,1282,1429,1295,1014,1041,996,1203,1212,1336,2974,1479,1773,1741,1605,1634,461,1502,819,1256,990,337,274,282,302,203,197,179,328,177,335,306,0,1259,810,933,692,787,1012,1025,966,809,838,808,717
-2019F,RI,ARTCP,735,882,843,737,1000,907,831,695,1059,983,937,1102,799,1306,1151,1330,1282,1429,1295,1014,1041,996,1203,1212,1336,2974,1479,1773,1741,1605,1634,461,1502,819,1256,990,337,274,282,302,203,197,179,328,177,335,306,0,1259,810,933,692,787,1012,1025,966,809,838,808,717
-2019F,RI,ARTXP,735,882,843,737,1000,907,831,695,1059,983,937,1102,799,1306,1151,1330,1282,1429,1295,1014,1041,996,1203,1212,1336,2974,1479,1773,1741,1605,1634,461,1502,819,1256,990,337,274,282,302,203,197,179,328,177,335,306,0,1259,810,933,692,787,1012,1025,966,809,838,808,717
-2019F,RI,AVACP,19,22,60,47,49,63,89,89,148,149,148,157,181,221,139,285,226,157,200,241,269,23,28,23,21,30,35,42,46,46,42,30,30,8,10,22,37,11,9,11,13,14,7,7,12,12,22,22,11,7,5,5,5,4,9,9,9,9,8,8
-2019F,RI,AVTCP,19,22,60,47,49,63,89,89,148,149,148,157,181,221,139,285,226,157,200,241,269,23,28,23,21,30,35,42,46,46,42,30,30,8,10,22,37,11,9,11,13,14,7,7,12,12,22,22,11,7,5,5,5,4,9,9,9,9,8,8
-2019F,RI,AVTXP,19,22,60,47,49,63,89,89,148,149,148,157,181,221,139,285,226,157,200,241,269,23,28,23,21,30,35,42,46,46,42,30,30,8,10,22,37,11,9,11,13,14,7,7,12,12,22,22,11,7,5,5,5,4,9,9,9,9,8,8
-2019F,RI,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,6,5,6,5,16,13,68,69,76,93,101,66,46
-2019F,RI,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,6,5,6,5,16,13,68,69,76,93,101,66,46
-2019F,RI,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,CLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,CLCCP,8,8,7,7,6,6,5,4,4,4,3,4,3,4,3,3,3,3,2,2,2,5,7,6,6,4,4,3,2,2,4,3,4,2,3,3,3,3,2,1,2,2,3,3,3,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,CLEIP,574,516,516,462,382,403,375,229,111,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,CLICP,4,3,3,4,4,4,3,3,3,2,2,1,1,1,1,2,2,1,2,3,4,2,0,0,2,4,23,1,172,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,CLOCP,4,3,3,4,4,4,3,3,3,2,2,1,1,1,1,2,2,1,2,3,4,2,0,0,2,4,23,1,172,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,CLRCP,12,11,10,9,9,7,6,6,5,5,4,4,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,CLTCP,598,538,536,481,401,419,389,242,123,10,10,9,7,7,40,7,6,5,5,5,7,8,8,7,9,9,28,5,175,27,5,4,5,3,3,3,3,3,2,2,2,2,3,4,3,3,2,2,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,CLTXP,25,22,20,19,19,17,14,13,12,10,10,9,7,7,6,7,6,5,5,5,7,8,8,7,9,9,28,5,175,27,5,4,5,3,3,3,3,3,2,2,2,2,3,4,3,3,2,2,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,DFACP,838,517,556,493,539,393,488,466,597,625,604,745,686,739,935,788,815,686,586,623,675,695,733,853,912,334,1182,1434,1244,1592,1154,1407,1149,1233,1271,1328,1290,1941,1397,1517,1364,1395,1477,1483,1491,1527,1609,1930,1474,1507,1631,1652,1518,1545,1841,1646,1251,1425,1595,1656
-2019F,RI,DFCCP,1381,1336,1297,1294,1085,1211,1112,1223,1301,1437,1464,1538,1599,1515,1370,1353,1470,1447,1364,1243,617,381,433,577,679,493,899,1017,925,866,799,898,701,682,900,741,808,742,620,509,629,630,662,1010,859,686,609,688,577,853,692,528,470,545,849,542,381,356,381,300
-2019F,RI,DFEIP,13,13,13,15,15,16,19,37,44,57,56,51,41,44,49,26,9,8,15,21,28,19,18,19,26,20,28,27,42,35,19,58,17,24,48,24,137,72,47,43,39,43,31,29,22,27,25,35,38,23,23,23,29,61,104,143,43,79,113,13
-2019F,RI,DFICP,367,363,372,391,314,431,435,555,628,681,672,608,598,543,470,440,477,492,485,393,415,321,323,364,428,275,320,620,310,347,279,265,327,308,340,280,294,342,249,235,165,120,151,243,251,204,216,164,96,162,149,124,102,86,115,95,117,163,192,183
-2019F,RI,DFRCP,5507,5326,5170,5161,4325,4828,4433,4877,5186,5730,5835,6131,6376,6040,5464,5395,5861,5769,5437,4956,3297,2567,2466,2893,3402,3818,3343,3650,4124,3533,3035,3111,3803,3498,3912,3466,3479,3607,3265,3161,3262,3562,3355,3818,3892,3733,2870,2963,2848,3045,2930,2698,2659,2816,2743,2997,1892,1795,2502,2054
-2019F,RI,DFTCP,8106,7554,7407,7354,6277,6879,6487,7160,7756,8530,8631,9073,9301,8881,8288,8003,8633,8401,7887,7237,5032,3983,3972,4706,5448,4940,5771,6748,6644,6373,5285,5739,5996,5745,6471,5839,6008,6705,5578,5465,5459,5750,5678,6583,6515,6177,5329,5780,5033,5590,5424,5024,4777,5053,5653,5423,3684,3818,4783,4206
-2019F,RI,DFTXP,8093,7541,7395,7340,6262,6863,6468,7122,7711,8473,8575,9022,9259,8837,8239,7977,8624,8393,7872,7215,5004,3965,3954,4687,5422,4920,5744,6721,6602,6338,5267,5681,5980,5721,6423,5815,5871,6632,5531,5422,5420,5707,5647,6554,6493,6150,5304,5744,4995,5567,5402,5002,4748,4992,5549,5280,3641,3740,4670,4193
-2019F,RI,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,362,0,0,38,20,53,89,138,52,51,43,1,0,0,0,0,0,0,0,0
-2019F,RI,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,6,9,678,96,37,537,902,1076,1179,1276,1325,1699,1766,1934,1947,766,326,144,322,407,409,553,654,787,500,608,0,153,175,163,142,196,139,0
-2019F,RI,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6047,3709,1506,1637,1458,1705,-1627,-1850,-1741,-272,629,-86,1033,2954,3614,2564,2391,1238,488,-205,207,-1053,6,1936,1712,1098,1366,236,-285,349
-2019F,RI,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,6,9,678,96,37,537,902,1076,1179,1276,1325,1699,1759,1934,1585,766,326,106,302,354,320,415,602,736,457,607,0,152,175,163,142,196,139,0
-2019F,RI,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,196,295,790,1016,944,1092,982,901,854,875,895,908,888,890,922,921
-2019F,RI,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,21,21,21,21,22
-2019F,RI,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,9,16,15,17,12,11,12,12,12,12,12,13,13,13
-2019F,RI,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,198,299,800,1033,961,1110,995,913,866,889,908,941,922,924,956,956
-2019F,RI,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,24,26,28,26,27,28,27,27
-2019F,RI,ESCCP,376,428,453,479,513,546,589,992,1069,1172,1285,1428,1528,1646,1482,1576,1693,1733,1802,1875,1892,1878,1884,1978,2075,2159,2268,2396,2539,2630,2688,2671,2670,2718,2737,2790,2773,2872,2908,3324,3243,3308,3401,3490,3542,3628,3599,3710,3700,3691,3693,3660,3640,3667,3658,3705,3651,3603,3698,3644
-2019F,RI,ESICP,916,970,1050,1084,1156,1274,1356,1044,1189,1256,1253,1298,1392,1487,1434,1191,1314,1320,1348,1387,1399,1342,1185,1266,1342,1300,1326,1360,1361,1360,1354,1363,1359,1419,1378,1374,1351,1386,1458,1158,1394,1386,1331,1309,1345,1250,1191,1171,1075,990,961,916,923,923,887,799,764,726,735,695
-2019F,RI,ESRCP,620,669,708,757,809,871,947,1043,1155,1259,1390,1507,1605,1722,1668,1684,1821,1776,1803,1809,1840,1817,1832,1913,1957,1971,2064,2186,2319,2370,2376,2369,2363,2412,2457,2472,2481,2486,2522,2667,2664,2699,2829,2998,3000,3171,3008,3132,3043,2937,3118,3129,3121,3165,3070,3136,3082,3028,3124,2983
-2019F,RI,ESRPP,725,779,813,864,915,976,1053,1147,1253,1350,1461,1565,1646,1765,1754,1787,1925,1869,1894,1903,1939,1907,1920,2000,2034,2034,2111,2209,2328,2369,2362,2344,2334,2376,2418,2430,2430,2425,2446,2564,2537,2553,2654,2799,2792,2970,2830,2962,2884,2787,2958,2970,2959,2998,2906,2967,2913,2866,2949,2819
-2019F,RI,ESTCP,1911,2067,2211,2320,2479,2691,2892,3078,3413,3686,3927,4234,4524,4856,4584,4451,4828,4830,4953,5071,5131,5037,4900,5157,5374,5430,5657,5942,6220,6359,6419,6403,6393,6548,6572,6636,6604,6745,6888,7150,7301,7393,7561,7797,7888,8049,7799,8013,7819,7618,7799,7732,7708,7781,7643,7665,7524,7385,7583,7350
-2019F,RI,ESTPP,2236,2410,2539,2648,2801,3014,3217,3386,3702,3955,4130,4396,4641,4976,4822,4721,5103,5083,5204,5336,5408,5286,5136,5392,5587,5604,5789,6004,6242,6355,6381,6336,6313,6451,6469,6525,6469,6578,6680,6872,6952,6993,7093,7277,7340,7537,7336,7579,7411,7230,7400,7337,7307,7372,7234,7252,7113,6989,7159,6946
-2019F,RI,ESTXP,1911,2067,2211,2320,2479,2691,2892,3078,3413,3686,3927,4234,4524,4856,4584,4451,4828,4830,4953,5071,5131,5037,4900,5157,5374,5430,5657,5942,6220,6359,6419,6403,6393,6548,6572,6636,6604,6745,6888,7150,7301,7393,7561,7797,7888,8049,7799,8013,7819,7618,7799,7732,7708,7781,7643,7665,7524,7385,7583,7350
-2019F,RI,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,FSICP,0,0,0,9,8,10,11,6,6,6,7,9,8,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,HLACP,1,2,3,3,3,4,6,6,6,12,28,33,33,35,33,27,32,37,47,12,9,9,18,16,31,22,18,8,21,19,19,15,14,9,16,8,7,9,1,3,2,1,2,9,7,6,5,3,7,6,2,2,2,2,2,2,2,0,6,5
-2019F,RI,HLCCP,58,58,75,79,70,52,50,52,49,69,62,57,65,53,52,58,64,65,57,43,45,48,47,56,64,109,100,119,103,107,108,110,105,125,122,111,139,125,146,102,109,95,117,133,105,105,75,89,92,90,84,98,83,101,114,109,111,105,200,233
-2019F,RI,HLICP,31,32,45,64,55,61,48,72,77,109,162,157,200,253,219,297,326,367,299,176,149,126,168,146,91,150,266,303,234,163,156,122,128,129,118,119,112,38,43,197,118,144,207,104,75,140,157,117,85,85,81,88,110,137,142,138,137,174,93,31
-2019F,RI,HLRCP,117,117,150,157,140,105,100,105,98,138,124,115,130,107,104,116,128,131,115,86,90,95,94,112,128,219,201,238,207,214,217,219,210,251,245,222,278,250,292,205,218,191,234,227,172,182,179,209,225,220,189,209,187,209,296,276,308,317,480,422
-2019F,RI,HLTCP,207,210,273,303,267,223,203,234,231,329,375,363,428,449,408,498,549,600,518,317,293,278,328,330,314,501,585,669,564,502,501,466,456,513,501,461,536,422,481,506,447,431,560,473,360,433,416,417,408,402,356,396,382,448,554,526,557,596,779,691
-2019F,RI,HLTXP,207,210,273,303,267,223,203,234,231,329,375,363,428,449,408,498,549,600,518,317,293,278,328,330,314,501,585,669,564,502,501,466,456,513,501,461,536,422,481,506,447,431,560,473,360,433,416,417,408,402,356,396,382,448,554,526,557,596,779,691
-2019F,RI,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,HYEGP,8,7,5,3,4,1,2,5,4,3,3,1,6,5,4,3,3,4,4,3,1,0,3,3,2,0,0,0,0,5,10,10,10,9,9,9,10,8,9,6,5,3,4,6,5,7,6,4,5,5,4,7,4,4,4,3,2,2,4,4
-2019F,RI,HYICP,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,HYTCP,9,8,5,4,4,2,2,5,5,4,3,1,6,5,4,3,3,4,4,3,1,0,3,3,2,0,0,0,0,5,10,10,10,9,9,9,10,8,9,6,5,3,4,6,5,7,6,4,5,5,4,7,4,4,4,3,2,2,4,4
-2019F,RI,HYTXP,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,JFACP,38,42,44,45,46,49,78,91,133,124,137,125,174,175,165,271,241,209,260,312,348,303,281,329,571,498,387,528,636,724,776,656,556,527,529,500,540,828,920,1057,1283,1304,1286,1056,1035,825,593,335,300,694,652,707,617,593,542,571,540,501,445,410
-2019F,RI,JFTCP,38,42,44,45,46,49,78,91,133,124,137,125,174,175,165,271,241,209,260,312,348,303,281,329,571,498,387,528,636,724,776,656,556,527,529,500,540,828,920,1057,1283,1304,1286,1056,1035,825,593,335,300,694,652,707,617,593,542,571,540,501,445,410
-2019F,RI,JFTXP,38,42,44,45,46,49,78,91,133,124,137,125,174,175,165,271,241,209,260,312,348,303,281,329,571,498,387,528,636,724,776,656,556,527,529,500,540,828,920,1057,1283,1304,1286,1056,1035,825,593,335,300,694,652,707,617,593,542,571,540,501,445,410
-2019F,RI,KSCCP,17,16,15,14,8,12,13,10,9,8,7,7,7,4,3,2,3,2,1,1,0,1,2,3,11,4,4,5,3,5,2,1,3,2,5,30,2,55,67,40,19,98,55,5,7,9,10,1,1,0,0,1,0,0,0,0,1,0,1,1
-2019F,RI,KSICP,99,94,145,117,92,120,126,156,94,99,89,88,71,48,48,40,63,50,47,49,30,6,0,0,0,0,2,3,17,1,14,15,11,8,7,7,3,3,13,19,1,0,1,0,0,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,KSRCP,770,738,708,656,389,534,579,452,397,381,335,328,305,178,125,87,117,76,66,46,54,47,123,57,118,131,162,102,96,57,38,35,37,40,38,27,30,34,41,49,65,69,34,46,50,59,40,16,11,24,18,13,6,7,8,5,5,3,3,3
-2019F,RI,KSTCP,886,848,868,787,490,666,718,618,500,489,432,423,383,230,175,128,183,128,115,96,84,54,125,60,130,135,168,110,115,63,54,52,51,50,50,64,35,93,122,108,85,167,89,52,57,70,50,17,15,24,18,14,6,7,9,6,6,3,4,4
-2019F,RI,KSTXP,886,848,868,787,490,666,718,618,500,489,432,423,383,230,175,128,183,128,115,96,84,54,125,60,130,135,168,110,115,63,54,52,51,50,50,64,35,93,122,108,85,167,89,52,57,70,50,17,15,24,18,14,6,7,9,6,6,3,4,4
-2019F,RI,LUACP,103,100,75,75,79,69,71,70,77,75,77,64,69,69,66,57,63,70,75,79,70,67,61,64,68,64,62,70,68,70,72,64,65,66,69,68,66,70,73,74,73,67,66,61,62,62,60,62,57,52,56,52,46,49,53,56,48,46,46,44
-2019F,RI,LUICP,52,51,64,64,67,85,88,52,58,48,49,58,62,65,62,40,45,62,66,69,62,59,54,57,60,56,55,62,60,62,63,57,58,59,61,60,59,62,65,66,65,59,58,54,55,54,53,55,51,46,48,45,41,42,39,44,41,36,35,32
-2019F,RI,LUTCP,155,151,139,139,146,153,159,122,135,123,125,122,131,134,128,97,108,132,141,148,132,126,115,121,129,120,117,133,128,131,135,121,123,125,131,129,125,132,138,140,138,126,124,115,117,116,113,117,108,97,104,97,87,90,92,99,89,82,81,76
-2019F,RI,LUTXP,155,151,139,139,146,153,159,122,135,123,125,122,131,134,128,97,108,132,141,148,132,126,115,121,129,120,117,133,128,131,135,121,123,125,131,129,125,132,138,140,138,126,124,115,117,116,113,117,108,97,104,97,87,90,92,99,89,82,81,76
-2019F,RI,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,MGACP,5943,6004,6159,6284,6258,6455,6693,6823,7260,7431,7970,8181,8563,8583,8677,8929,8768,9162,9053,8827,8365,8465,8357,8256,8523,8606,8872,9076,9208,8801,8692,8618,8697,8824,8572,8864,8950,9133,9337,9559,9425,9491,9289,9312,8993,9100,9729,9565,9561,9288,9255,8717,8441,8498,8614,8712,8577,8549,8929,8765
-2019F,RI,MGCCP,26,28,30,30,31,32,33,34,35,35,36,37,39,39,39,41,41,43,43,43,49,52,56,41,29,32,35,36,35,38,39,36,32,10,10,10,10,11,10,10,10,43,59,59,12,12,10,10,10,10,10,10,10,10,10,200,201,204,208,209
-2019F,RI,MGICP,6,6,10,6,5,5,5,4,4,3,3,3,2,2,3,3,3,2,2,3,2,2,2,2,10,26,31,28,33,35,35,26,26,49,49,54,47,51,45,24,33,82,104,104,104,105,115,154,156,148,113,110,116,121,118,119,120,122,124,124
-2019F,RI,MGTCP,5975,6038,6199,6319,6294,6492,6731,6862,7300,7469,8009,8220,8604,8625,8719,8972,8813,9207,9098,8873,8416,8519,8415,8299,8562,8665,8938,9140,9277,8874,8765,8681,8756,8883,8630,8927,9006,9195,9391,9593,9468,9617,9452,9474,9108,9216,9854,9730,9727,9446,9378,8837,8566,8629,8742,9031,8897,8875,9261,9098
-2019F,RI,MGTXP,5975,6038,6199,6319,6294,6492,6731,6862,7300,7469,8009,8220,8604,8625,8719,8972,8813,9207,9098,8873,8416,8519,8415,8299,8562,8665,8938,9140,9277,8874,8765,8681,8756,8883,8630,8927,9006,9195,9391,9593,9468,9617,9452,9474,9108,9216,9854,9730,9727,9446,9378,8837,8566,8629,8742,9031,8897,8875,9261,9098
-2019F,RI,MSICP,25,28,31,16,16,16,17,16,17,16,15,6,6,8,10,14,66,75,65,60,57,23,20,18,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,4
-2019F,RI,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,NGACP,222,309,102,144,101,98,52,33,3,18,27,24,16,19,22,22,12,15,12,36,153,112,172,160,132,141,84,65,119,116,126,170,364,222,376,631,703,856,372,276,333,319,371,430,361,829,957,952,962,987,1555,1088,1108,1160,3108,3198,2652,2930,2464,2149
-2019F,RI,NGCCP,1694,1993,2245,2345,2115,2568,2471,3142,3416,3850,5064,4530,4734,4648,4397,4233,2895,3019,4783,6169,6751,6867,7156,6976,7466,7590,6718,9395,8352,8767,8071,8269,9080,9205,12049,12064,12298,12303,11477,11804,12974,12808,11468,11391,11289,11043,9950,11247,10843,10725,10458,10843,10090,11633,13178,12016,10744,11338,12732,12416
-2019F,RI,NGEIP,344,392,337,294,438,483,226,265,1492,1143,2319,2791,148,29,1919,11,635,0,0,1752,1679,2603,794,3079,3661,2532,0,5336,185,2147,9049,23292,38468,35884,38209,35823,62338,61914,60177,54804,48425,58417,53965,42010,35958,43912,43033,51397,52984,55379,57122,64198,60553,46362,44867,50005,46907,50820,57260,51551
-2019F,RI,NGICP,2868,2789,3247,3726,4231,4235,4625,4703,5188,6170,5743,6157,4302,4446,4493,5820,4826,9083,4638,5836,5087,5196,4929,5080,5390,4619,3452,4392,4453,4624,4381,26867,47917,9439,40917,35043,25810,24472,42278,34521,8039,6127,4455,4450,5530,5892,6395,6705,6775,7739,8033,7462,7841,8161,8008,8624,8474,8551,8817,8819
-2019F,RI,NGRCP,6711,7297,7863,8216,8580,8965,9310,10350,10605,11374,11940,12160,13294,11417,12950,13043,12329,13514,13609,13426,13960,14424,14823,13749,15041,14992,16100,16742,17678,18283,17724,17366,20000,19722,17384,17342,18839,18162,16461,16601,18655,17937,17545,20176,19470,19088,16869,17672,17692,17914,16942,16864,15883,18221,19724,20042,17200,18421,20523,19892
-2019F,RI,NGTCP,11839,12780,13794,14725,15465,16349,16684,18493,20704,22555,25093,25662,22494,20559,23781,23129,20697,25631,23042,27219,27630,29202,27874,29044,31690,29874,26354,35930,30787,33937,39350,75964,115830,74472,108935,100903,119989,117707,130766,118006,88427,95607,87805,78456,72609,80764,77204,87972,89256,92744,94110,100455,95475,85537,88885,93885,85977,92060,101796,94827
-2019F,RI,NGTPP,13.8,14.9,15.8,16.8,17.5,18.3,18.6,20.3,22.5,24.2,26.4,26.6,23.1,21.1,25,24.5,21.9,27,24.2,28.6,29.1,30.6,29.2,30.4,32.9,30.8,27,36.3,30.9,33.9,39.1,75.2,114.4,73.4,107.2,99.2,117.5,114.8,126.8,113.4,84.2,90.4,82.4,73.2,67.6,75.6,72.6,83.2,84.6,88,89.3,95.3,90.5,81,84.1,88.8,81.3,87.1,96.1,89.6
-2019F,RI,NGTXP,11495,12388,13457,14431,15027,15866,16458,18228,19212,21412,22774,22871,22346,20530,21862,23118,20062,25631,23042,25467,25951,26599,27080,25965,28029,27342,26354,30594,30602,31790,30302,52671,77362,38588,70726,65080,57651,55793,70588,63203,40002,37191,33840,36447,36651,36852,34171,36575,36272,37365,36988,36257,34922,39175,44018,43880,39070,41240,44536,43276
-2019F,RI,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,OPICP,221,73,218,206,278,292,269,204,217,227,226,184,190,211,208,104,174,165,158,151,146,23,20,18,15,16,71,79,62,59,58,13,14,15,15,15,39,36,45,53,39,42,48,40,31,35,41,42,43,24,19,17,14,34,36,34,32,103,96,98
-2019F,RI,OPTCP,221,73,218,206,278,292,269,204,217,227,226,184,190,211,208,104,174,165,158,151,146,23,20,18,15,16,71,79,62,59,58,13,14,15,15,15,39,36,45,53,39,42,48,40,31,35,41,42,43,24,19,17,14,34,36,34,32,103,96,98
-2019F,RI,OPTXP,221,73,218,206,278,292,269,204,217,227,226,184,190,211,208,104,174,165,158,151,146,23,20,18,15,16,71,79,62,59,58,13,14,15,15,15,39,36,45,53,39,42,48,40,31,35,41,42,43,24,19,17,14,34,36,34,32,103,96,98
-2019F,RI,P1ICP,1107,1100,1270,1123,1437,1403,1314,1107,1427,1357,1301,1432,1122,1630,1468,1514,1564,1706,1566,1284,1279,1084,1277,1287,1412,3047,1607,1917,1880,1726,1770,546,1585,900,1340,1072,437,375,405,440,308,299,286,423,262,426,400,97,1356,880,1000,753,842,1088,1100,1044,883,977,939,847
-2019F,RI,P1TCP,2016,1976,2129,1915,1962,2081,2066,1727,2059,1970,1868,1988,1683,2101,1801,1944,1973,2011,1909,1651,1671,1222,1491,1435,1631,3275,1870,2136,2092,1903,1923,677,1720,1017,1463,1220,573,546,596,614,478,547,448,543,392,568,532,197,1437,963,1080,824,899,1147,1171,1114,945,1035,997,903
-2019F,RI,P1TXP,2016,1976,2129,1915,1962,2081,2066,1727,2059,1970,1868,1988,1683,2101,1801,1944,1973,2011,1909,1651,1671,1222,1491,1435,1631,3275,1870,2136,2092,1903,1923,677,1720,1017,1463,1220,573,546,596,614,478,547,448,543,392,568,532,197,1437,963,1080,824,899,1147,1171,1114,945,1035,997,903
-2019F,RI,PAACP,10768,9464,9345,9560,8974,9669,10075,11331,10675,10590,11482,12185,11918,11118,10838,10685,10387,10441,10294,10232,9794,9611,9496,9542,10127,9554,10563,11326,11515,11318,10789,10799,10570,10690,10477,10792,10892,11993,11738,12224,12165,12273,12127,11928,11599,11531,12022,11919,11412,11723,11683,11176,10630,10695,11064,10996,10429,10541,11032,10896
-2019F,RI,PACCP,2720,2378,2585,2472,2451,1942,1815,2065,2183,2469,2540,2741,2857,2720,2303,2056,2368,2390,2052,1598,891,671,762,977,1193,1190,2179,1687,1686,1468,1545,1630,1358,1453,1660,1391,1626,1541,1231,1032,1185,1296,1254,1580,1378,1249,961,1021,843,1104,850,680,587,682,1006,881,717,667,790,744
-2019F,RI,PAEIP,727,723,714,816,813,886,1056,2075,2467,3188,3047,2559,2702,2526,2072,1568,945,1150,1171,923,1662,1246,804,713,663,728,1487,832,1538,713,358,180,178,79,113,87,137,72,47,43,39,43,31,29,22,27,25,35,38,23,23,23,29,61,104,143,43,79,113,13
-2019F,RI,PAICP,5561,4724,5689,5247,6032,4036,3911,4378,4691,5191,5384,5810,5647,5982,4856,4170,4882,5209,4208,2727,2499,2271,2390,2270,2586,4472,3389,3704,3090,2763,2692,1336,2521,1979,2310,1898,1204,1102,1035,1161,881,848,998,1184,967,1166,1105,706,1770,1504,1430,1169,1193,1437,1485,1413,1294,1450,1349,1187
-2019F,RI,PARCP,6394,6180,6029,5974,4853,5467,5112,5434,5681,6249,6294,6575,6811,6325,5692,5598,6106,5976,5618,5088,3441,2709,2683,3062,3649,4167,3705,3990,4426,3804,3290,3366,4049,3788,4196,3714,3788,3891,3598,3415,3544,3822,3623,4091,4115,3974,3088,3188,3083,3289,3137,2920,2852,3031,3047,3279,2205,2115,2986,2479
-2019F,RI,PATCP,26170,23469,24361,24068,23124,22000,21968,25282,25697,27687,28746,29870,29935,28672,25762,24076,24688,25166,23343,20567,18287,16508,16135,16564,18217,20111,21323,21539,22255,20068,18674,17311,18676,17989,18757,17882,17647,18599,17649,17876,17815,18282,18034,18812,18082,17946,17201,16870,17146,17642,17123,15968,15291,15905,16707,16712,14688,14851,16269,15319
-2019F,RI,PATPP,30.6,27.4,28,27.5,26.1,24.6,24.4,27.8,27.9,29.7,30.2,31,30.7,29.4,27.1,25.5,26.1,26.5,24.5,21.6,19.3,17.3,16.9,17.3,18.9,20.8,21.8,21.8,22.3,20.1,18.6,17.1,18.4,17.7,18.5,17.6,17.3,18.1,17.1,17.2,17,17.3,16.9,17.6,16.8,16.8,16.2,16,16.3,16.7,16.2,15.2,14.5,15.1,15.8,15.8,13.9,14.1,15.4,14.5
-2019F,RI,PATXP,25443,22746,23647,23252,22310,21114,20913,23207,23230,24499,25700,27310,27233,26145,23690,22508,23743,24016,22172,19644,16625,15262,15332,15851,17554,19383,19836,20707,20717,19354,18316,17131,18498,17910,18644,17795,17510,18527,17602,17833,17776,18239,18003,18783,18059,17919,17176,16835,17108,17619,17100,15945,15262,15844,16603,16569,14645,14773,16156,15305
-2019F,RI,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,2,0,6,5
-2019F,RI,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,84,98,83,101,114,109,111,105,200,233
-2019F,RI,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,81,88,110,137,142,138,137,174,93,31
-2019F,RI,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,189,209,187,209,296,276,308,317,480,422
-2019F,RI,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,356,396,382,448,554,526,557,596,779,691
-2019F,RI,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,356,396,382,448,554,526,557,596,779,691
-2019F,RI,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,RI,RFACP,3826,2777,2447,2613,2000,2637,2649,3786,2453,2173,2519,2879,2211,1296,822,329,242,120,72,137,58,49,18,0,0,0,6,168,293,67,34,9,59,22,10,2,2,1,1,3,5,0,0,0,0,0,4,2,3,169,81,41,1,6,3,0,2,11,2,7
-2019F,RI,RFCCP,1237,940,1168,1054,1258,634,608,745,790,920,971,1102,1148,1109,839,602,790,833,586,268,180,190,225,300,410,552,1141,509,620,453,597,585,518,634,624,499,667,608,388,371,419,429,360,373,395,437,256,234,162,150,63,44,25,25,33,30,24,1,0,0
-2019F,RI,RFEIP,714,710,702,802,799,870,1037,2037,2423,3131,2990,2508,2660,2482,2023,1542,936,1142,1156,901,1634,1228,786,694,637,708,1459,805,1496,679,340,123,162,55,65,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,RFICP,4051,3224,3993,3663,4221,2135,2109,2640,2555,3040,3246,3611,3725,3554,2696,1916,2511,2643,1856,871,654,738,620,472,644,973,1165,837,633,493,453,376,455,593,464,372,315,295,294,266,257,204,249,310,276,291,217,175,77,229,87,94,24,5,10,17,38,14,2,2
-2019F,RI,RFTCP,9827,7650,8310,8132,8278,6276,6403,9208,8220,9264,9727,10100,9744,8440,6381,4389,4478,4738,3671,2178,2525,2204,1649,1465,1690,2232,3771,2318,3042,1692,1424,1093,1192,1303,1163,936,984,904,683,641,681,633,610,683,671,727,478,411,242,547,232,179,49,37,46,47,64,26,4,10
-2019F,RI,RFTXP,9114,6940,7608,7331,7479,5406,5366,7171,5797,6133,6736,7592,7084,5958,4358,2847,3543,3596,2515,1277,891,976,863,772,1054,1525,2312,1513,1546,1013,1084,970,1031,1249,1098,873,984,904,683,641,681,633,610,683,671,727,478,411,242,547,232,179,49,37,46,47,64,26,4,10
-2019F,RI,SGICP,151,0,147,142,142,146,143,94,97,101,97,90,95,93,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,SNICP,0,0,0,0,74,80,60,50,53,58,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,79,62,59,58,0,0,0,0,0,20,19,29,39,26,26,34,26,17,21,27,30,33,18,10,9,6,34,36,34,32,94,86,90
-2019F,RI,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,6,11,10,10,11,16,27,51,122
-2019F,RI,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,14,15,14,29,55
-2019F,RI,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,14,28,44,58
-2019F,RI,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,3,3,3,7,12,13,21,28,44,69,124,235
-2019F,RI,TPOPP,855,858,871,876,885,893,899,909,922,932,951,963,975,976,951,943,946,950,952,950,949,953,954,956,962,969,977,990,996,1001,1006,1011,1013,1015,1016,1017,1021,1025,1031,1040,1050,1057,1066,1071,1075,1068,1063,1057,1055,1054,1054,1054,1055,1056,1057,1057,1058,1057,1059,1058
-2019F,RI,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,WXICP,46,45,41,39,37,39,38,38,43,45,45,78,80,103,101,90,108,90,93,91,89,0,0,0,0,0,0,0,0,0,0,13,14,15,15,15,19,17,17,15,13,16,14,14,14,14,13,11,10,6,9,8,8,0,0,0,0,4,5,4
-2019F,RI,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,7,7,7,8
-2019F,RI,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,1,3,2,3,20,142,151,199
-2019F,RI,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,RI,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,1,3,10,10,27,149,159,206
-2019F,RI,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,7,7,7,8
-2019F,SC,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,ARICP,1636,1607,1723,1822,1583,1721,1924,1929,1851,2012,2220,2107,2200,2191,2683,2440,2052,2116,2169,1971,1535,1455,1203,1901,1242,1367,2068,2425,3297,2313,1983,1941,2067,2358,1993,2641,2407,3729,2536,2227,3231,2524,2244,2533,3196,3310,3130,2593,2045,2279,2190,2044,1686,1719,1666,1917,2163,2542,2266,2646
-2019F,SC,ARTCP,1636,1607,1723,1822,1583,1721,1924,1929,1851,2012,2220,2107,2200,2191,2683,2440,2052,2116,2169,1971,1535,1455,1203,1901,1242,1367,2068,2425,3297,2313,1983,1941,2067,2358,1993,2641,2407,3729,2536,2227,3231,2524,2244,2533,3196,3310,3130,2593,2045,2279,2190,2044,1686,1719,1666,1917,2163,2542,2266,2646
-2019F,SC,ARTXP,1636,1607,1723,1822,1583,1721,1924,1929,1851,2012,2220,2107,2200,2191,2683,2440,2052,2116,2169,1971,1535,1455,1203,1901,1242,1367,2068,2425,3297,2313,1983,1941,2067,2358,1993,2641,2407,3729,2536,2227,3231,2524,2244,2533,3196,3310,3130,2593,2045,2279,2190,2044,1686,1719,1666,1917,2163,2542,2266,2646
-2019F,SC,AVACP,215,171,320,297,307,354,391,364,293,253,228,201,221,182,146,142,164,141,159,155,149,134,119,133,122,136,156,119,127,120,101,180,226,169,114,123,59,64,55,100,76,72,87,93,83,97,109,108,71,94,80,70,42,37,52,52,53,56,60,67
-2019F,SC,AVTCP,215,171,320,297,307,354,391,364,293,253,228,201,221,182,146,142,164,141,159,155,149,134,119,133,122,136,156,119,127,120,101,180,226,169,114,123,59,64,55,100,76,72,87,93,83,97,109,108,71,94,80,70,42,37,52,52,53,56,60,67
-2019F,SC,AVTXP,215,171,320,297,307,354,391,364,293,253,228,201,221,182,146,142,164,141,159,155,149,134,119,133,122,136,156,119,127,120,101,180,226,169,114,123,59,64,55,100,76,72,87,93,83,97,109,108,71,94,80,70,42,37,52,52,53,56,60,67
-2019F,SC,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,7,19,26,22,23,19,65,52,275,246,297,569,606,329,268
-2019F,SC,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,7,19,26,22,23,19,65,52,275,246,297,569,606,329,268
-2019F,SC,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,CLACP,30,8,7,7,6,6,5,4,3,2,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,CLCCP,137,107,119,115,111,98,127,108,108,130,108,118,117,154,169,169,104,87,33,39,156,86,96,145,93,51,169,93,98,14,5,18,25,89,52,15,17,1,20,209,0,0,0,0,0,0,80,0,12,3,2,0,0,0,0,0,0,0,0,0
-2019F,SC,CLEIP,1596,1893,2151,2465,2320,2690,3178,3582,3410,3586,3708,4543,5701,5519,4894,4401,5551,6455,6495,6848,7927,8679,8581,6989,7428,7888,7777,9019,9210,9472,9131,9218,9078,10410,10597,10074,11832,12096,12664,13666,15034,14382,14341,14714,15557,15793,15761,16524,16879,14071,15411,13970,11658,9973,11797,9277,8683,7648,8282,6474
-2019F,SC,CLICP,1758,1810,1731,1833,1637,1835,1794,1520,1274,1454,1861,1544,1332,1203,1370,1200,1356,1384,1450,1503,1805,2074,2292,2200,2226,2525,2465,2562,2602,2491,2310,2212,2177,2395,2334,2188,2000,2012,1962,1861,1912,2038,1923,1983,1794,1504,1439,1270,1149,896,923,911,506,504,549,439,324,251,200,161
-2019F,SC,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,CLOCP,1758,1810,1731,1833,1637,1835,1794,1520,1274,1454,1861,1544,1332,1203,1370,1200,1356,1384,1450,1503,1805,2074,2292,2200,2226,2525,2465,2562,2602,2491,2310,2212,2177,2395,2334,2188,2000,2012,1962,1861,1912,2038,1923,1983,1794,1504,1439,1270,1149,896,923,911,506,504,549,439,324,251,200,161
-2019F,SC,CLRCP,197,155,172,158,154,130,168,143,137,166,138,113,88,91,79,72,42,34,10,10,41,19,20,28,22,14,50,28,28,4,1,4,6,20,9,2,2,0,3,28,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,CLTCP,3719,3974,4180,4577,4228,4760,5273,5357,4932,5338,5817,6320,7239,6968,6514,5842,7053,7959,7988,8399,9929,10858,10989,9362,9768,10479,10461,11701,11937,11981,11447,11451,11285,12914,12993,12279,13852,14109,14649,15764,16946,16421,16263,16697,17351,17296,17288,17794,18040,14971,16337,14881,12164,10477,12346,9716,9007,7898,8482,6635
-2019F,SC,CLTXP,2122,2080,2029,2113,1908,2069,2095,1775,1522,1752,2109,1777,1538,1449,1619,1442,1503,1504,1493,1551,2002,2179,2408,2372,2341,2591,2684,2682,2728,2509,2317,2234,2207,2504,2396,2205,2019,2013,1985,2098,1912,2038,1923,1983,1794,1504,1527,1270,1161,900,925,911,506,504,549,439,324,251,200,161
-2019F,SC,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,DFACP,1196,1090,1277,2045,1773,1556,1592,1558,2390,2654,2899,3018,2957,4493,4448,4019,4555,5324,5410,6863,6156,5661,6253,6943,7412,7949,8078,8190,8622,7886,10512,11911,10238,9946,12072,10703,11107,11894,13609,13978,14791,15344,15520,15642,18270,17283,18151,18412,16512,16139,18019,18130,15806,18609,17712,18600,20039,19959,20529,21551
-2019F,SC,DFCCP,474,471,526,449,414,350,588,578,663,679,714,658,737,682,591,504,691,702,598,588,481,433,404,832,978,939,783,992,1207,1029,721,605,780,906,725,1002,964,1049,1502,1043,759,769,669,604,553,621,694,692,641,511,604,555,527,498,533,555,618,614,603,571
-2019F,SC,DFEIP,9,7,13,24,8,16,37,78,183,427,756,693,889,662,435,118,307,1564,858,422,567,502,196,132,143,183,116,114,193,252,117,132,144,139,268,200,267,401,611,558,606,399,331,450,352,332,223,318,167,179,226,167,180,182,472,343,168,182,585,143
-2019F,SC,DFICP,1959,2000,2234,2158,1666,1748,2261,2341,2299,2411,2655,2457,2787,2590,2128,2040,2633,3189,2256,2066,1875,1798,1501,1472,1731,1897,1708,1593,1913,2120,2317,2433,2069,1668,1490,1904,2124,1937,2030,2190,2242,2458,2333,2390,2612,3071,2533,2286,2227,1669,1470,1412,1698,1182,1489,1618,1747,1983,2049,2032
-2019F,SC,DFRCP,1595,1584,1767,1509,1392,1178,1978,1942,2231,2283,2400,2214,2479,2292,1986,1695,2325,2362,2011,1979,1580,1429,1133,1174,1381,1287,1310,1599,1282,1425,1199,1155,802,888,743,692,712,535,475,503,482,419,386,445,288,241,211,172,153,158,149,111,108,77,41,89,85,80,76,74
-2019F,SC,DFTCP,5234,5152,5817,6185,5253,4849,6456,6496,7768,8454,9423,9040,9849,10719,9589,8376,10511,13141,11132,11918,10660,9822,9485,10553,11645,12256,11995,12488,13218,12711,14866,16237,14033,13548,15297,14501,15174,15815,18227,18271,18879,19389,19240,19531,22074,21547,21812,21880,19699,18656,20467,20375,18318,20547,20248,21204,22657,22818,23841,24371
-2019F,SC,DFTXP,5225,5145,5804,6161,5245,4833,6419,6419,7584,8027,8667,8347,8960,10057,9154,8258,10204,11577,10274,11497,10092,9320,9290,10421,11503,12073,11879,12374,13025,12459,14749,16104,13889,13409,15029,14301,14907,15414,17616,17713,18274,18990,18909,19081,21722,21216,21589,21562,19533,18477,20242,20208,18138,20365,19776,20861,22489,22636,23257,24227
-2019F,SC,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-9016,-8259,-8449,-8846,-7564,-7663,-3411,-4014,-6317,-7813,-7006,-6340,-9942,-7979,-8228,-11952,-9277,-13192,-12159,-16253,-13748,-14577,-11125,-8969,-7863,-7592,-9834,-7332,-10788,-13311
-2019F,SC,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,141,2,0,1,33,90,244,233,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,511,768,4180,5351,5439,5477,5896,6037,5866,5987,6235,6445,6511,6499
-2019F,SC,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,108,115,120,130,129
-2019F,SC,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,4,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,9,9,52,62,45,46,50,53,43,55,56,58,62,61
-2019F,SC,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,142,2,0,1,34,92,249,238,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,520,777,4234,5415,5487,5526,5949,6094,5913,6150,6406,6623,6702,6689
-2019F,SC,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,ESCCP,1957,2076,2355,2506,2779,2531,2669,3008,3432,3735,4237,4583,5043,5745,5734,7121,7558,8075,8511,8279,8705,8404,9156,9294,9205,9778,10506,11018,11524,12092,12693,13002,13156,13979,14195,14863,15388,15645,17290,17488,18434,18430,19107,19336,20113,20498,20923,21746,21676,21440,22320,21593,21251,21120,21656,21927,22275,21758,22233,22168
-2019F,SC,ESICP,6234,7245,7226,7679,7977,7450,7876,8228,8870,9680,10110,10967,13955,14847,14512,12766,14365,15068,15419,15986,15979,18016,17622,18658,21429,21829,22805,24036,24113,24301,24701,25361,26305,26867,27760,28819,29185,31278,31606,32117,33308,31528,31926,31296,31886,32080,31416,30632,29247,25421,27307,28094,28164,28669,29248,29342,26687,27114,27556,26877
-2019F,SC,ESRCP,3272,3425,3785,4081,4476,4371,4625,4986,5847,6510,7347,7841,8234,9299,9351,9837,10360,11310,11714,11419,12580,13067,13493,13819,14568,14661,16122,16913,17172,17464,18258,18707,18940,20687,19903,21392,22514,21611,23558,23699,25270,24875,26787,26422,27910,28676,28539,29569,29727,29556,32852,30802,28366,28813,30716,30059,30616,29225,31852,31160
-2019F,SC,ESRPP,1368,1422,1562,1659,1809,1753,1835,1968,2285,2533,2829,2945,3028,3349,3287,3390,3519,3781,3848,3695,4013,4110,4207,4273,4453,4438,4823,5003,5033,5052,5215,5239,5231,5647,5371,5707,5931,5599,6011,5962,6280,6119,6521,6366,6628,6715,6549,6654,6564,6439,7087,6592,6011,6045,6364,6140,6169,5813,6256,6041
-2019F,SC,ESTCP,11463,12746,13367,14266,15232,14353,15170,16222,18148,19924,21694,23391,27232,29890,29598,29724,32283,34453,35644,35684,37264,39487,40272,41771,45202,46269,49433,51966,52809,53857,55652,57069,58401,61533,61858,65074,67086,68534,72454,73304,77012,74832,77819,77054,79908,81254,80877,81948,80651,76417,82479,80489,77781,78602,81620,81328,79578,78097,81641,80206
-2019F,SC,ESTPP,4792,5291,5517,5799,6154,5755,6020,6404,7092,7753,8353,8786,10015,10765,10404,10242,10967,11516,11708,11547,11888,12420,12555,12916,13815,14007,14788,15372,15477,15580,15895,15984,16131,16797,16694,17360,17672,17756,18487,18443,19137,18409,18944,18566,18976,19028,18559,18440,17808,16649,17792,17225,16482,16491,16910,16611,16034,15535,16034,15551
-2019F,SC,ESTXP,11463,12746,13367,14266,15232,14353,15170,16222,18148,19924,21694,23391,27232,29890,29598,29724,32283,34453,35644,35684,37264,39487,40272,41771,45202,46269,49433,51966,52809,53857,55652,57069,58401,61533,61858,65074,67086,68534,72454,73304,77012,74832,77819,77054,79908,81254,80877,81948,80651,76417,82479,80489,77781,78602,81620,81328,79578,78097,81641,80206
-2019F,SC,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,FSICP,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,HLACP,13,16,18,18,25,12,9,19,23,40,60,74,87,88,82,79,99,110,124,51,33,70,74,94,139,140,76,70,86,89,87,95,87,83,142,77,44,62,50,26,55,37,31,64,74,110,120,88,165,110,38,40,38,34,20,21,26,36,32,28
-2019F,SC,HLCCP,358,340,410,442,523,549,547,542,584,684,688,689,759,734,623,678,746,756,720,563,584,604,505,600,610,720,650,762,763,808,651,762,819,829,846,815,755,770,651,766,881,581,744,680,806,735,724,676,841,546,707,640,711,651,783,695,678,784,675,674
-2019F,SC,HLICP,273,275,336,422,494,415,419,468,512,641,775,864,1022,1066,983,1066,1286,1335,1423,1206,1368,919,997,702,527,834,830,1234,1131,1126,849,1194,1020,1058,1159,1272,1326,3748,2571,1502,2304,1759,1070,814,564,1096,1068,756,579,616,609,629,496,535,681,653,705,588,665,558
-2019F,SC,HLRCP,731,693,837,901,1067,1121,1115,1105,1191,1395,1404,1404,1547,1496,1270,1382,1522,1541,1468,1148,1192,1232,1030,1224,1244,1468,1325,1554,1556,1649,1328,1555,1671,1690,1725,1662,1541,1570,1329,1563,1797,1185,1517,1593,1673,1666,1332,1337,1502,1425,1615,1288,950,1062,1254,1034,991,1058,1168,1020
-2019F,SC,HLTCP,1376,1323,1601,1782,2109,2097,2089,2134,2311,2761,2927,3031,3415,3384,2957,3204,3652,3742,3734,2968,3178,2826,2606,2621,2520,3161,2880,3620,3536,3672,2914,3606,3597,3660,3871,3826,3666,6150,4601,3858,5038,3563,3362,3152,3117,3607,3243,2858,3088,2697,2968,2598,2196,2282,2738,2403,2399,2467,2540,2280
-2019F,SC,HLTXP,1376,1323,1601,1782,2109,2097,2089,2134,2311,2761,2927,3031,3415,3384,2957,3204,3652,3742,3734,2968,3178,2826,2606,2621,2520,3161,2880,3620,3536,3672,2914,3606,3597,3660,3871,3826,3666,6150,4601,3858,5038,3563,3362,3152,3117,3607,3243,2858,3088,2697,2968,2598,2196,2282,2738,2403,2399,2467,2540,2280
-2019F,SC,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3,3,3,2,3,1,1,1,0,1,2,3,2,1,1,1,1,0,0,4,3,2,2,1,2,2
-2019F,SC,HYEGP,3513,3149,2981,2601,4262,3438,2546,2593,2650,3035,2256,3439,3300,3862,3413,4366,3368,3002,3162,3908,2976,1208,2380,3049,3128,1786,1217,2160,631,2039,3296,3109,3308,2948,3032,3454,3038,2956,3567,1686,1533,1225,1389,3665,2445,2936,1805,1555,1123,2331,2375,1554,1420,3156,2566,2562,2224,1834,3011,2974
-2019F,SC,HYICP,97,89,85,73,93,79,65,61,52,55,37,46,48,46,43,48,47,49,45,51,49,49,49,49,49,49,49,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,HYTCP,3611,3238,3067,2674,4355,3517,2611,2654,2702,3089,2293,3485,3347,3908,3455,4413,3414,3050,3207,3959,3025,1257,2429,3098,3177,1835,1266,2209,680,2041,3298,3111,3310,2950,3035,3457,3041,2958,3569,1687,1533,1225,1390,3665,2447,2938,1807,1556,1123,2332,2376,1554,1420,3160,2569,2564,2226,1835,3014,2976
-2019F,SC,HYTXP,97,89,85,73,93,79,65,61,52,55,37,46,48,46,43,48,47,49,45,51,49,49,49,49,49,49,49,49,49,2,2,2,2,2,3,3,3,2,3,1,1,1,0,1,2,3,2,1,1,1,1,0,0,4,3,2,2,1,2,2
-2019F,SC,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,JFACP,3131,3174,3437,3556,3622,2958,3115,3461,4099,3650,3170,3258,3108,2794,2800,2692,2562,2732,2854,2941,3062,2865,2745,2529,3080,3184,3168,3193,3229,3117,2939,3442,2586,2024,1451,1027,1292,1328,1438,1536,1861,1851,1548,1459,1656,1609,1805,1881,1751,1076,1101,1153,1120,1122,1367,1386,1491,1759,2123,2345
-2019F,SC,JFTCP,3131,3174,3437,3556,3622,2958,3115,3461,4099,3650,3170,3258,3108,2794,2800,2692,2562,2732,2854,2941,3062,2865,2745,2529,3080,3184,3168,3193,3229,3117,2939,3442,2586,2024,1451,1027,1292,1328,1438,1536,1861,1851,1548,1459,1656,1609,1805,1881,1751,1076,1101,1153,1120,1122,1367,1386,1491,1759,2123,2345
-2019F,SC,JFTXP,3131,3174,3437,3556,3622,2958,3115,3461,4099,3650,3170,3258,3108,2794,2800,2692,2562,2732,2854,2941,3062,2865,2745,2529,3080,3184,3168,3193,3229,3117,2939,3442,2586,2024,1451,1027,1292,1328,1438,1536,1861,1851,1548,1459,1656,1609,1805,1881,1751,1076,1101,1153,1120,1122,1367,1386,1491,1759,2123,2345
-2019F,SC,KSCCP,93,97,103,94,78,70,69,74,68,62,54,67,51,44,27,23,26,22,20,26,25,29,25,24,40,48,55,53,26,71,12,12,14,20,26,26,23,16,47,30,54,40,24,22,26,27,27,18,18,6,18,5,2,1,1,1,1,1,3,3
-2019F,SC,KSICP,920,724,762,712,541,621,621,527,471,391,313,488,265,156,170,143,214,485,448,150,127,97,54,106,159,225,134,152,177,170,97,109,69,94,76,77,88,68,110,84,114,124,80,74,103,104,96,7,4,4,2,1,0,0,1,0,0,0,0,0
-2019F,SC,KSRCP,3475,3643,3876,3526,2929,2606,2590,2761,2537,2314,2011,2493,1896,1640,1023,858,957,843,744,974,1200,553,526,506,1194,1211,992,1154,1280,1186,550,731,441,645,372,470,561,610,680,553,514,498,291,377,544,476,362,192,80,79,123,55,20,23,40,28,35,16,27,23
-2019F,SC,KSTCP,4488,4464,4742,4332,3548,3297,3281,3362,3076,2766,2377,3047,2211,1840,1220,1024,1197,1350,1212,1150,1352,679,605,635,1393,1484,1181,1359,1484,1426,659,851,524,760,474,574,673,694,837,667,682,662,395,473,673,608,485,218,101,89,144,61,23,24,42,30,36,17,30,26
-2019F,SC,KSTXP,4488,4464,4742,4332,3548,3297,3281,3362,3076,2766,2377,3047,2211,1840,1220,1024,1197,1350,1212,1150,1352,679,605,635,1393,1484,1181,1359,1484,1426,659,851,524,760,474,574,673,694,837,667,682,662,395,473,673,608,485,218,101,89,144,61,23,24,42,30,36,17,30,26
-2019F,SC,LUACP,289,281,274,274,287,243,252,226,248,233,237,240,257,258,247,213,237,261,280,293,261,250,228,239,255,237,232,262,253,260,267,239,244,248,259,255,247,261,273,276,272,249,246,228,231,230,224,231,214,193,481,462,409,455,449,513,496,460,439,414
-2019F,SC,LUICP,86,83,89,89,93,108,112,108,119,147,149,149,160,235,225,248,276,282,303,317,282,271,247,259,276,257,251,284,274,281,289,259,264,269,281,276,268,283,296,299,295,270,267,247,250,249,242,250,232,209,271,253,234,236,242,279,277,261,251,241
-2019F,SC,LUTCP,375,365,362,362,380,351,365,334,366,379,386,389,417,493,472,461,513,543,583,610,543,521,475,497,530,494,483,546,527,541,556,498,507,517,540,531,515,544,570,575,567,519,513,474,481,478,466,481,447,402,752,715,643,691,691,792,772,721,690,655
-2019F,SC,LUTXP,375,365,362,362,380,351,365,334,366,379,386,389,417,493,472,461,513,543,583,610,543,521,475,497,530,494,483,546,527,541,556,498,507,517,540,531,515,544,570,575,567,519,513,474,481,478,466,481,447,402,752,715,643,691,691,792,772,721,690,655
-2019F,SC,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,MGACP,17205,17516,18312,19012,19415,20612,21945,22966,24890,26442,28220,30013,32425,34055,34014,34995,37012,37843,39631,37551,35181,35272,35138,35564,36627,36787,38409,37607,41952,41232,42305,41770,42622,44663,44804,46515,46944,48959,50770,52393,52672,52973,54314,54976,60597,58235,60658,60580,61555,64623,62479,60679,61621,62864,62662,65027,66117,66594,65384,65570
-2019F,SC,MGCCP,275,282,293,286,278,301,189,186,190,199,204,208,213,219,216,225,227,231,232,235,240,256,253,304,210,230,240,249,235,206,256,119,103,31,31,32,32,31,58,34,35,36,38,37,33,34,35,35,35,35,35,35,34,36,34,1171,1221,1236,1301,1300
-2019F,SC,MGICP,614,620,650,611,538,517,449,401,380,322,332,286,209,279,236,209,170,146,133,113,96,73,54,28,297,702,634,666,642,733,703,672,716,387,414,426,452,478,388,346,333,812,870,921,1061,1033,1086,713,763,744,518,507,524,550,463,595,594,600,618,619
-2019F,SC,MGTCP,18094,18417,19255,19910,20232,21430,22583,23553,25460,26962,28756,30506,32847,34554,34467,35429,37409,38220,39996,37899,35517,35600,35446,35896,37133,37719,39283,38522,42828,42171,43264,42561,43441,45081,45249,46973,47427,49468,51216,52774,53040,53822,55222,55935,61691,59302,61779,61328,62353,65402,63032,61221,62179,63449,63159,66793,67933,68430,67303,67489
-2019F,SC,MGTXP,18094,18417,19255,19910,20232,21430,22583,23553,25460,26962,28756,30506,32847,34554,34467,35429,37409,38220,39996,37899,35517,35600,35446,35896,37133,37719,39283,38522,42828,42171,43264,42561,43441,45081,45249,46973,47427,49468,51216,52774,53040,53822,55222,55935,61691,59302,61779,61328,62353,65402,63032,61221,62179,63449,63159,66793,67933,68430,67303,67489
-2019F,SC,MSICP,93,104,114,61,61,59,64,60,66,62,55,80,82,102,130,176,449,508,442,409,388,455,399,358,307,309,297,298,361,332,299,457,300,284,317,291,27,30,36,34,36,362,389,365,329,327,409,401,427,456,477,495,485,1275,1361,1407,1425,468,466,424
-2019F,SC,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,NGACP,1221,1448,1621,1962,2032,2301,2586,2419,2638,2853,3271,3195,3006,3524,2164,2641,3402,3197,3883,2898,3014,3196,2880,2634,2587,2244,2374,2388,2493,2581,2858,2808,2900,2755,2667,2940,3146,2951,3175,3604,3479,2940,3176,2832,2531,2433,2300,2619,2615,2857,3459,3417,3425,2547,2450,2575,2856,2360,2813,2309
-2019F,SC,NGCCP,4662,4922,6221,6477,6273,7043,6556,8840,10544,12938,13850,14371,14137,16053,14820,17202,35062,32117,24681,17943,22885,19436,15560,16548,16635,15270,15894,17195,17472,16525,15394,15796,16644,17014,17870,18868,20328,19560,19828,20566,22105,20743,21029,22365,22255,22048,20691,20927,22283,21953,24119,22113,21416,23862,25398,23752,23734,23128,25551,24926
-2019F,SC,NGEIP,23278,21824,21414,22066,18613,18801,18195,15149,28961,28895,45081,39834,24509,25117,21510,14566,3793,2504,5184,5177,5417,5008,517,942,435,483,1386,538,2378,2705,6975,9823,1795,1851,3005,6615,1206,2731,8703,10453,8501,10944,36710,13483,31266,45011,49716,50710,46154,74302,86830,100144,116010,93516,87330,136111,133646,135543,173518,182861
-2019F,SC,NGICP,22525,24990,32222,34352,40221,46785,57497,60357,68615,77978,78698,79256,81841,85695,73114,70329,73501,68892,55611,75626,92046,95304,61595,62767,69526,63038,61455,65340,69177,74534,86831,85790,94327,95557,97362,98332,95493,102929,102324,102635,97295,79674,96268,78807,78421,74002,77171,76286,71924,64655,73397,76973,81165,83730,83443,84898,88148,92198,96485,94907
-2019F,SC,NGRCP,6846,7744,9167,10242,11577,11935,11603,13774,16756,18162,18930,19607,20627,22758,20383,18211,33231,31875,28214,17675,18866,18980,17548,18741,19246,16434,17440,20200,20790,20472,18396,19612,22392,24345,23486,25164,29406,25741,25430,25669,29057,27485,27621,29154,29314,28537,24928,25158,27100,27160,32430,26851,22834,28642,31904,28414,27562,25538,31994,28871
-2019F,SC,NGTCP,58532,60928,70645,75099,78716,86865,96437,100539,127514,140826,159830,156263,144120,153147,131991,122949,148989,138585,117573,119319,142228,141924,98100,101632,108429,97469,98549,105661,112310,116818,130454,133828,138057,141522,144391,151919,149579,153912,159459,162927,160438,141785,184803,146641,163787,172032,174806,175701,170076,190927,220235,229498,244850,232297,230525,275750,275946,278767,330361,333874
-2019F,SC,NGTPP,24.5,25.3,29.2,30.5,31.8,34.8,38.3,39.7,49.8,54.8,61.5,58.7,53,55.2,46.4,42.4,50.6,46.3,38.6,38.6,45.4,44.6,30.6,31.4,33.1,29.5,29.5,31.3,32.9,33.8,37.3,37.5,38.1,38.6,39,40.5,39.4,39.9,40.7,41,39.9,34.9,45,35.3,38.9,40.3,40.1,39.5,37.6,41.6,47.5,49.1,51.9,48.7,47.8,56.3,55.6,55.5,64.9,64.7
-2019F,SC,NGTXP,35254,39104,49231,53033,60103,68064,78242,85390,98553,111931,114749,116429,119611,128030,110481,108383,145196,136081,112389,114142,136811,136916,97583,100690,107994,96986,97163,105123,109932,114113,123479,124005,136263,139671,141385,145303,148373,151181,150757,152474,151937,130841,148093,133158,132521,127021,125090,124990,123922,116625,133405,129354,128840,138781,143195,139639,142300,143224,156843,151013
-2019F,SC,NUEGP,0,0,0,0,39,75,73,8,0,0,7,2414,4829,6166,11057,19458,17850,17239,19457,18220,17404,17327,13156,25581,23235,31826,35625,39290,40746,40780,42881,43108,45537,46189,44466,49173,43571,44916,48759,50814,50888,49870,53326,50418,51201,53138,50797,53200,51763,52150,51988,52903,51145,54252,52419,53156,55826,54345,52716,56103
-2019F,SC,NUETP,0,0,0,0,39,75,73,8,0,0,7,2414,4829,6166,11057,19458,17850,17239,19457,18220,17404,17327,13156,25581,23235,31826,35625,39290,40746,40780,42881,43108,45537,46189,44466,49173,43571,44916,48759,50814,50888,49870,53326,50418,51201,53138,50797,53200,51763,52150,51988,52903,51145,54252,52419,53156,55826,54345,52716,56103
-2019F,SC,OPICP,380,377,378,285,194,201,175,166,185,187,183,286,296,361,386,402,716,742,692,656,628,646,551,524,478,478,458,472,537,505,471,861,766,759,715,655,227,212,226,221,190,630,686,618,527,548,567,551,573,542,563,570,555,1581,1675,1695,1701,643,637,593
-2019F,SC,OPTCP,380,377,378,285,194,201,175,166,185,187,183,286,296,361,386,402,716,742,692,656,628,646,551,524,478,478,458,472,537,505,471,861,766,759,715,655,227,212,226,221,190,630,686,618,527,548,567,551,573,542,563,570,555,1581,1675,1695,1701,643,637,593
-2019F,SC,OPTXP,380,377,378,285,194,201,175,166,185,187,183,286,296,361,386,402,716,742,692,656,628,646,551,524,478,478,458,472,537,505,471,861,766,759,715,655,227,212,226,221,190,630,686,618,527,548,567,551,573,542,563,570,555,1581,1675,1695,1701,643,637,593
-2019F,SC,P1ICP,3022,2791,2951,2908,2411,2652,2833,2730,2625,2737,2865,3029,2920,2944,3464,3232,3259,3625,3612,3094,3159,3710,3037,3310,2946,3184,3841,4820,5789,4599,4202,4362,4891,4586,4255,4915,4476,5441,5575,5952,5958,7462,6724,6902,9125,8889,9560,8292,7583,8802,6105,4899,4881,5037,5257,6289,6008,4750,4612,4730
-2019F,SC,P1TCP,7095,6983,7525,7098,6012,5924,6136,6154,5770,5598,5394,6030,5345,5068,4907,4468,4643,4892,4815,4543,4793,4676,3935,4212,4557,4817,5276,6409,7475,6235,5132,5523,5815,5668,5025,5789,5368,6392,6631,6912,6874,8321,7373,7701,10813,10162,10306,8841,8058,9804,6852,5491,5354,5553,5798,6884,6592,5283,5141,5236
-2019F,SC,P1TXP,7095,6983,7525,7098,6012,5924,6136,6154,5770,5598,5394,6030,5345,5068,4907,4468,4643,4892,4815,4543,4793,4676,3935,4212,4557,4817,5276,6409,7475,6235,5132,5523,5815,5668,5025,5789,5368,6392,6631,6912,6874,8321,7373,7621,10009,9719,10281,8841,7966,9174,6808,5491,5354,5553,5798,6884,6592,5283,5141,5236
-2019F,SC,PAACP,23188,23816,26060,27579,26654,27048,28873,29406,33053,34199,36420,38212,40145,43097,42606,42560,45302,46835,49061,48645,45686,45318,45369,46437,48566,49039,50726,50029,55040,53370,56713,58424,56530,57759,58917,59133,60356,63118,66613,68687,70100,70806,72262,73056,82904,79125,82783,82863,81693,84065,84384,83207,81224,84666,83223,87249,89721,91238,90956,90107
-2019F,SC,PACCP,1377,1369,1505,1442,1482,1391,1507,1483,1611,1706,1740,1791,1968,1907,1646,1589,2066,2146,1959,1789,1365,1423,1214,1835,1941,2017,1760,2089,2277,2151,1658,1523,1768,1813,1693,1913,1811,1876,2265,1883,1780,1539,1494,1361,1464,1495,1496,1437,1536,1099,1364,1235,1274,1185,1353,2427,2533,2637,2612,2547
-2019F,SC,PAEIP,33,26,49,88,28,60,138,287,680,1582,2798,1580,2291,4602,5647,4517,4571,6623,6523,3885,2647,2104,477,140,143,184,118,116,195,285,125,144,159,199,277,268,306,457,809,807,772,483,399,566,1223,846,276,364,264,844,281,167,180,182,472,343,168,182,585,143
-2019F,SC,PAICP,9261,9031,9447,9325,8697,7771,8265,8064,7764,7717,8234,9724,10600,10894,10117,9233,13662,15529,13959,12778,10743,9080,7602,8427,9480,8851,8772,10149,11929,10561,9959,10257,10468,10748,9737,10627,10624,13578,12152,11110,12570,14192,12474,14194,16794,17417,16074,13650,12186,12751,9369,7972,7928,7479,8073,9222,9235,7972,8090,7997
-2019F,SC,PARCP,5801,5919,6481,5936,5388,4904,5683,5808,5959,5992,5814,6111,5922,5429,4279,3935,4804,4745,4223,4100,3972,3214,2689,2905,3819,3966,3627,4308,4118,4259,3077,3441,2914,3224,2839,2824,2814,2715,2484,2618,2793,2102,2195,2415,2505,2383,1905,1700,1735,1661,1887,1453,1078,1163,1335,1151,1110,1155,1270,1117
-2019F,SC,PATCP,39661,40161,43542,44370,42249,41174,44467,45049,49067,51195,55006,57419,60926,65929,64295,61834,70404,75878,75725,71197,64414,61138,57351,59744,63948,64057,65002,66690,73560,70626,71532,73788,71839,73743,73463,74765,75911,81745,84323,85106,88016,89122,88824,91592,104891,101266,102534,100014,97413,100421,97284,94034,91684,94675,94456,100392,102766,103183,103513,101911
-2019F,SC,PATPP,16.6,16.7,18,18,17.1,16.5,17.6,17.8,19.2,19.9,21.2,21.6,22.4,23.7,22.6,21.3,23.9,25.4,24.9,23,20.6,19.2,17.9,18.5,19.5,19.4,19.4,19.7,21.6,20.4,20.4,20.7,19.8,20.1,19.8,19.9,20,21.2,21.5,21.4,21.9,21.9,21.6,22.1,24.9,23.7,23.5,22.5,21.5,21.9,21,20.1,19.4,19.9,19.6,20.5,20.7,20.5,20.3,19.8
-2019F,SC,PATXP,39628,40135,43493,44282,42221,41113,44328,44761,48388,49613,52208,55838,58634,61327,58648,57317,65833,69255,69202,67313,61767,59035,56874,59604,63806,63872,64885,66574,73365,70341,71407,73644,71680,73543,73186,74497,75605,81288,83514,84299,87244,88639,88425,91027,103668,100420,102258,99650,97149,99577,97003,93867,91505,94493,93984,100049,102598,103002,102928,101768
-2019F,SC,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,804,443,24,0,92,629,45,0,0,0,0,0,0,0,0,0
-2019F,SC,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,1241,982,521,791,857,929,1487,1503,1330,1362,1192,1725,1107,1189,1266,1486,1150,2406,3121,2128,3915,3448,3429,5049,4679,5524,4890,4729,5768,3079,2030,2406,1501,1673,2397,1866,1304,1458,1250
-2019F,SC,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,1241,982,521,791,857,929,1487,1503,1330,1362,1192,1725,1107,1189,1266,1486,1150,2406,3121,2128,3915,3448,3508,5853,5121,5549,4890,4822,6397,3123,2030,2406,1501,1673,2397,1866,1304,1458,1250
-2019F,SC,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,1241,982,521,791,857,929,1487,1503,1330,1362,1192,1725,1107,1189,1266,1486,1150,2406,3121,2128,3915,3448,3429,5049,4679,5524,4890,4729,5768,3079,2030,2406,1501,1673,2397,1866,1304,1458,1250
-2019F,SC,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38,40,38,34,20,21,26,36,32,28
-2019F,SC,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,707,640,711,651,783,695,678,784,675,674
-2019F,SC,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,609,629,496,535,681,653,705,588,665,558
-2019F,SC,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1615,1288,950,1062,1254,1034,991,1058,1168,1020
-2019F,SC,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2968,2598,2196,2282,2738,2403,2399,2467,2540,2280
-2019F,SC,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2968,2598,2196,2282,2738,2403,2399,2467,2540,2280
-2019F,SC,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SC,RFACP,1139,1568,2421,2377,1225,1313,1570,813,1110,927,1605,1409,1090,1227,869,419,672,424,604,790,844,1066,811,935,932,606,607,588,772,667,502,787,528,626,75,432,662,550,418,377,373,279,516,594,1993,1562,1715,1563,1424,1831,2185,2672,2189,1545,962,1650,1500,2373,2388,133
-2019F,SC,RFCCP,176,179,172,172,188,121,114,104,106,82,80,170,208,229,189,160,376,434,389,377,35,101,27,75,103,80,33,34,47,37,17,25,52,28,65,38,37,10,6,10,50,113,19,18,47,77,17,14,1,0,0,1,0,0,2,6,14,2,30,0
-2019F,SC,RFEIP,24,19,36,64,20,44,101,210,496,1155,2042,887,1402,3939,5212,4400,4264,5059,5664,3463,2080,1601,281,8,0,1,2,2,2,33,8,11,15,60,9,68,39,56,198,250,166,84,68,37,67,72,29,45,4,35,11,0,0,0,0,0,0,0,0,0
-2019F,SC,RFICP,3392,3345,3277,3226,3587,2438,2302,2124,1947,1606,1608,3088,3661,4014,3305,2687,6314,7234,6536,6298,4245,2580,2013,2915,3979,2233,1759,1835,2454,1983,1888,1597,1773,3049,2419,2111,2245,1974,1589,1120,1734,1700,1477,3167,3433,3328,1828,1603,1034,919,667,524,328,175,183,66,181,51,146,57
-2019F,SC,RFTCP,4732,5112,5906,5839,5020,3916,4088,3251,3660,3770,5335,5554,6362,9410,9575,7666,11626,13151,13193,10928,7205,5349,3133,3933,5013,2921,2401,2458,3274,2719,2416,2419,2368,3763,2568,2649,2984,2590,2212,1757,2324,2178,2079,3816,5540,5039,3589,3226,2464,2786,2864,3196,2518,1720,1147,1722,1694,2426,2564,191
-2019F,SC,RFTXP,4707,5093,5870,5775,5000,3872,3987,3041,3164,2615,3294,4666,4959,5471,4363,3266,7362,8092,7529,7465,5125,3748,2852,3925,5013,2919,2399,2456,3272,2687,2408,2408,2353,3703,2559,2581,2945,2534,2014,1507,2158,2093,2011,3779,5473,4967,3560,3181,2459,2751,2853,3196,2518,1720,1147,1722,1694,2426,2564,191
-2019F,SC,SGICP,153,140,144,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,SNICP,0,0,0,0,25,27,28,23,25,27,29,50,53,54,54,46,51,53,64,65,63,16,15,18,24,18,15,17,13,12,12,293,348,348,270,236,28,27,40,55,37,143,187,147,93,114,63,70,76,41,23,20,13,241,256,239,225,142,130,135
-2019F,SC,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,10,33,64,79
-2019F,SC,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,5,80,510,855
-2019F,SC,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,13,22,30
-2019F,SC,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,5,24,92,163,222
-2019F,SC,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,3,9,11,41,217,759,1187
-2019F,SC,TPOPP,2392,2409,2423,2460,2475,2494,2520,2533,2559,2570,2597,2662,2719,2777,2845,2902,2944,2992,3044,3090,3135,3179,3208,3234,3272,3303,3343,3381,3412,3457,3501,3570,3620,3663,3705,3749,3796,3860,3919,3975,4024,4065,4108,4150,4211,4270,4358,4444,4529,4590,4636,4673,4719,4766,4827,4896,4963,5027,5092,5158
-2019F,SC,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,WXICP,134,132,120,115,108,116,84,83,94,99,99,156,160,206,202,180,216,181,186,182,178,175,137,149,147,151,147,157,163,161,160,111,118,127,129,129,172,155,150,132,117,124,110,106,105,107,96,80,70,45,62,55,56,65,58,49,51,34,41,34
-2019F,SC,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SC,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,ARICP,724,759,562,851,801,588,752,724,713,747,894,964,1019,1236,865,862,739,561,782,793,638,528,638,534,805,841,815,674,878,776,790,768,887,644,629,821,1136,1354,1294,1879,1733,1058,1034,1326,1161,1811,1661,1042,1183,1054,1239,776,1196,714,689,707,561,726,692,792
-2019F,SD,ARTCP,724,759,562,851,801,588,752,724,713,747,894,964,1019,1236,865,862,739,561,782,793,638,528,638,534,805,841,815,674,878,776,790,768,887,644,629,821,1136,1354,1294,1879,1733,1058,1034,1326,1161,1811,1661,1042,1183,1054,1239,776,1196,714,689,707,561,726,692,792
-2019F,SD,ARTXP,724,759,562,851,801,588,752,724,713,747,894,964,1019,1236,865,862,739,561,782,793,638,528,638,534,805,841,815,674,878,776,790,768,887,644,629,821,1136,1354,1294,1879,1733,1058,1034,1326,1161,1811,1661,1042,1183,1054,1239,776,1196,714,689,707,561,726,692,792
-2019F,SD,AVACP,106,75,105,144,132,128,159,148,128,101,99,83,88,74,87,77,74,79,78,81,97,103,107,98,85,87,85,80,89,88,93,61,62,53,48,46,53,48,33,59,51,42,29,34,38,31,51,50,34,21,29,32,32,29,33,25,25,23,25,24
-2019F,SD,AVTCP,106,75,105,144,132,128,159,148,128,101,99,83,88,74,87,77,74,79,78,81,97,103,107,98,85,87,85,80,89,88,93,61,62,53,48,46,53,48,33,59,51,42,29,34,38,31,51,50,34,21,29,32,32,29,33,25,25,23,25,24
-2019F,SD,AVTXP,106,75,105,144,132,128,159,148,128,101,99,83,88,74,87,77,74,79,78,81,97,103,107,98,85,87,85,80,89,88,93,61,62,53,48,46,53,48,33,59,51,42,29,34,38,31,51,50,34,21,29,32,32,29,33,25,25,23,25,24
-2019F,SD,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,5,16,45,61,52,55,45,152,149,236,213,191,270,225,213,170
-2019F,SD,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,5,16,45,61,52,55,45,152,149,236,213,191,270,225,213,170
-2019F,SD,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,CLACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,CLCCP,50,47,45,37,32,29,31,27,22,18,14,14,13,14,25,17,6,17,6,12,13,47,17,3,6,13,18,3,3,2,2,3,1,1,13,6,1,1,0,1,1,8,1,1,1,1,1,1,9,7,8,0,2,0,0,0,0,0,0,0
-2019F,SD,CLEIP,246,241,256,250,226,237,218,247,251,275,301,303,284,360,406,1804,2658,2536,2811,2702,2683,2536,2433,2201,2487,2407,2018,865,2388,2281,2345,2570,2402,2360,2570,2137,1453,2005,1866,2159,2211,2212,2051,2174,2328,1880,2064,1691,2359,2107,2164,1768,1950,1847,1780,990,1403,1355,1493,1690
-2019F,SD,CLICP,5,4,3,4,4,4,4,4,3,5,5,4,4,3,4,59,172,173,185,55,127,166,293,204,225,279,240,232,199,257,223,289,267,335,451,393,398,436,450,489,602,378,306,368,245,277,275,272,194,124,162,188,202,206,215,197,212,224,181,218
-2019F,SD,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,CLOCP,5,4,3,4,4,4,4,4,3,5,5,4,4,3,4,59,172,173,185,55,127,166,293,204,225,279,240,232,199,257,223,289,267,335,451,393,398,436,450,489,602,378,306,368,245,277,275,272,194,124,162,188,202,206,215,197,212,224,181,218
-2019F,SD,CLRCP,72,68,65,51,44,39,41,35,28,22,18,13,10,8,12,7,2,6,2,3,4,10,3,1,1,4,5,1,1,1,1,1,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,CLTCP,374,360,370,342,307,310,294,313,304,320,338,335,312,385,446,1888,2838,2732,3004,2771,2827,2759,2746,2409,2719,2703,2281,1101,2591,2541,2571,2863,2670,2696,3036,2537,1852,2442,2316,2649,2815,2599,2358,2543,2574,2158,2340,1964,2562,2238,2333,1956,2155,2053,1995,1187,1615,1579,1674,1908
-2019F,SD,CLTXP,128,119,114,92,81,73,76,66,53,45,37,32,27,26,41,84,180,196,193,70,144,223,313,208,232,296,263,236,203,260,226,293,268,336,466,400,399,437,450,490,604,387,308,369,246,278,276,273,203,132,169,188,205,206,215,197,212,224,181,218
-2019F,SD,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,DFACP,362,509,645,814,802,635,728,620,734,917,929,1279,1045,1284,1235,1337,1553,1598,1778,2306,1977,1821,2132,2163,2294,2322,2143,2272,2263,2169,2352,2466,2598,2729,3164,3203,3346,3325,3274,3447,3425,3614,4551,4027,4311,4562,4752,5142,4866,4985,5419,5355,5736,5456,5763,5811,5536,5540,5889,5945
-2019F,SD,DFCCP,226,219,210,201,248,269,287,275,288,246,303,272,311,279,236,228,156,112,125,376,365,250,284,218,268,288,285,456,364,257,242,191,243,248,242,301,251,263,237,202,195,251,180,131,194,204,158,225,166,172,195,232,178,169,144,134,120,106,114,144
-2019F,SD,DFEIP,7,7,13,8,6,8,7,7,7,16,48,38,59,22,17,67,24,34,88,67,58,54,52,42,26,39,38,21,48,33,32,35,19,32,50,48,33,23,68,59,136,107,18,43,56,52,19,140,50,24,18,21,18,21,23,38,11,15,20,34
-2019F,SD,DFICP,1780,1781,1787,1805,2139,2177,2289,2195,2030,1946,2332,2337,2338,1957,1608,1635,1209,988,1412,2664,1640,1589,1735,1443,1772,1734,2678,2635,2807,2381,2377,2334,2164,2530,2572,2202,2284,2055,1913,2036,1930,1978,1776,1753,1748,1804,1696,2108,1914,1946,1754,2270,1965,2213,1885,1926,1902,1800,1880,1847
-2019F,SD,DFRCP,567,550,529,507,624,677,723,693,725,618,763,684,783,701,595,574,392,281,315,946,762,700,873,608,746,772,1095,942,969,1049,936,802,470,594,488,501,623,463,382,336,351,366,267,314,246,229,219,177,218,126,127,122,109,93,85,82,73,66,114,92
-2019F,SD,DFTCP,2941,3066,3184,3335,3819,3766,4035,3792,3784,3742,4375,4610,4536,4243,3691,3841,3334,3013,3718,6359,4801,4414,5076,4473,5106,5154,6239,6326,6450,5889,5939,5827,5495,6134,6516,6255,6537,6129,5874,6080,6036,6317,6792,6268,6555,6850,6844,7791,7215,7252,7514,7999,8006,7951,7901,7992,7642,7527,8017,8061
-2019F,SD,DFTXP,2934,3058,3171,3327,3813,3758,4027,3784,3777,3726,4327,4572,4476,4221,3674,3774,3310,2979,3630,6293,4743,4361,5024,4431,5080,5115,6201,6305,6402,5856,5907,5793,5476,6102,6466,6207,6504,6105,5806,6021,5900,6210,6774,6225,6499,6798,6825,7652,7165,7229,7496,7979,7988,7930,7878,7954,7631,7512,7997,8028
-2019F,SD,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,44,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,22,271,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,668,915,1061,2524,55,-467,-1377,-3816,-320,-1877,-424,2147,2225,2166,2835,4414,4057,5307,4734,3614,2108,477,1098,2941,2163,3258,1386,2130,974,-908
-2019F,SD,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,-30,227,13,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,28,64,82,90,126,132,131,152,133,306,402,444,514,479,338,377,441,487,532,488,555,545,508,620,578,782,914,941,1087,1025,1056,1062,1083,1144,1157,1147,1136,1122
-2019F,SD,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,2,2,1,1,1,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,13,14,14,14,14
-2019F,SD,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,10,9,7,9,10,8,10,8,17,19,27,25,27,19,22,17,22,23,32,35,39,44,52,52,45,38,38,34,33,31,32,30,29,27,27,27,26
-2019F,SD,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,33,74,93,98,138,144,141,163,142,325,424,471,540,506,357,399,458,509,555,522,591,585,553,673,631,827,954,981,1122,1059,1088,1095,1114,1187,1197,1188,1177,1162
-2019F,SD,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,ESCCP,409,473,524,579,607,645,703,740,800,853,937,994,1079,1126,1153,995,979,985,1133,1140,1139,1203,1235,1267,1791,1863,1603,1629,1760,1803,1811,1919,1874,1948,2265,2424,2525,2555,2653,2671,2857,3380,3600,3713,3627,3998,4054,4181,4240,4238,4368,4447,4557,4662,4572,4749,4698,4723,4903,4888
-2019F,SD,ESICP,258,219,222,221,239,246,260,270,277,272,281,284,285,326,360,994,1188,1252,1126,1271,1322,1253,1280,1388,991,1019,1316,1402,1562,1612,1657,1726,1777,1847,1762,1722,1785,1841,1868,1949,2003,1666,1604,1627,1891,1840,1952,2161,2328,2260,2360,2586,2724,2724,2955,2782,2813,2938,2935,2924
-2019F,SD,ESRCP,847,949,1026,1088,1136,1183,1239,1258,1354,1466,1586,1665,1806,1843,1914,2068,2139,2198,2493,2656,2623,2503,2616,2769,2766,2769,2754,2680,2913,2923,2866,3040,2843,3109,3147,3268,3426,3376,3303,3302,3423,3580,3733,3740,3696,3973,4051,4261,4406,4511,4628,4646,4454,4824,4827,4571,4619,4653,5018,5057
-2019F,SD,ESRPP,1240,1369,1456,1537,1621,1709,1814,1875,2024,2195,2374,2481,2667,2716,2816,3036,3116,3193,3620,3859,3797,3630,3788,3996,3966,3964,3957,3851,4173,4195,4112,4320,3988,4305,4306,4429,4616,4537,4428,4400,4529,4724,4912,4897,4797,5123,5173,5382,5513,5590,5670,5641,5341,5724,5681,5349,5348,5325,5707,5700
-2019F,SD,ESTCP,1514,1641,1772,1888,1982,2074,2201,2268,2431,2591,2803,2943,3170,3295,3426,4057,4305,4436,4752,5067,5084,4960,5131,5425,5548,5650,5674,5711,6235,6338,6334,6685,6494,6905,7174,7414,7736,7773,7824,7922,8283,8627,8937,9080,9214,9811,10056,10603,10974,11010,11356,11680,11734,12210,12355,12102,12130,12314,12857,12869
-2019F,SD,ESTPP,2217,2367,2514,2667,2828,2997,3222,3380,3634,3879,4196,4385,4680,4855,5041,5956,6272,6443,6901,7361,7359,7192,7430,7828,7957,8091,8151,8205,8930,9097,9086,9500,9110,9561,9817,10046,10423,10444,10487,10557,10958,11382,11759,11889,11960,12651,12843,13394,13733,13642,13914,14179,14072,14488,14541,14160,14044,14093,14620,14506
-2019F,SD,ESTXP,1514,1641,1772,1888,1982,2074,2201,2268,2431,2591,2803,2943,3170,3295,3426,4057,4305,4436,4752,5067,5084,4960,5131,5425,5548,5650,5674,5711,6235,6338,6334,6685,6494,6905,7174,7414,7736,7773,7824,7922,8283,8627,8937,9080,9214,9811,10056,10603,10974,11010,11356,11680,11734,12210,12355,12102,12130,12314,12857,12869
-2019F,SD,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,FSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,HLACP,22,25,25,29,26,24,36,62,65,58,50,60,65,61,51,57,45,43,38,60,69,54,54,64,28,24,25,46,19,20,23,14,18,26,39,15,14,9,12,5,14,13,25,16,10,13,12,16,41,24,5,10,10,10,9,10,8,2,10,17
-2019F,SD,HLCCP,202,207,222,224,210,227,237,289,310,359,381,373,424,378,345,378,365,382,399,207,221,176,179,213,114,133,159,246,179,269,328,201,191,257,242,262,352,340,275,264,315,261,303,387,190,185,204,289,342,425,358,242,216,216,318,184,226,285,240,215
-2019F,SD,HLICP,93,114,96,146,117,108,145,195,225,267,298,300,448,516,584,527,715,1358,678,1104,1090,634,1063,855,281,389,552,783,448,1932,1632,532,728,972,755,652,709,503,433,341,625,440,1117,683,989,773,818,830,592,715,360,295,350,526,400,421,468,406,496,575
-2019F,SD,HLRCP,1053,1076,1159,1166,1096,1182,1237,1504,1614,1870,1984,1943,2212,1968,1800,1969,1902,1990,2077,1081,1150,915,935,1112,596,694,830,1283,932,1401,1709,1048,993,1337,1262,1366,1833,1774,1431,1377,1643,1358,1577,1531,1252,1230,1136,1273,1704,1569,1313,1259,1050,1213,1156,1023,1117,1054,1237,1528
-2019F,SD,HLTCP,1370,1422,1502,1565,1449,1541,1656,2050,2213,2554,2712,2675,3149,2922,2780,2930,3027,3773,3192,2453,2530,1779,2231,2245,1019,1241,1567,2358,1579,3623,3691,1794,1930,2591,2298,2294,2908,2627,2151,1988,2597,2071,3022,2618,2441,2201,2171,2409,2679,2732,2036,1806,1625,1964,1883,1638,1818,1748,1983,2335
-2019F,SD,HLTXP,1370,1422,1502,1565,1449,1541,1656,2050,2213,2554,2712,2675,3149,2922,2780,2930,3027,3773,3192,2453,2530,1779,2231,2245,1019,1241,1567,2358,1579,3623,3691,1794,1930,2591,2298,2294,2908,2627,2151,1988,2597,2071,3022,2618,2441,2201,2171,2409,2679,2732,2036,1806,1625,1964,1883,1638,1818,1748,1983,2335
-2019F,SD,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,HYEGP,1136,1126,1480,2879,3062,3835,4815,4896,5614,6318,6544,7741,7390,4795,5624,7890,7018,5261,6799,6326,5786,5274,5394,5494,5690,5301,5704,5354,5254,4583,3934,3828,3612,2591,5129,6010,7978,9012,5758,6677,5716,3432,4354,4276,3598,3075,3397,2917,2993,4432,5239,6608,5981,4063,5498,4850,4806,5256,6266,7915
-2019F,SD,HYICP,20,16,22,30,32,38,34,34,31,32,35,37,42,42,37,36,34,33,32,33,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,HYTCP,1156,1142,1502,2909,3094,3872,4849,4930,5645,6350,6579,7778,7432,4837,5661,7927,7052,5294,6831,6359,5818,5306,5426,5526,5722,5333,5736,5386,5286,4583,3934,3828,3612,2591,5129,6010,7978,9012,5758,6677,5716,3432,4354,4276,3598,3075,3397,2917,2993,4432,5239,6608,5981,4063,5498,4850,4806,5256,6266,7915
-2019F,SD,HYTXP,20,16,22,30,32,38,34,34,31,32,35,37,42,42,37,36,34,33,32,33,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,JFACP,1145,1164,1254,1290,1333,1111,1161,1282,1532,1390,1173,1207,1138,1071,1102,1056,1011,1083,1334,1326,1311,1136,1138,956,1024,1019,516,669,875,1024,1097,367,1272,1190,1305,1463,1014,697,819,770,1024,967,919,769,776,996,945,880,659,707,408,415,405,478,430,480,470,537,432,446
-2019F,SD,JFTCP,1145,1164,1254,1290,1333,1111,1161,1282,1532,1390,1173,1207,1138,1071,1102,1056,1011,1083,1334,1326,1311,1136,1138,956,1024,1019,516,669,875,1024,1097,367,1272,1190,1305,1463,1014,697,819,770,1024,967,919,769,776,996,945,880,659,707,408,415,405,478,430,480,470,537,432,446
-2019F,SD,JFTXP,1145,1164,1254,1290,1333,1111,1161,1282,1532,1390,1173,1207,1138,1071,1102,1056,1011,1083,1334,1326,1311,1136,1138,956,1024,1019,516,669,875,1024,1097,367,1272,1190,1305,1463,1014,697,819,770,1024,967,919,769,776,996,945,880,659,707,408,415,405,478,430,480,470,537,432,446
-2019F,SD,KSCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,KSICP,72,39,22,22,36,39,31,60,55,40,2,1,1,6,2,2,101,82,99,22,5,10,4,7,9,5,11,4,5,6,3,3,4,1,1,2,3,2,1,2,2,3,1,2,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0
-2019F,SD,KSRCP,903,842,875,910,918,524,337,60,305,184,14,9,6,8,3,3,126,91,103,13,10,14,22,27,24,35,23,15,14,9,4,4,4,6,4,4,5,6,5,4,4,4,3,2,3,3,2,2,1,1,2,1,0,0,0,0,7,0,0,0
-2019F,SD,KSTCP,975,881,898,932,955,563,368,120,360,224,16,10,7,14,5,5,227,174,202,35,15,24,37,35,33,41,36,19,19,14,8,7,8,7,5,6,9,9,7,7,6,8,6,6,5,7,4,2,1,2,2,1,0,0,1,0,8,0,0,1
-2019F,SD,KSTXP,975,881,898,932,955,563,368,120,360,224,16,10,7,14,5,5,227,174,202,35,15,24,37,35,33,41,36,19,19,14,8,7,8,7,5,6,9,9,7,7,6,8,6,6,5,7,4,2,1,2,2,1,0,0,1,0,8,0,0,1
-2019F,SD,LUACP,174,169,170,170,178,143,149,127,139,149,151,148,159,162,155,140,155,156,167,175,156,150,136,143,152,142,139,157,151,155,160,143,146,148,155,152,148,156,164,165,163,149,147,136,138,137,134,138,128,115,105,99,98,98,103,114,105,96,93,88
-2019F,SD,LUICP,19,19,16,16,17,15,16,16,18,14,14,16,17,32,31,20,22,4,4,4,4,3,3,3,4,3,3,4,3,4,4,3,3,3,4,4,3,4,4,4,4,3,3,3,3,3,3,3,3,3,41,40,36,37,38,40,41,39,37,34
-2019F,SD,LUTCP,193,188,186,186,195,158,164,143,157,163,166,164,176,194,186,160,178,159,171,179,160,153,140,146,156,145,142,161,155,159,163,146,149,152,159,156,151,160,167,169,167,153,151,139,141,140,137,141,131,118,146,140,134,134,141,154,146,134,130,122
-2019F,SD,LUTXP,193,188,186,186,195,158,164,143,157,163,166,164,176,194,186,160,178,159,171,179,160,153,140,146,156,145,142,161,155,159,163,146,149,152,159,156,151,160,167,169,167,153,151,139,141,140,137,141,131,118,146,140,134,134,141,154,146,134,130,122
-2019F,SD,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,MGACP,5909,6142,6413,6489,6275,6454,6633,6778,7110,7051,7645,8152,9006,8863,8687,8952,9452,9796,9594,9053,8150,7907,7855,7656,7839,8487,8260,8256,8506,8467,8419,8581,8863,9015,9365,9462,9596,9588,10043,9880,9875,9543,9944,9604,9548,9470,9360,9761,9662,10336,10242,10270,10610,10421,10666,10978,11164,11022,11010,10675
-2019F,SD,MGCCP,37,39,41,42,44,46,43,45,47,49,50,51,51,55,58,58,59,60,62,63,65,70,76,98,138,98,151,130,126,118,78,54,54,11,11,11,11,11,11,11,11,30,28,12,12,12,12,12,12,12,12,12,12,12,12,129,132,133,132,133
-2019F,SD,MGICP,2615,2490,2616,2581,2504,2455,2456,2362,2344,2367,2209,2041,1715,2071,1957,1626,1433,1442,1761,1656,1473,1215,1129,1198,907,694,594,631,544,541,489,484,429,539,463,534,540,566,386,446,418,631,627,692,829,791,845,557,402,420,323,327,309,316,296,283,257,259,261,250
-2019F,SD,MGTCP,8561,8671,9070,9113,8822,8955,9131,9184,9500,9467,9903,10244,10771,10989,10702,10636,10944,11298,11417,10772,9688,9192,9060,8952,8885,9279,9004,9016,9175,9126,8986,9119,9345,9565,9839,10007,10148,10165,10440,10337,10304,10204,10599,10307,10389,10273,10217,10330,10075,10768,10577,10608,10931,10749,10973,11390,11553,11415,11404,11058
-2019F,SD,MGTXP,8561,8671,9070,9113,8822,8955,9131,9184,9500,9467,9903,10244,10771,10989,10702,10636,10944,11298,11417,10772,9688,9192,9060,8952,8885,9279,9004,9016,9175,9126,8986,9119,9345,9565,9839,10007,10148,10165,10440,10337,10304,10204,10599,10307,10389,10273,10217,10330,10075,10768,10577,10608,10931,10749,10973,11390,11553,11415,11404,11058
-2019F,SD,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,NGACP,46,52,44,38,44,30,39,50,23,15,10,5,10,12,16,32,31,27,32,398,76,66,116,127,104,228,108,125,130,130,110,340,1746,2570,2547,2733,2898,2957,2814,6030,6280,5787,6078,6333,6235,5751,5422,5690,4686,3240,5806,6692,6402,6888,5221,5872,6405,6551,6515,6521
-2019F,SD,NGCCP,7215,7623,7750,7348,8493,8801,9458,10444,10723,11201,11361,10592,11204,10568,11671,11488,15344,14786,13547,9951,8507,8188,9384,8651,9128,9987,9166,8199,8396,8826,8555,9473,9122,10696,10274,10685,11598,10422,9264,9564,10119,9711,10258,10375,9958,9819,9525,10337,11362,11563,11025,11101,9330,12151,12310,10434,10439,10813,12573,13405
-2019F,SD,NGEIP,4454,4894,5801,4320,4161,3359,3457,3455,3748,3476,4364,3319,3526,4060,3633,3232,1244,182,24,129,259,55,30,45,52,26,41,77,223,132,235,177,48,186,159,931,725,1731,2865,2527,3607,4496,1265,2264,1676,3567,3345,4235,2632,918,1600,1589,2465,4071,3865,6128,7410,5713,9099,9099
-2019F,SD,NGICP,5154,5351,5262,5064,5630,4680,5489,3876,4019,6228,6800,5480,6155,5391,5418,5813,8078,6961,6946,3416,4678,3989,3975,3855,4314,3604,3421,3398,4791,5074,5951,5051,4939,5428,5944,7338,7606,7839,6455,5906,5326,4749,11079,11734,11529,11206,10934,21274,33011,36869,41317,41262,41298,44955,45004,44914,44595,45667,46997,46037
-2019F,SD,NGRCP,7664,7900,8556,8389,9311,10095,9813,9910,10302,12906,13784,12436,13182,11190,11338,11969,14510,14141,14874,11830,10558,9758,11584,10648,10994,11357,10557,9288,10687,11342,10204,11218,10791,12431,12056,12610,14085,13203,11646,11766,12608,12335,12897,13175,12281,12212,11514,12402,13566,13595,12815,12961,10742,13920,14213,11751,11663,12146,14280,14809
-2019F,SD,NGTCP,24533,25820,27413,25159,27639,26965,28256,27735,28815,33826,36319,31832,34077,31221,32076,32534,39207,36097,35423,25724,24078,22056,25089,23326,24592,25202,23293,21087,24227,25505,25055,26260,26645,31311,30980,34296,36913,36152,33043,35794,37940,37077,41577,43882,41679,42555,40739,53938,65257,66185,72563,73605,70237,81985,80614,79099,80513,80890,89464,89871
-2019F,SD,NGTPP,35.9,37.3,38.9,35.5,39.4,39,41.4,41.3,43.1,50.6,54.4,47.4,50.3,46,47.2,47.8,57.1,52.4,51.4,37.4,34.9,32,36.3,33.7,35.3,36.1,33.5,30.3,34.7,36.6,35.9,37.3,37.4,43.4,42.4,46.5,49.7,48.6,44.3,47.7,50.2,48.9,54.7,57.5,54.1,54.9,52,68.1,81.7,82,88.9,89.4,84.2,97.3,94.9,92.5,93.2,92.6,101.7,101.3
-2019F,SD,NGTXP,20079,20926,21612,20839,23478,23606,24799,24280,25067,30350,31955,28513,30551,27161,28443,29302,37963,35915,35399,25595,23819,22001,25059,23281,24540,25176,23252,21010,24004,25373,24819,26083,26597,31125,30822,33365,36188,34421,30178,33267,34333,32582,40312,41617,40003,38988,37394,49703,62625,65267,70963,72016,67772,77914,76748,72971,73102,75177,80365,80772
-2019F,SD,NUEGP,0,0,0,0,0,0,9,67,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,NUETP,0,0,0,0,0,0,9,67,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,OPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,19,21,21,21,12,11,11,9,8,25,22,21,21,22,10,8,7,4,6,5,6,6,6,5,5,4,5,4
-2019F,SD,OPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,19,21,21,21,12,11,11,9,8,25,22,21,21,22,10,8,7,4,6,5,6,6,6,5,5,4,5,4
-2019F,SD,OPTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,19,21,21,21,12,11,11,9,8,25,22,21,21,22,10,8,7,4,6,5,6,6,6,5,5,4,5,4
-2019F,SD,P1ICP,816,816,600,889,855,642,799,800,786,801,911,981,1037,1274,898,884,862,647,884,819,646,541,645,544,817,850,830,682,887,785,797,792,914,669,655,847,1155,1371,1310,1894,1746,1089,1061,1353,1186,1836,1675,1054,1193,1062,1286,822,1238,757,733,752,607,768,734,830
-2019F,SD,P1TCP,1999,1903,1750,2113,2083,1437,1444,1134,1358,1235,1175,1221,1290,1518,1143,1104,1217,974,1233,1089,909,808,922,813,1079,1114,1077,934,1141,1038,1054,1001,1125,876,862,1050,1361,1582,1512,2123,1964,1285,1242,1528,1367,2010,1863,1244,1357,1200,1423,954,1369,884,870,891,744,888,853,943
-2019F,SD,P1TXP,1999,1903,1750,2113,2083,1437,1444,1134,1358,1235,1175,1221,1290,1518,1143,1104,1217,974,1233,1089,909,808,922,813,1079,1114,1077,934,1141,1038,1054,1001,1125,876,862,1050,1361,1582,1512,2123,1964,1285,1242,1528,1367,2010,1863,1244,1357,1200,1423,954,1369,884,870,891,744,888,853,943
-2019F,SD,PAACP,7729,8084,8612,8936,8745,8496,8869,9022,9713,9673,10052,10932,11501,11515,11317,11618,12292,12757,12990,13002,11760,11170,11422,11081,11423,12081,11168,11480,11902,11924,12145,11632,12959,13161,14076,14341,14171,13824,14345,14326,14551,14328,15616,14587,14821,15209,15254,15988,15390,16188,16209,16181,16892,16491,17004,17419,17308,17220,17459,17195
-2019F,SD,PACCP,480,474,516,545,529,549,579,616,660,686,750,704,811,731,656,684,633,612,627,691,670,510,563,593,563,539,603,839,691,666,672,481,524,517,501,577,614,623,529,486,591,548,512,532,410,404,376,538,529,611,568,487,406,397,474,447,478,525,494,502
-2019F,SD,PAEIP,47,48,85,54,39,55,49,50,48,106,318,212,314,186,89,212,179,139,241,151,67,54,53,42,27,40,39,23,58,33,32,35,19,32,50,48,33,23,68,59,136,107,18,43,56,52,19,140,50,24,18,21,18,21,23,38,11,15,20,34
-2019F,SD,PAICP,5339,5219,5183,5574,5677,5397,5720,5569,5448,5446,5784,5684,5601,5869,5091,4725,4318,4555,4822,6335,4943,4123,4608,4111,3825,3683,4704,4777,4738,5683,5330,4174,4341,4825,4527,4246,4728,4551,4137,4797,4783,4240,4684,4526,4833,5266,5062,4570,4136,4163,3724,3752,3862,3813,3319,3387,3241,3242,3372,3502
-2019F,SD,PARCP,2524,2469,2563,2584,2638,2383,2298,2257,2644,2672,2761,2636,3000,2677,2397,2545,2419,2363,2496,2040,1922,1629,1830,1747,1366,1501,1949,2240,1915,2459,2648,1854,1467,1937,1754,1871,2461,2243,1819,1718,1997,1728,1847,1847,1501,1462,1358,1452,1924,1696,1442,1382,1159,1306,1241,1106,1197,1120,1351,1620
-2019F,SD,PATCP,16118,16294,16959,17692,17629,16881,17514,17514,18515,18583,19666,20168,21226,20977,19550,19784,19840,20425,21177,22219,19362,17487,18477,17574,17204,17843,18463,19359,19304,20765,20828,18175,19310,20472,20908,21082,22008,21264,20897,21385,22057,20951,22677,21535,21621,22393,22069,22688,22029,22682,21960,21822,22336,22028,22061,22396,22236,22123,22696,22853
-2019F,SD,PATPP,23.6,23.5,24.1,25,25.1,24.4,25.6,26.1,27.7,27.8,29.4,30,31.3,30.9,28.8,29,28.9,29.7,30.8,32.3,28,25.4,26.8,25.4,24.7,25.5,26.5,27.8,27.6,29.8,29.9,25.8,27.1,28.3,28.6,28.6,29.7,28.6,28,28.5,29.2,27.6,29.8,28.2,28.1,28.9,28.2,28.7,27.6,28.1,26.9,26.5,26.8,26.1,26,26.2,25.7,25.3,25.8,25.8
-2019F,SD,PATXP,16071,16246,16874,17638,17590,16826,17465,17464,18467,18477,19348,19956,20912,20792,19461,19572,19662,20287,20935,22068,19295,17433,18424,17532,17177,17804,18424,19336,19246,20732,20795,18141,19291,20441,20857,21034,21975,21241,20829,21326,21921,20844,22659,21492,21565,22341,22050,22549,21979,22658,21942,21801,22318,22007,22038,22358,22225,22108,22677,22819
-2019F,SD,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,10,10,10,9,10,8,2,10,17
-2019F,SD,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,358,242,216,216,318,184,226,285,240,215
-2019F,SD,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,360,295,350,526,400,421,468,406,496,575
-2019F,SD,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1313,1259,1050,1213,1156,1023,1117,1054,1237,1528
-2019F,SD,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2036,1806,1625,1964,1883,1638,1818,1748,1983,2335
-2019F,SD,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2036,1806,1625,1964,1883,1638,1818,1748,1983,2335
-2019F,SD,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,SD,RFACP,11,0,0,0,0,1,3,5,6,7,6,4,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,RFCCP,16,10,42,77,27,8,11,7,15,33,16,9,24,19,17,20,52,58,41,45,19,14,13,64,43,19,7,7,22,22,24,35,35,1,6,2,0,8,5,8,69,5,0,0,13,0,1,12,9,3,2,0,0,0,0,0,0,0,8,9
-2019F,SD,RFEIP,40,41,72,46,33,47,42,42,41,90,270,174,255,164,72,145,155,105,154,84,9,1,2,1,1,1,1,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,RFICP,35,18,84,153,62,15,31,16,64,66,35,24,64,51,44,52,99,120,87,91,95,144,37,72,48,16,52,46,52,43,36,32,108,115,81,11,40,55,95,80,63,101,103,46,80,62,28,22,36,19,0,38,0,1,4,5,8,9,0,0
-2019F,SD,RFTCP,102,68,198,276,122,71,88,70,127,195,328,211,343,234,133,218,307,284,283,221,122,158,51,136,91,36,60,55,85,66,60,67,143,115,87,14,40,64,101,88,133,106,104,46,93,62,29,35,45,23,2,39,0,2,4,5,8,9,8,9
-2019F,SD,RFTXP,61,27,126,231,89,24,46,28,86,105,57,37,88,70,61,73,153,179,129,136,114,157,49,135,90,35,59,54,74,66,60,67,143,115,87,14,40,64,101,88,133,106,104,46,93,62,29,35,45,23,2,39,0,2,4,5,8,9,8,9
-2019F,SD,SGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2
-2019F,SD,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
-2019F,SD,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,3,3
-2019F,SD,TPOPP,683,693,705,708,701,692,683,671,669,668,668,671,677,679,680,681,686,688,689,688,691,690,691,693,697,698,696,696,698,697,697,704,713,722,731,738,742,744,746,750,756,758,760,764,770,775,783,792,799,807,816,824,834,843,850,855,864,874,879,887
-2019F,SD,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,19,21,21,21,12,11,11,9,8,25,22,21,21,22,10,8,7,4,6,5,6,6,6,5,5,4,5,4
-2019F,SD,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,44,158,158,149,150,145,421,1372,2668,2354,2688,2336,2498,3714,2958,2835,2789
-2019F,SD,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,SD,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,44,158,158,149,150,145,421,1372,2668,2354,2688,2336,2498,3714,2958,2835,2789
-2019F,SD,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,1,0,3,0,0,-1,0,0,0,0,0,7,6,10,12,7,12,8,13,16,16,22,18,1,4,0,-2,-1,0,0,-1,0,-1,-1,0,-3,-2
-2019F,TN,ARICP,1785,1937,2298,2084,2607,3441,4075,3332,3814,3640,3628,3456,3734,4697,3432,3765,3882,5061,5561,4408,3378,2732,4173,3000,3816,4408,4158,4565,4048,5703,5798,5349,5281,4922,5448,5434,5171,4917,5928,5919,6067,5759,5160,5218,4795,6705,5515,4670,4200,2800,2915,3365,2743,2670,2724,2568,2829,3008,2852,2953
-2019F,TN,ARTCP,1785,1937,2298,2084,2607,3441,4075,3332,3814,3640,3628,3456,3734,4697,3432,3765,3882,5061,5561,4408,3378,2732,4173,3000,3816,4408,4158,4565,4048,5703,5798,5349,5281,4922,5448,5434,5171,4917,5928,5919,6067,5759,5160,5218,4795,6705,5515,4670,4200,2800,2915,3365,2743,2670,2724,2568,2829,3008,2852,2953
-2019F,TN,ARTXP,1785,1937,2298,2084,2607,3441,4075,3332,3814,3640,3628,3456,3734,4697,3432,3765,3882,5061,5561,4408,3378,2732,4173,3000,3816,4408,4158,4565,4048,5703,5798,5349,5281,4922,5448,5434,5171,4917,5928,5919,6067,5759,5160,5218,4795,6705,5515,4670,4200,2800,2915,3365,2743,2670,2724,2568,2829,3008,2852,2953
-2019F,TN,AVACP,1040,905,920,1244,1090,1024,747,447,267,184,116,115,119,109,93,70,56,63,56,705,290,232,171,179,164,154,201,186,183,182,174,145,343,395,392,397,231,312,136,109,124,60,150,131,93,102,89,104,119,127,168,114,68,63,62,70,73,76,83,94
-2019F,TN,AVTCP,1040,905,920,1244,1090,1024,747,447,267,184,116,115,119,109,93,70,56,63,56,705,290,232,171,179,164,154,201,186,183,182,174,145,343,395,392,397,231,312,136,109,124,60,150,131,93,102,89,104,119,127,168,114,68,63,62,70,73,76,83,94
-2019F,TN,AVTXP,1040,905,920,1244,1090,1024,747,447,267,184,116,115,119,109,93,70,56,63,56,705,290,232,171,179,164,154,201,186,183,182,174,145,343,395,392,397,231,312,136,109,124,60,150,131,93,102,89,104,119,127,168,114,68,63,62,70,73,76,83,94
-2019F,TN,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,10,9,17,58,166,225,193,205,166,564,525,827,801,709,1023,883,842,682
-2019F,TN,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,10,9,17,58,166,225,193,205,166,564,525,827,801,709,1023,883,842,682
-2019F,TN,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,CLACP,40,11,9,10,9,9,10,8,7,5,4,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,CLCCP,391,335,359,344,274,285,262,224,230,282,239,296,246,241,233,228,174,171,165,150,185,116,146,403,249,132,61,76,148,174,174,141,129,91,77,126,97,117,22,86,100,124,56,116,63,30,38,64,92,91,86,70,63,65,60,6,0,0,0,0
-2019F,TN,CLEIP,12138,11288,11134,12598,10857,10637,11472,11169,14710,15463,14727,14130,17200,20934,18526,18848,22362,21694,21621,20173,21679,20497,16532,18672,19106,20853,21051,20697,21010,19283,20814,19216,20263,23801,21253,23477,22963,24464,23321,23216,25401,24487,24630,23189,24832,26119,27216,27348,26632,19462,20622,19967,17466,16686,17903,14967,15863,14546,10359,9362
-2019F,TN,CLICP,2307,2522,2355,2575,2550,2862,3203,3127,3365,2747,2452,1947,2286,2551,2450,2134,2270,2821,3018,3092,2774,3573,3122,3936,3941,4145,4142,3954,4020,4058,3846,3720,3686,3942,4097,3777,3670,3613,3441,3299,3349,3575,3340,3354,3233,3149,3018,2993,2939,2524,2658,2578,2453,2484,2310,2135,1913,1490,1412,1230
-2019F,TN,CLKCP,245,282,320,288,224,255,259,248,265,259,249,241,243,270,241,215,227,305,268,234,107,170,125,164,145,154,109,75,79,76,67,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,CLOCP,2063,2240,2035,2287,2326,2606,2945,2879,3100,2488,2203,1706,2043,2282,2209,1920,2043,2516,2751,2858,2667,3403,2997,3772,3796,3991,4032,3879,3941,3981,3779,3702,3686,3942,4097,3777,3670,3613,3441,3299,3349,3575,3340,3354,3233,3149,3018,2993,2939,2524,2658,2578,2453,2484,2310,2135,1913,1490,1412,1230
-2019F,TN,CLRCP,563,483,517,475,379,378,348,297,293,359,304,285,186,142,110,98,71,66,49,38,49,26,30,77,59,37,18,23,42,46,44,31,28,20,14,19,13,14,3,12,12,15,8,17,7,3,4,7,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,CLTCP,15438,14639,14375,16001,14070,14172,15295,14826,18605,18855,17726,16661,19920,23870,21319,21308,24878,24753,24854,23453,24687,24212,19829,23088,23355,25167,25272,24750,25219,23561,24878,23107,24106,27854,25440,27399,26744,28207,26786,26613,28862,28202,28034,26677,28135,29301,30275,30412,29663,22077,23366,22616,19982,19235,20274,17107,17776,16035,11771,10592
-2019F,TN,CLTXP,3301,3351,3241,3402,3213,3534,3823,3656,3895,3393,2999,2531,2721,2936,2794,2460,2516,3058,3233,3280,3008,3715,3298,4416,4249,4314,4221,4053,4209,4278,4064,3892,3843,4053,4187,3923,3780,3744,3466,3397,3461,3715,3404,3488,3303,3182,3059,3064,3031,2615,2744,2648,2516,2549,2370,2141,1913,1490,1412,1230
-2019F,TN,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,DFACP,2914,3097,3824,4686,4662,4346,5363,4914,6350,6610,7189,7665,9500,10308,10647,10631,11462,12642,14359,16242,13196,13949,13667,14934,15321,15268,16861,17787,18632,19882,19857,18621,18385,18473,18233,20702,21464,21175,22438,21732,23293,23977,25921,28206,28266,29483,29694,30389,26802,23764,25516,26366,24793,24983,26328,26665,25740,26113,28317,28917
-2019F,TN,DFCCP,200,253,231,190,200,248,344,411,456,423,422,425,524,617,541,589,1023,958,956,934,1015,1118,1115,1989,2443,3204,1486,1278,1161,774,739,600,1033,940,916,739,906,827,949,959,1078,935,1034,1099,1071,780,650,952,726,1215,1189,1030,1015,671,869,828,786,944,942,1012
-2019F,TN,DFEIP,0,0,0,0,0,0,0,0,0,0,0,17,166,296,296,1310,2486,3739,5177,645,406,322,287,291,207,237,232,222,365,356,232,272,225,413,519,455,460,375,1448,1042,1059,891,443,819,313,400,260,278,390,348,397,372,295,251,355,265,236,244,226,270
-2019F,TN,DFICP,2096,2133,2048,1742,1862,2601,3382,3244,3288,3193,3172,3288,3931,4347,4501,4712,6631,6385,6520,5950,4252,3685,3341,2675,3285,3615,3878,3830,3570,2749,3399,2696,3631,3400,3412,3682,3733,4333,3978,2647,2443,2620,2217,3062,3538,4046,3433,3569,2888,1693,2096,1906,2008,1908,2132,1903,2163,2204,2213,2041
-2019F,TN,DFRCP,80,102,93,76,80,100,138,165,183,170,169,171,211,248,217,237,411,385,384,375,308,471,403,262,321,269,175,251,238,285,275,268,257,205,275,260,269,237,230,230,174,166,115,121,125,102,107,127,160,165,153,45,41,39,39,51,34,39,34,28
-2019F,TN,DFTCP,5291,5584,6197,6695,6804,7295,9227,8734,10276,10396,10952,11565,14332,15816,16202,17479,22011,24108,27395,24146,19176,19545,18812,20151,21577,22594,22631,23368,23966,24047,24502,22457,23531,23431,23355,25839,26831,26946,29043,26610,28047,28590,29731,33307,33312,34810,34144,35315,30965,27184,29352,29720,28152,27852,29724,29711,28959,29544,31731,32267
-2019F,TN,DFTXP,5290,5584,6197,6694,6804,7295,9227,8734,10276,10396,10952,11548,14166,15520,15906,16170,19526,20370,22218,23501,18770,19223,18526,19860,21371,22357,22400,23146,23601,23691,24270,22185,23307,23018,22836,25384,26371,26571,27595,25569,26988,27699,29287,32488,32999,34410,33884,35037,30576,26836,28954,29348,27857,27601,29368,29446,28723,29300,31506,31997
-2019F,TN,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0
-2019F,TN,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10237,11609,10685,16062,14233,6607,6345,604,4755,11450,11485,10169,13230,16288,14294,18691,21732,22679,23975,24357,30908,28945,27990,26474,29691,33434,30361,26494,29717,25944
-2019F,TN,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0
-2019F,TN,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,581,675,843,1255,1385,1059,572,418,508,584,830,353,7,7,8,0,0,0,0,0,0,3366,3546,4507,6174,7465,6815,7035,7384,7681,7649,7164,7484,7633,7388,7621
-2019F,TN,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,4,6,8,12,9,5,3,3,2,1,0,0,0,0,0,0,0,0,0,0,2,3,3,5,6,5,5,6,6,5,126,128,131,132,136
-2019F,TN,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,8,14,13,11,6,4,5,7,11,5,0,0,0,0,0,0,0,0,0,56,66,113,128,148,74,80,86,95,62,107,109,111,114,115
-2019F,TN,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,592,686,857,1277,1410,1079,583,426,516,593,841,358,7,7,8,0,0,0,0,0,0,3424,3615,4623,6307,7618,6894,7120,7475,7781,7716,7397,7721,7876,7634,7872
-2019F,TN,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0
-2019F,TN,ESCCP,2796,2834,3130,3475,3930,4274,4602,4906,5447,5911,6352,6858,7550,8103,8026,7440,7905,10522,13626,13939,14216,15423,15730,16184,9948,9856,9727,10199,10481,12237,13075,13117,7391,6102,6121,6234,6543,25839,25859,26260,26814,27049,27634,27481,28249,29146,29033,29985,29418,28049,29399,29025,28150,33575,33497,34982,35439,33727,36930,36151
-2019F,TN,ESICP,27514,27053,27491,28556,28343,28362,29521,29377,27301,27583,27776,26682,28874,33630,34108,37904,41285,38214,32772,34088,32968,31070,25455,28424,35925,33624,32196,32071,34431,34520,35313,35667,41695,43530,43614,44828,45781,27710,30461,31493,32289,32149,31845,32278,32885,33625,34081,33850,32804,26584,28930,28638,28476,22462,24182,22983,23546,24220,21599,21105
-2019F,TN,ESRCP,8683,8939,9969,10618,11545,12134,13243,13330,15336,16948,17942,18192,19101,20396,19802,23034,23622,26486,25980,25103,26207,24631,24639,24758,26236,25546,25884,27460,27960,28355,28757,29605,29498,30199,32797,30967,35333,33367,35428,35425,36622,36932,38752,37697,38526,41132,40816,42880,41947,40275,45191,43068,39754,40906,42538,41667,41774,39293,44382,42573
-2019F,TN,ESRPP,2429,2468,2714,2856,3062,3195,3465,3454,3955,4349,4557,4533,4665,4918,4700,5387,5434,5988,5791,5504,5697,5323,5303,5313,5598,5418,5462,5741,5798,5841,5875,5961,5842,5878,6269,5813,6523,6068,6360,6282,6421,6422,6686,6446,6518,6866,6703,6943,6714,6387,7111,6729,6158,6296,6500,6318,6281,5852,6548,6233
-2019F,TN,ESTCP,38994,38826,40590,42649,43819,44769,47366,47613,48083,50441,52070,51733,55525,62129,61936,68379,72811,75222,72378,73130,73391,71125,65824,69366,72110,69027,67808,69730,72872,75113,77145,78390,78584,79832,82533,82030,87659,86917,91750,93180,95728,96131,98233,97457,99661,103905,103932,106717,104170,94910,103522,100733,96381,96944,100219,99632,100758,97240,102911,99829
-2019F,TN,ESTPP,10907,10720,11051,11471,11620,11788,12393,12338,12399,12944,13226,12889,13560,14980,14699,15993,16750,17007,16133,16036,15954,15370,14168,14886,15386,14639,14309,14579,15111,15473,15762,15784,15562,15539,15776,15399,16183,15805,16472,16525,16783,16716,16949,16666,16861,17343,17069,17280,16674,15051,16288,15739,14930,14921,15313,15106,15149,14482,15183,14616
-2019F,TN,ESTXP,38994,38826,40590,42649,43819,44769,47366,47613,48083,50441,52070,51733,55525,62129,61936,68379,72811,75222,72378,73130,73391,71125,65824,69366,72110,69027,67808,69730,72872,75113,77145,78390,78584,79832,82533,82030,87659,86917,91750,93180,95728,96131,98233,97457,99661,103905,103932,106717,104170,94910,103522,100733,96381,96944,100219,99632,100758,97240,102911,99829
-2019F,TN,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,FSICP,0,0,0,16,15,18,21,22,23,24,28,34,32,28,43,46,48,46,51,31,42,22,25,37,48,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,HLACP,22,23,30,41,72,54,97,103,124,124,94,112,90,119,118,120,120,131,166,103,61,90,154,182,238,166,201,120,147,156,126,135,120,147,240,135,133,120,3,58,75,14,114,101,162,221,231,162,248,131,37,40,39,38,25,28,30,19,8,9
-2019F,TN,HLCCP,201,208,228,268,247,265,349,395,430,530,539,543,609,644,578,645,629,581,549,368,350,179,253,301,270,282,332,327,408,461,400,451,488,513,492,496,666,601,567,710,803,629,748,748,660,488,672,449,544,374,440,675,401,454,427,391,525,507,612,568
-2019F,TN,HLICP,275,243,274,336,475,522,381,341,400,511,363,331,348,452,415,455,470,477,725,1046,960,522,868,611,625,693,801,839,900,992,761,796,2204,829,758,777,810,871,400,1066,1384,1277,1947,835,1168,1323,1520,1167,554,264,384,499,769,675,561,533,445,471,460,540
-2019F,TN,HLRCP,813,841,922,1086,1001,1072,1412,1598,1741,2148,2185,2201,2467,2609,2342,2611,2547,2355,2222,1491,1416,724,1024,1218,1094,1140,1345,1326,1653,1868,1620,1826,1976,2077,1992,2008,2696,2436,2295,2875,3252,2549,3029,2593,2624,2525,2264,2291,2035,2548,2817,1984,1152,1400,1879,1673,1504,1417,1727,1902
-2019F,TN,HLTCP,1311,1314,1455,1731,1794,1912,2239,2437,2694,3313,3182,3187,3515,3825,3453,3830,3766,3545,3662,3008,2787,1515,2299,2313,2228,2281,2678,2613,3108,3476,2906,3208,4787,3566,3482,3416,4303,4028,3264,4709,5514,4469,5837,4278,4614,4557,4687,4069,3381,3317,3679,3199,2361,2567,2892,2625,2504,2414,2806,3019
-2019F,TN,HLTXP,1311,1314,1455,1731,1794,1912,2239,2437,2694,3313,3182,3187,3515,3825,3453,3830,3766,3545,3662,3008,2787,1515,2299,2313,2228,2281,2678,2613,3108,3476,2906,3208,4787,3566,3482,3416,4303,4028,3264,4709,5514,4469,5837,4278,4614,4557,4687,4069,3381,3317,3679,3199,2361,2567,2892,2625,2504,2414,2806,3019
-2019F,TN,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,HYEGP,8676,8749,9636,7722,9097,8750,7633,9628,7721,7477,8067,9420,11132,11452,11767,11806,9474,10396,8783,12306,8764,5915,9769,9952,10181,6539,5326,7566,4591,11853,10015,10873,10011,8954,10992,8802,10579,10073,10007,7150,5876,6543,7317,11087,9649,8538,7167,4940,5646,10212,8138,9576,7673,11369,8901,9581,6774,8691,10293,10130
-2019F,TN,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1036,827,888,965,799,652,520,404,656,917,759,772,581,0,0,0,0,0,623,1074,0,0,0,0,0,0
-2019F,TN,HYTCP,8676,8749,9636,7722,9097,8750,7633,9628,7721,7477,8067,9420,11132,11452,11767,11806,9474,10396,8783,12306,8764,5915,9769,9952,10181,6539,5326,7566,4591,11853,10015,10873,10011,8954,12028,9629,11467,11038,10806,7802,6396,6947,7974,12004,10408,9310,7749,4940,5646,10212,8138,9576,8296,12443,8901,9581,6774,8691,10293,10130
-2019F,TN,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1036,827,888,965,799,652,520,404,656,917,759,772,581,0,0,0,0,0,623,1074,0,0,0,0,0,0
-2019F,TN,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,JFACP,570,661,792,861,1023,1174,1493,2040,2568,3124,3335,3335,3439,3795,3837,3936,4105,4377,4683,4895,4154,3486,2289,2060,3636,4862,5925,5686,4231,4356,4181,3413,4479,6569,7762,8096,9317,9437,9864,11816,12857,12561,13442,13376,13623,13915,14207,13811,12669,11179,13405,12800,12068,12355,12505,13212,13958,14502,14533,15419
-2019F,TN,JFTCP,570,661,792,861,1023,1174,1493,2040,2568,3124,3335,3335,3439,3795,3837,3936,4105,4377,4683,4895,4154,3486,2289,2060,3636,4862,5925,5686,4231,4356,4181,3413,4479,6569,7762,8096,9317,9437,9864,11816,12857,12561,13442,13376,13623,13915,14207,13811,12669,11179,13405,12800,12068,12355,12505,13212,13958,14502,14533,15419
-2019F,TN,JFTXP,570,661,792,861,1023,1174,1493,2040,2568,3124,3335,3335,3439,3795,3837,3936,4105,4377,4683,4895,4154,3486,2289,2060,3636,4862,5925,5686,4231,4356,4181,3413,4479,6569,7762,8096,9317,9437,9864,11816,12857,12561,13442,13376,13623,13915,14207,13811,12669,11179,13405,12800,12068,12355,12505,13212,13958,14502,14533,15419
-2019F,TN,KSCCP,157,141,161,176,132,173,225,362,400,378,399,403,315,360,304,259,306,293,277,152,104,72,133,190,150,167,91,127,242,155,69,32,69,61,73,80,89,99,123,52,105,90,47,54,43,40,28,24,9,10,9,7,3,4,6,3,5,4,4,3
-2019F,TN,KSICP,1670,1016,1298,1259,1572,1486,1887,1578,1856,1710,1709,1655,1413,1360,937,714,944,903,873,1452,881,551,425,166,124,203,58,96,131,36,46,43,12,38,32,37,41,44,66,53,95,95,23,34,48,42,21,10,7,11,14,7,8,7,9,7,8,5,5,5
-2019F,TN,KSRCP,797,715,819,894,670,881,1145,1840,2035,1920,2027,2048,1600,1829,1544,1316,1554,1492,1409,773,549,901,541,729,712,737,329,451,626,616,324,268,361,311,439,372,456,437,424,423,378,247,168,231,292,284,283,204,70,103,128,51,17,23,39,29,44,30,30,38
-2019F,TN,KSTCP,2624,1871,2278,2329,2374,2540,3257,3780,4292,4008,4135,4105,3327,3549,2785,2289,2804,2688,2559,2377,1534,1524,1099,1085,986,1107,478,674,999,807,438,342,442,410,544,490,585,580,613,528,578,432,238,319,382,366,332,238,85,123,151,65,28,33,54,38,57,38,39,46
-2019F,TN,KSTXP,2624,1871,2278,2329,2374,2540,3257,3780,4292,4008,4135,4105,3327,3549,2785,2289,2804,2688,2559,2377,1534,1524,1099,1085,986,1107,478,674,999,807,438,342,442,410,544,490,585,580,613,528,578,432,238,319,382,366,332,238,85,123,151,65,28,33,54,38,57,38,39,46
-2019F,TN,LUACP,505,491,459,459,482,479,497,415,456,482,491,482,516,557,533,807,896,675,725,759,676,648,591,619,660,615,601,680,656,673,692,619,631,643,672,660,641,677,709,716,705,646,639,590,598,595,580,599,556,500,595,576,519,544,572,628,595,554,537,518
-2019F,TN,LUICP,256,249,215,215,226,321,333,287,315,328,334,415,445,564,540,522,580,564,606,634,565,542,494,517,551,514,502,568,548,562,578,517,527,537,561,552,535,566,592,598,589,540,534,493,500,497,484,500,464,417,411,394,387,403,399,455,428,399,378,342
-2019F,TN,LUTCP,760,740,674,673,707,800,831,702,771,810,825,898,961,1121,1074,1328,1476,1240,1331,1393,1241,1190,1085,1136,1211,1129,1104,1248,1203,1234,1270,1136,1159,1180,1233,1212,1176,1242,1301,1314,1295,1186,1172,1084,1098,1092,1064,1099,1020,917,1006,970,906,947,971,1083,1024,954,915,860
-2019F,TN,LUTXP,760,740,674,673,707,800,831,702,771,810,825,898,961,1121,1074,1328,1476,1240,1331,1393,1241,1190,1085,1136,1211,1129,1104,1248,1203,1234,1270,1136,1159,1180,1233,1212,1176,1242,1301,1314,1295,1186,1172,1084,1098,1092,1064,1099,1020,917,1006,970,906,947,971,1083,1024,954,915,860
-2019F,TN,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-148,-128,-111,-54,-158,-217,-98,-43,43,41,-25,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,MGACP,26468,27382,28716,29455,30469,31721,34074,35884,37696,39896,41241,43927,47763,51874,51061,53199,55740,57133,59524,56665,54446,54076,54006,53310,56348,57068,59317,56506,58224,58937,56954,55187,57667,60286,62062,63907,63928,65162,66842,69151,68252,67385,71009,71519,71698,73105,73486,74155,72105,74455,75694,74571,73691,74568,75634,75961,79104,79504,77945,78822
-2019F,TN,MGCCP,173,213,257,292,303,277,337,356,377,371,392,367,365,376,391,419,414,423,450,427,465,499,489,528,592,337,401,374,517,516,464,418,346,203,49,50,49,49,49,49,49,53,53,53,53,54,55,55,55,55,55,55,55,57,54,1340,1349,1366,1391,1407
-2019F,TN,MGICP,627,589,486,586,509,484,405,346,305,263,235,210,205,143,184,117,93,98,78,48,36,28,26,17,451,642,578,610,561,605,583,557,575,724,785,865,890,937,630,569,561,954,902,980,1217,1212,1369,1866,1497,1474,818,852,855,921,611,1129,1150,1159,1207,1194
-2019F,TN,MGTCP,27268,28184,29460,30334,31281,32481,34816,36586,38377,40530,41869,44504,48333,52393,51635,53735,56247,57655,60053,57140,54948,54603,54521,53855,57390,58047,60296,57490,59302,60057,58001,56162,58587,61213,62897,64822,64868,66148,67522,69769,68862,68392,71963,72552,72968,74371,74910,76076,73658,75984,76566,75478,74601,75545,76299,78431,81603,82030,80544,81423
-2019F,TN,MGTXP,27268,28184,29460,30334,31281,32481,34816,36586,38377,40530,41869,44504,48333,52393,51635,53735,56247,57655,60053,57140,54948,54603,54521,53855,57390,58047,60296,57490,59302,60057,58001,56162,58587,61213,62897,64822,64868,66148,67522,69769,68862,68392,71963,72552,72968,74371,74910,76076,73658,75984,76566,75478,74601,75545,76299,78431,81603,82030,80544,81423
-2019F,TN,MSICP,917,1024,1124,595,595,580,623,582,649,604,540,280,286,355,455,612,890,1007,876,810,768,679,595,533,458,461,654,657,797,733,659,730,479,453,506,465,116,128,156,146,156,784,842,791,712,708,2142,2101,2236,2390,2498,2594,2544,3628,3874,4005,4056,1070,1066,970
-2019F,TN,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,NGACP,5341,15412,16092,18333,18924,22693,21922,22268,22408,24962,26459,26649,25384,28456,23984,19152,15094,13849,14415,20186,16492,17550,16563,10889,12711,10186,13569,15278,17089,17810,19598,15757,16440,18721,18175,17795,24352,23277,16490,15269,13876,13833,11558,12880,10593,9203,8713,10003,10252,11736,10095,11672,9897,6746,7434,8195,6885,5575,8440,11002
-2019F,TN,NGCCP,24253,33050,37987,27115,28212,28290,31336,34380,38325,41069,42720,44062,45704,45974,44651,42488,38244,35127,30917,42714,44048,42686,38697,42903,46544,43399,42589,44144,45852,47513,43552,45953,46532,50754,50760,51235,58497,55117,52394,52572,53365,53010,53710,56576,54201,54264,51537,51056,54094,51879,56194,52156,44928,53888,57435,53049,49809,49042,58669,56315
-2019F,TN,NGEIP,7225,6777,7844,4572,7279,16252,22632,24991,21542,18239,17253,18082,16165,11986,0,0,176,0,0,0,1105,316,0,107,0,0,0,0,225,18,565,211,291,1531,1019,2055,572,1636,6213,5875,5250,2479,2596,5621,2262,5627,6691,7291,4411,3668,22156,26314,62961,36613,45083,69752,87692,75574,103091,118725
-2019F,TN,NGICP,75921,71902,70640,79311,90917,97463,109480,108914,108229,118191,123145,129226,136259,161211,147950,111668,115063,109629,98909,118441,123122,121120,109878,100115,103053,97247,91602,97667,103409,106943,109777,115830,126269,124337,118915,125846,126566,138909,144591,144568,129745,118614,118321,112493,98747,94966,93666,92032,91996,83550,94682,106898,105531,110952,117288,115072,123235,134790,147159,147810
-2019F,TN,NGRCP,33869,33925,35521,40524,36569,37159,40754,41659,43784,45396,46571,46992,53763,45993,43586,44020,43749,43530,39807,45136,44894,41857,42023,40596,44045,39434,40240,43483,47668,49196,46340,49357,52220,58919,57334,59994,70423,64130,59386,60561,68428,68053,69330,69746,65331,66277,61018,60736,69181,66111,74316,67190,53810,71241,78395,67312,58924,56661,74802,68686
-2019F,TN,NGTCP,146609,161066,168084,169855,181901,201857,226124,232212,234288,247857,256148,265011,277275,293620,260171,217328,212326,202135,184048,226477,229661,223529,207161,194610,206353,190266,188000,200572,214243,221481,219831,227108,241752,254262,246203,256924,280409,283069,279074,278846,270664,255989,255515,257316,231133,230338,221626,221118,229934,216944,257443,264230,277127,279440,305635,313380,326545,321642,392161,402538
-2019F,TN,NGTPP,41,44.5,45.8,45.7,48.2,53.1,59.2,60.2,60.4,63.6,65.1,66,67.7,70.8,61.7,50.8,48.8,45.7,41,49.7,49.9,48.3,44.6,41.8,44,40.4,39.7,41.9,44.4,45.6,44.9,45.7,47.9,49.5,47.1,48.2,51.8,51.5,50.1,49.5,47.5,44.5,44.1,44,39.1,38.4,36.4,35.8,36.8,34.4,40.5,41.3,42.9,43,46.7,47.5,49.1,47.9,57.9,58.9
-2019F,TN,NGTXP,139384,154289,160240,165283,174622,185605,203492,207221,212746,229618,238895,246929,261110,281634,260171,217328,212150,202135,184048,226477,228556,223213,207161,194503,206353,190266,188000,200572,214018,221462,219267,226897,241462,252730,245185,254869,279838,281433,272861,272971,265414,253511,252919,251695,228871,224711,214934,213827,225523,213276,235287,237916,214166,242827,260552,243628,238853,246068,289070,283813
-2019F,TN,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,4704,10104,14051,12501,9672,-105,-108,3940,15603,14003,16587,15654,3305,11932,15708,22924,24648,28388,27227,25825,28576,27574,24153,28612,27803,24679,28700,27030,26962,27739,26919,25102,28494,27670,24960,29578,31818,36176,35720
-2019F,TN,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,4704,10104,14051,12501,9672,-105,-108,3940,15603,14003,16587,15654,3305,11932,15708,22924,24648,28388,27227,25825,28576,27574,24153,28612,27803,24679,28700,27030,26962,27739,26919,25102,28494,27670,24960,29578,31818,36176,35720
-2019F,TN,OPICP,1132,1232,1390,868,1272,1308,1148,1106,1225,1228,1158,847,911,993,1240,1364,1572,1692,1606,1495,1509,1286,1204,1401,1431,1251,1378,1519,1730,1705,1632,1842,1841,1709,1984,1860,2034,2005,2191,2477,2306,3777,3722,3856,3633,3810,5362,5230,5041,5039,5328,5457,5452,6748,6785,7040,7139,4247,4160,4118
-2019F,TN,OPTCP,1132,1232,1390,868,1272,1308,1148,1106,1225,1228,1158,847,911,993,1240,1364,1572,1692,1606,1495,1509,1286,1204,1401,1431,1251,1378,1519,1730,1705,1632,1842,1841,1709,1984,1860,2034,2005,2191,2477,2306,3777,3722,3856,3633,3810,5362,5230,5041,5039,5328,5457,5452,6748,6785,7040,7139,4247,4160,4118
-2019F,TN,OPTXP,1132,1232,1390,868,1272,1308,1148,1106,1225,1228,1158,847,911,993,1240,1364,1572,1692,1606,1495,1509,1286,1204,1401,1431,1251,1378,1519,1730,1705,1632,1842,1841,1709,1984,1860,2034,2005,2191,2477,2306,3777,3722,3856,3633,3810,5362,5230,5041,5039,5328,5457,5452,6748,6785,7040,7139,4247,4160,4118
-2019F,TN,P1ICP,5124,5514,6449,5988,6940,7868,8974,7911,8826,9361,8659,8255,9111,9967,8107,8548,8937,10466,10535,9368,7748,7792,8521,6522,7868,8111,7735,8507,8383,9707,9770,9515,10028,9042,9962,9743,9780,9106,11657,12496,11716,15001,13820,13777,14702,16485,17573,15475,15053,9636,9537,10109,9522,10721,10720,10903,11266,8514,8235,8213
-2019F,TN,P1TCP,7623,7765,8807,8760,9314,10425,11588,10974,11984,12324,11692,11303,11661,12821,10581,11000,11749,12990,13003,11757,9367,9646,9958,8239,9554,9785,8957,9951,10090,11332,11028,10579,11432,10451,11538,11253,11196,10632,13049,13796,13028,16044,14824,14783,15728,17506,18553,16406,15806,10375,10436,10857,10130,11355,11399,11632,11983,9178,8889,8865
-2019F,TN,P1TXP,7623,7765,8807,8760,9314,10425,11588,10974,11984,12324,11692,11303,11661,12821,10581,11000,11749,12990,13003,11757,9367,9646,9958,8239,9554,9785,8957,9951,10090,11332,11028,10579,11432,10451,11538,11253,11196,10632,13049,13796,13028,16044,14824,14783,15728,17506,18553,16406,15806,10375,10436,10857,10130,11355,11399,11632,11983,9178,8889,8865
-2019F,TN,PAACP,31527,32612,34741,36803,37831,38819,42282,43919,47469,50426,52469,55637,61427,66893,66353,68953,72639,75139,79572,79525,72828,72557,70899,71285,76367,78134,83105,80965,82084,84196,81989,78170,81669,86528,89364,93899,95715,96887,99991,103583,105305,104648,111278,113931,114481,117480,118298,119225,112545,110155,115416,114468,111230,112601,115132,116576,119500,120784,121422,123793
-2019F,TN,PACCP,731,814,877,926,882,963,1255,1524,1663,1703,1753,1739,1814,1997,1814,1913,2374,2260,2234,1884,1982,1944,2092,3133,3538,4087,2438,2173,2404,1958,1704,1517,1992,1749,1562,1378,1737,1620,1689,1770,2035,1707,1882,1954,1840,1362,1405,1489,1339,1657,1692,1767,1475,1187,1356,2562,2665,2821,2948,2990
-2019F,TN,PAEIP,0,0,0,0,0,0,0,0,0,0,0,17,166,296,296,1310,2486,3739,5177,700,406,322,287,291,207,237,232,222,365,356,232,272,225,413,519,455,460,375,1448,1042,1059,891,443,819,313,400,260,278,390,348,397,372,295,251,355,265,236,244,226,270
-2019F,TN,PAICP,8301,8599,9363,8872,10037,11739,13475,12207,13146,14125,13023,12456,14113,15422,14009,14355,18830,20676,20082,18644,14441,13102,13354,10742,12842,13504,13444,14039,13771,14450,14782,13901,16728,14469,15336,15414,15393,15355,16821,16827,16169,19999,19018,18901,20911,23367,24072,22239,20147,13102,12840,13391,13170,14237,14060,14492,15046,12353,12158,12047
-2019F,TN,PARCP,1691,1657,1834,2056,1751,2052,2695,3603,3959,4238,4382,4419,4278,4686,4104,4163,4511,4231,4015,2639,2273,2096,1968,2209,2127,2147,1849,2028,2517,2768,2218,2362,2594,2593,2707,2641,3420,3110,2949,3529,3805,2962,3311,2945,3041,2911,2655,2622,2264,2815,3099,2080,1210,1462,1957,1753,1582,1486,1790,1967
-2019F,TN,PATCP,42250,43682,46816,48657,50502,53574,59707,61253,66237,70491,71627,74267,81798,89296,86576,90694,100840,106045,111080,103392,91930,90022,88599,87659,95081,98109,101068,99427,101142,103728,100925,96222,103209,105751,109488,113787,116725,117347,122898,126750,128373,130207,135933,138550,140586,145520,146689,145852,136685,128079,133443,132079,127380,129738,132860,135647,139029,137688,138545,141067
-2019F,TN,PATPP,11.8,12.1,12.7,13.1,13.4,14.1,15.6,15.9,17.1,18.1,18.2,18.5,20,21.5,20.5,21.2,23.2,24,24.8,22.7,20,19.5,19.1,18.8,20.3,20.8,21.3,20.8,21,21.4,20.6,19.4,20.4,20.6,20.9,21.4,21.5,21.3,22.1,22.5,22.5,22.6,23.5,23.7,23.8,24.3,24.1,23.6,21.9,20.3,21,20.6,19.7,20,20.3,20.6,20.9,20.5,20.4,20.7
-2019F,TN,PATXP,42250,43682,46815,48657,50502,53574,59707,61253,66237,70491,71627,74251,81631,88999,86281,89384,98354,102307,105903,102693,91524,89700,88313,87369,94874,97872,100836,99205,100776,103372,100693,95950,102984,105339,108969,113332,116265,116972,121451,125709,127314,129316,135489,137731,140273,145120,146429,145574,136295,127731,133046,131707,127085,129487,132505,135382,138793,137444,138319,140797
-2019F,TN,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,PCICP,281,1080,1248,1562,1262,1313,1530,1607,1614,2455,1829,1881,2609,2352,1957,2183,1960,2247,1889,1379,1416,2682,2226,1438,1945,1735,1639,1759,1926,1701,1716,1763,2366,1837,1937,1860,1998,1575,2879,3448,2659,4830,4381,4177,5726,5430,6191,5065,5341,1369,868,885,932,893,803,833,861,855,839,794
-2019F,TN,PCTCP,281,1080,1248,1562,1262,1313,1530,1607,1614,2455,1829,1881,2609,2352,1957,2183,1960,2247,1889,1379,1416,2682,2226,1438,1945,1735,1639,1759,1926,1701,1716,1763,2366,1837,1937,1860,1998,1575,2879,3448,2659,4830,4381,4177,5726,5430,6191,5065,5341,1369,868,885,932,893,803,833,861,855,839,794
-2019F,TN,PCTXP,281,1080,1248,1562,1262,1313,1530,1607,1614,2455,1829,1881,2609,2352,1957,2183,1960,2247,1889,1379,1416,2682,2226,1438,1945,1735,1639,1759,1926,1701,1716,1763,2366,1837,1937,1860,1998,1575,2879,3448,2659,4830,4381,4177,5726,5430,6191,5065,5341,1369,868,885,932,893,803,833,861,855,839,794
-2019F,TN,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37,40,39,38,25,28,30,19,8,9
-2019F,TN,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,440,675,401,454,427,391,525,507,612,568
-2019F,TN,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,384,499,769,675,561,533,445,471,460,540
-2019F,TN,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2817,1984,1152,1400,1879,1673,1504,1417,1727,1902
-2019F,TN,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3679,3199,2361,2567,2892,2625,2504,2414,2806,3019
-2019F,TN,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3679,3199,2361,2567,2892,2625,2504,2414,2806,3019
-2019F,TN,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,TN,RFACP,8,54,0,57,34,22,10,116,9,6,3,1,0,131,65,191,260,117,58,156,6,76,21,0,0,0,0,0,13,11,5,50,44,15,2,2,2,4,0,0,0,4,3,8,42,58,12,5,45,0,0,0,52,51,5,12,0,15,0,13
-2019F,TN,RFCCP,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,4,4,3,3,48,76,102,125,83,98,129,66,76,52,33,16,57,33,32,14,28,44,1,0,0,0,0,0,13,0,0,8,4,4,0,0,0,2,0,0,0,0,0,0
-2019F,TN,RFEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,RFICP,180,120,105,219,252,264,333,365,328,797,593,371,517,514,803,523,2699,3249,2224,2231,1445,1074,598,917,612,441,452,253,356,396,269,337,292,473,420,346,181,108,156,50,66,146,133,247,287,302,177,162,156,36,6,25,16,11,36,24,21,6,42,59
-2019F,TN,RFTCP,188,174,105,277,286,287,344,481,337,804,597,373,518,645,869,714,2963,3370,2284,2445,1499,1227,721,1042,695,539,581,320,445,460,307,404,392,521,454,362,210,156,157,50,66,150,135,255,342,360,189,175,205,40,6,25,67,64,41,36,21,21,42,72
-2019F,TN,RFTXP,188,174,105,277,286,287,344,481,337,804,597,373,518,645,869,714,2963,3370,2284,2391,1499,1227,721,1042,695,539,581,320,445,460,307,404,392,521,454,362,210,156,157,50,66,150,135,255,342,360,189,175,205,40,6,25,67,64,41,36,21,21,42,72
-2019F,TN,SGICP,215,208,267,258,258,273,286,320,356,385,363,331,375,392,525,518,500,500,512,485,536,613,644,775,807,822,940,937,948,990,985,1207,1240,1232,1416,1394,1658,1630,2088,2349,2514,2708,2659,2750,2727,2735,2742,2659,2548,2591,2607,2612,2668,2601,2549,2609,2627,2441,2468,2342
-2019F,TN,SNICP,0,0,0,0,404,437,207,172,184,202,214,203,217,219,218,187,133,139,167,169,163,275,256,301,402,309,244,272,214,201,201,149,177,177,137,120,134,130,193,262,175,217,283,223,141,173,202,225,245,133,75,65,43,376,399,373,352,542,497,517
-2019F,TN,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,3,5,53,62,62,66,68,70,72
-2019F,TN,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,18,25,73,75,88,157,315
-2019F,TN,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,6
-2019F,TN,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,23,25,27
-2019F,TN,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,3,15,72,87,136,164,179,258,420
-2019F,TN,TPOPP,3575,3622,3673,3718,3771,3798,3822,3859,3878,3897,3937,4014,4095,4147,4214,4276,4347,4423,4486,4560,4600,4628,4646,4660,4687,4715,4739,4783,4822,4854,4894,4967,5050,5138,5231,5327,5417,5499,5570,5639,5704,5751,5796,5848,5911,5991,6089,6176,6247,6306,6356,6400,6456,6497,6545,6595,6651,6715,6778,6830
-2019F,TN,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-157,-191,-134,-230,-238,-243,-249,-184,-263,-254,-393,-313,-351,-283,-325,-134,-119,-470,-485,-717,-143,-254,-93,-137,5,128,117,-96,-143,51,102,111,29,-139,-32,15,127,51,224
-2019F,TN,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,WXICP,0,0,0,0,0,0,12,11,13,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,184,198,201,201,250,225,218,192,170,198,175,169,168,171,147,123,108,69,96,85,86,114,103,86,89,67,82,69
-2019F,TN,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,3,55,50,50,52,41,53,47,47,51,46,38,43,41,38
-2019F,TN,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TN,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,3,55,50,50,52,41,53,47,47,51,46,38,43,41,38
-2019F,TN,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,263,39,5,208,29,2,-55,5,12,-4,8,7,313,272,358,468,205,330,198,320,391,395,572,426,32,92,5,-44,-13,1,0,-22,-8,-21,-18,-12,-95,-74
-2019F,TX,ARICP,6284,7279,7539,7147,7361,7811,8456,8974,9276,9968,11885,11479,11379,11751,12212,8150,6749,5440,7145,9366,10906,7923,7855,11721,10729,11808,13645,12601,14434,9682,14013,9371,11800,12734,10947,11794,11962,10509,11201,8438,7957,11720,13203,13916,12986,17189,15741,15139,10715,5734,6645,5136,5742,6121,6509,7539,8999,7202,5588,12886
-2019F,TX,ARTCP,6284,7279,7539,7147,7361,7811,8456,8974,9276,9968,11885,11479,11379,11751,12212,8150,6749,5440,7145,9366,10906,7923,7855,11721,10729,11808,13645,12601,14434,9682,14013,9371,11800,12734,10947,11794,11962,10509,11201,8438,7957,11720,13203,13916,12986,17189,15741,15139,10715,5734,6645,5136,5742,6121,6509,7539,8999,7202,5588,12886
-2019F,TX,ARTXP,6284,7279,7539,7147,7361,7811,8456,8974,9276,9968,11885,11479,11379,11751,12212,8150,6749,5440,7145,9366,10906,7923,7855,11721,10729,11808,13645,12601,14434,9682,14013,9371,11800,12734,10947,11794,11962,10509,11201,8438,7957,11720,13203,13916,12986,17189,15741,15139,10715,5734,6645,5136,5742,6121,6509,7539,8999,7202,5588,12886
-2019F,TX,AVACP,3261,2855,3883,3654,3370,3457,3012,2671,2223,2187,2007,1998,1565,1554,1603,1312,1270,1361,1279,1176,1264,1301,903,762,963,1317,1539,1150,1013,820,838,655,783,693,773,645,625,658,555,796,609,468,533,511,484,511,494,492,418,347,622,676,693,651,451,384,407,462,426,415
-2019F,TX,AVTCP,3261,2855,3883,3654,3370,3457,3012,2671,2223,2187,2007,1998,1565,1554,1603,1312,1270,1361,1279,1176,1264,1301,903,762,963,1317,1539,1150,1013,820,838,655,783,693,773,645,625,658,555,796,609,468,533,511,484,511,494,492,418,347,622,676,693,651,451,384,407,462,426,415
-2019F,TX,AVTXP,3261,2855,3883,3654,3370,3457,3012,2671,2223,2187,2007,1998,1565,1554,1603,1312,1270,1361,1279,1176,1264,1301,903,762,963,1317,1539,1150,1013,820,838,655,783,693,773,645,625,658,555,796,609,468,533,511,484,511,494,492,418,347,622,676,693,651,451,384,407,462,426,415
-2019F,TX,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,43,36,71,240,689,933,801,849,686,2339,2900,5467,4775,5254,7909,6943,7867,7155
-2019F,TX,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,43,36,71,240,689,933,801,849,686,2339,2900,5467,4775,5254,7909,6943,7867,7155
-2019F,TX,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35435,21182,26778,39994,38554,42636,26374,9814,8511,14234
-2019F,TX,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35435,21182,26778,39994,38554,42636,26374,9814,8511,14234
-2019F,TX,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1305,175,123,-1094,485,-1678,-750,1025,2640,5
-2019F,TX,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1305,175,123,-1094,485,-1678,-750,1025,2640,5
-2019F,TX,CLACP,18,3,3,3,4,4,3,2,2,2,2,1,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,CLCCP,7,4,5,4,3,3,3,2,1,1,1,1,1,1,1,0,0,2,0,0,1,4,6,0,0,5,11,22,37,10,8,9,8,5,0,0,0,0,13,7,11,15,58,122,10,11,0,0,12,14,11,11,10,9,8,6,0,0,0,0
-2019F,TX,CLEIP,0,0,0,0,0,0,0,0,0,0,0,9,1851,4731,5196,9044,12351,16510,25110,34936,45351,51142,56540,64007,66957,71818,74757,78802,82889,87155,87248,87856,87333,92135,88479,88358,94190,96537,94661,97746,97076,92438,95673,100269,101763,101233,99661,102916,101840,95407,100281,110098,97305,102487,101658,86779,86130,93488,75899,63311
-2019F,TX,CLICP,1031,760,812,757,1039,1136,1075,914,973,937,1150,909,921,3151,3276,3720,3630,3159,3649,4473,3250,5217,4670,4194,5495,5192,4488,4083,3708,4275,4157,4198,4225,4667,5350,4255,4808,4766,4422,4397,4490,4439,4047,4132,4148,4082,4102,1868,1806,833,952,956,947,1002,1296,951,673,630,530,503
-2019F,TX,CLKCP,707,520,669,625,859,993,963,806,860,932,1138,865,878,993,911,956,624,665,404,1123,988,694,383,11,499,404,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,CLOCP,324,240,143,132,180,143,112,108,113,5,12,44,43,2158,2365,2764,3005,2493,3246,3351,2262,4523,4287,4183,4996,4788,4411,4083,3708,4275,4157,4198,4225,4667,5350,4255,4808,4766,4422,4397,4490,4439,4047,4132,4148,4082,4102,1868,1806,833,952,956,947,1002,1296,951,673,630,530,503
-2019F,TX,CLRCP,10,6,7,5,4,3,4,3,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,0,0,2,3,7,10,3,2,2,2,1,0,0,0,0,2,1,1,2,8,18,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,CLTCP,1067,774,827,768,1050,1146,1085,922,978,941,1154,921,2774,7885,8476,12765,15981,19671,28759,39409,48602,56364,61217,68201,72452,77017,79259,82915,86644,91443,91415,92064,91568,96809,93829,92612,98997,101303,99097,102151,101578,96894,99785,104542,105922,105327,103763,104784,103657,96253,101244,111066,98263,103498,102962,87737,86803,94117,76429,63814
-2019F,TX,CLTXP,1067,774,827,768,1050,1146,1085,922,978,941,1154,911,923,3154,3279,3721,3630,3161,3649,4473,3251,5222,4677,4194,5495,5199,4502,4112,3755,4288,4167,4208,4235,4673,5350,4255,4808,4766,4436,4406,4503,4456,4112,4272,4159,4094,4102,1868,1817,847,963,968,958,1011,1304,958,673,630,530,503
-2019F,TX,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,260,285,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,DFACP,13571,13784,14202,14919,14967,15810,14122,15017,17658,20721,22454,24245,30563,36010,38271,37391,38487,43360,46671,49369,48286,57479,57045,53712,50537,53074,48967,48185,47679,50926,47369,52656,56187,60961,63121,64957,70191,73424,79063,79575,82848,91945,91635,93161,101506,104804,118413,119276,112333,107168,115544,123477,122040,129756,146862,145823,143858,148219,161822,164815
-2019F,TX,DFCCP,595,318,419,425,406,440,449,390,444,704,830,922,1401,1556,1630,1669,2024,3465,3862,4467,2842,3740,4880,8952,7085,6778,4010,5125,3546,2755,2225,2223,2339,1957,2214,2669,2680,2411,3072,2871,5657,3627,2316,2706,1796,2717,2420,2441,2282,3348,2494,4600,4168,3424,3219,2891,3262,2570,1991,2397
-2019F,TX,DFEIP,18,17,31,26,15,14,19,15,21,28,45,50,81,77,397,75,133,261,159,311,1126,914,1290,1781,631,775,473,503,654,2350,721,352,297,415,1388,534,696,334,509,796,2147,2924,437,2554,300,317,242,241,193,135,200,265,235,177,200,207,151,137,110,94
-2019F,TX,DFICP,10118,7729,9341,8596,8590,8519,8189,7080,4841,8100,8947,9559,13748,15857,15158,15301,17351,27081,29646,34141,20250,28539,27280,32172,25463,19330,20366,16445,17538,17799,17592,17433,17370,18647,16599,19960,23185,21893,23835,21472,21192,20895,19710,19587,16873,20031,20274,22582,26483,19793,22336,30405,34173,32751,39585,27448,29924,30594,33999,32162
-2019F,TX,DFRCP,96,51,68,69,66,71,73,63,72,114,134,149,227,252,264,270,328,561,626,724,8,7,29,344,273,27,15,51,20,9,2,2,2,3,5,6,0,0,0,2,3,1,4,0,145,5,0,0,0,2,1,3,2,0,1,2,1,1,1,1
-2019F,TX,DFTCP,24400,21899,24061,24034,24044,24854,22852,22565,23036,29667,32410,34926,46020,53752,55721,54706,58322,74729,80965,89011,72513,90679,90523,96961,83989,79984,73832,70309,69437,73839,67909,72666,76195,81982,83328,88126,96751,98062,106480,104717,111848,119392,114102,118008,120621,127873,141350,144541,141292,130446,140575,158751,160618,166109,189868,176371,177197,181519,197923,199468
-2019F,TX,DFTXP,24381,21882,24029,24008,24029,24840,22833,22551,23015,29639,32365,34876,45938,53675,55323,54631,58190,74468,80805,88701,71387,89765,89233,95180,83358,79209,73358,69806,68783,71489,67188,72314,75898,81568,81940,87592,96055,97728,105971,103921,109700,116468,113665,115454,120320,127557,141107,144300,141099,130311,140375,158486,160384,165932,189668,176164,177045,181383,197813,199374
-2019F,TX,ELEXP,208,184,173,186,130,83,91,99,113,146,159,194,273,355,383,414,350,82,17,28,581,289,7,8,9,9,10,40,32,60,65,447,962,801,965,925,1030,1104,5,20,19,3,299,297,295,294,292,403,1013,337,310,307,305,678,437,253,1948,5601,1164,4517
-2019F,TX,ELIMP,33,80,68,16,1,1,1,0,12,14,37,32,59,35,33,72,108,30,0,0,0,0,2,55,53,5,0,0,0,1,1,0,0,0,0,0,6,526,738,204,2,4,80,80,79,78,80,160,961,447,298,82,82,9,13,0,0,10,5832,70
-2019F,TX,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-15500,-16653,-20829,-17097,-16621,-20323,-15116,-14374,-15676,-19710,-20878,-20525,-16793,-19666,-30101,-23863,-19001,-5069,-1665,5403,5938,13,-4126,9173,12681,4451,8372,14433,5111,11394
-2019F,TX,ELNIP,-175,-104,-105,-169,-129,-82,-90,-98,-100,-132,-122,-162,-215,-319,-350,-343,-242,-52,-17,-28,-581,-289,-5,46,44,-4,-10,-40,-32,-58,-63,-447,-962,-801,-965,-925,-1024,-577,734,185,-16,1,-219,-217,-216,-216,-212,-243,-52,110,-12,-224,-223,-669,-424,-253,-1948,-5591,4668,-4446
-2019F,TX,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,646,455,781,762,1072,804,605,565,564,639,147,365,1192,444,1048,1549,1349,1545,1552,676,550,650,393,10594,15203,18122,19003,24300,28800,27037,26955,29961,30614,34114,34502,34821,35705
-2019F,TX,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,8,8,12,10,7,7,5,5,0,0,1,0,1,1,1,1,1,0,0,0,0,7,20,23,21,28,30,29,29,29,492,527,523,524,538
-2019F,TX,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,18,17,23,16,14,12,14,14,2,6,22,8,20,33,14,16,29,13,11,15,8,231,244,247,254,486,613,528,556,434,352,379,385,391,398
-2019F,TX,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,656,464,807,787,1107,830,626,584,582,658,150,371,1215,452,1069,1583,1364,1563,1582,689,561,665,401,10833,15466,18391,19278,24813,29444,27593,27541,30424,31458,35020,35410,35736,36641
-2019F,TX,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,242124,264400,259329,273846,276788,283893,305751,332759,419124,423920
-2019F,TX,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,242124,264400,259329,273846,276788,283893,305751,332759,419124,423920
-2019F,TX,ESACP,8,7,6,6,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,19,21,19,30,34,44,90,81,71,62,67,69,71,74,68,70,61,172,180,182,182,187,187
-2019F,TX,ESCCP,9801,10528,11467,12738,13636,14804,15948,17425,18804,20934,22869,25329,28305,30102,30788,33884,35110,37882,40482,40934,44062,47253,49337,51228,57151,60150,61350,62459,65511,67426,70781,72141,72076,75466,78058,80354,83477,85162,91548,93492,99748,102459,97115,96694,99616,110784,111130,110540,113638,118535,121467,128214,133105,136516,139432,136324,139104,137486,143525,142002
-2019F,TX,ESICP,14602,15280,17221,19091,21139,23685,27278,29842,33599,37752,40274,42309,46267,49788,51615,54712,60264,68279,72234,76419,78190,79905,76055,79629,82742,81235,79527,79238,81579,82615,84087,84122,85421,86933,90329,90093,95308,100429,102702,99741,101588,98208,102251,104547,100588,96841,104689,108300,105868,96931,99754,102129,94517,101968,109165,110182,113403,119970,123439,131674
-2019F,TX,ESRCP,11316,11622,14155,16137,17229,18745,20305,22521,25265,30211,32591,35980,40998,42632,43527,40892,41171,46831,51105,50383,57178,57621,60733,60326,68363,71740,72392,74369,77255,79620,82548,84088,81934,87686,89793,92831,99656,101094,110434,108591,116895,117343,121435,121355,120330,126562,126843,124921,128240,129815,137161,145654,137412,140273,140900,145652,145973,144242,157268,155481
-2019F,TX,ESRPP,1176,1184,1408,1588,1678,1806,1935,2125,2335,2735,2901,3126,3487,3547,3548,3253,3191,3550,3785,3628,3988,3907,3961,3830,4271,4409,4371,4474,4635,4737,4840,4833,4613,4828,4837,4896,5153,5121,5479,5282,5581,5504,5599,5508,5373,5556,5430,5242,5275,5234,5434,5680,5268,5297,5226,5303,5229,5099,5494,5364
-2019F,TX,ESTCP,35726,37438,42850,47972,52009,57237,63531,69788,77667,88896,95735,103617,115570,122522,125930,129488,136545,152992,163821,167736,179430,184779,186124,191183,208256,213125,213270,216066,224346,229660,237415,240352,239431,250084,258180,263279,278450,286704,304705,301844,318263,318044,320846,322686,320615,334258,342724,343829,347815,345351,358458,376065,365104,378817,389670,392337,398662,401880,424419,429343
-2019F,TX,ESTPP,3712,3812,4262,4722,5064,5515,6055,6584,7179,8049,8520,9003,9828,10194,10264,10302,10582,11596,12135,12077,12514,12531,12140,12137,13010,13097,12878,12999,13460,13665,13919,13815,13482,13770,13908,13887,14397,14524,15116,14682,15196,14918,14792,14647,14317,14675,14672,14427,14308,13924,14201,14664,13997,14306,14452,14283,14282,14205,14827,14812
-2019F,TX,ESTXP,35726,37438,42850,47972,52009,57237,63531,69788,77667,88896,95735,103617,115570,122522,125930,129488,136545,152992,163821,167736,179430,184779,186124,191183,208256,213125,213270,216066,224346,229660,237415,240352,239431,250084,258180,263279,278450,286704,304705,301844,318263,318044,320846,322686,320615,334258,342724,343829,347815,345351,358458,376065,365104,378817,389670,392337,398662,401880,424419,429343
-2019F,TX,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1642,1651,1400,234,284,243,196,198,70,96
-2019F,TX,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1642,1651,1400,234,284,243,196,198,70,96
-2019F,TX,FNICP,0,0,0,13441,15004,14356,24324,30730,33946,35136,34959,34680,35445,34681,37767,32660,44736,45334,45710,52924,55218,51232,36765,32999,32111,27423,39702,40460,41354,45192,40449,34767,43859,40774,46326,43375,55743,62380,68803,60238,80294,69506,87126,92721,114606,107905,98049,88498,75738,76201,80480,79946,74467,84953,71949,69584,68278,70904,72677,64485
-2019F,TX,FOICP,0,0,0,15919,17814,15781,16798,16925,19331,19064,22052,26418,35845,42695,39554,33449,43703,69077,85955,102235,103740,87897,63034,61813,56775,61032,73707,67076,70437,65887,91069,99932,98388,101959,101303,96757,88137,104033,99457,93944,75421,61165,50538,49269,47792,40845,42837,15692,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,FSICP,0,0,0,2074,2070,2395,2678,2624,2659,2719,3418,4343,3840,3316,3871,4096,4592,4786,5502,3598,4384,1913,2001,2520,3170,3425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,HLACP,2024,2192,2261,2433,3142,4588,4851,4815,5450,5678,5587,6366,6535,6007,5299,4969,5124,5416,5007,782,649,1373,1197,1421,829,609,764,452,464,452,479,345,310,348,614,322,274,246,735,365,234,586,480,524,573,468,520,362,662,502,247,187,194,209,370,306,304,239,122,133
-2019F,TX,HLCCP,2764,2770,2792,2872,3489,3578,3254,3328,3833,4533,4221,4057,4208,3840,3408,3130,3203,2955,3279,1681,1681,1712,1296,1542,1408,1991,1812,1931,1702,1791,1681,1107,945,1007,994,910,634,960,1248,2492,2948,3349,3000,3431,1954,2625,2308,694,2258,1777,2348,1801,1804,1953,2094,2240,1836,1713,2478,2526
-2019F,TX,HLICP,59411,61869,67688,72484,83333,89166,92057,94436,106934,125045,127521,130585,153699,162976,160391,143075,142142,144264,145944,190341,208898,221565,210873,194749,285494,275079,267502,294182,312804,325130,318417,354679,371477,361533,398466,410810,438965,488141,480368,483872,444667,418137,443752,452845,476031,436864,437961,457680,361353,375233,453293,450994,484434,529526,498111,546384,557229,577719,686660,700993
-2019F,TX,HLRCP,9098,9119,9191,9453,11484,11778,10713,10954,12618,14923,13894,13355,13852,12640,11220,10304,10544,9726,10795,5532,5533,5635,4268,5075,4634,6553,5965,6358,5602,5896,5534,3646,3112,3315,3273,2995,2086,3161,4108,8204,9705,11024,9874,8483,6691,7959,6055,6613,6263,5359,5337,4787,3821,4560,4828,4966,5099,4155,4343,5624
-2019F,TX,HLTCP,73297,75950,81932,87241,101447,109109,110875,113533,128836,150180,151223,154363,178294,185463,180319,161478,161013,162361,165026,198336,216760,230285,217634,202787,292366,284231,276043,302924,320571,333269,326112,359778,375843,366203,403348,415037,441959,492508,486459,494933,457553,433096,457107,465283,485249,447915,446844,465349,370537,382871,461226,457769,490253,536247,505403,553897,564468,583826,693603,709277
-2019F,TX,HLTXP,73297,75950,81932,87241,101447,109109,110875,113533,128836,150180,151223,154363,178294,185463,180319,161478,161013,162361,165026,198336,216760,230285,217634,202787,292366,284231,276043,302924,320571,333269,326112,359778,375843,366203,403348,415037,441959,492508,486459,494933,457553,433096,457107,465283,485249,447915,446844,465349,370537,382871,461226,457769,490253,536247,505403,553897,564468,583826,693603,709277
-2019F,TX,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1
-2019F,TX,HYEGP,1102,1234,800,478,454,743,787,579,1326,1271,1005,880,830,1700,1631,1922,1063,1164,765,1202,979,1145,1027,1107,1031,1401,1972,2158,1235,1441,1794,2225,2638,1786,1530,1703,960,1791,1425,1120,829,1200,1123,897,1301,1333,662,1644,1039,1029,1262,563,584,480,386,956,1342,1060,1125,1474
-2019F,TX,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,HYTCP,1102,1234,800,478,454,743,787,579,1326,1271,1005,880,830,1700,1631,1927,1068,1169,765,1202,979,1145,1027,1107,1031,1401,1972,2158,1235,1441,1794,2225,2638,1786,1530,1703,960,1791,1425,1120,829,1200,1123,897,1301,1333,662,1644,1039,1029,1262,563,584,480,386,956,1342,1062,1126,1475
-2019F,TX,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1
-2019F,TX,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9075,11709,14685,21962,22909,35556,46905,50989,58267,68343
-2019F,TX,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9075,11709,14685,21962,22909,35556,46905,50989,58267,68343
-2019F,TX,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,236,591,170,-146,-216,-240,152,239,-164,21
-2019F,TX,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,236,591,170,-146,-216,-240,152,239,-164,21
-2019F,TX,JFACP,10842,11801,14045,14650,15498,15365,17646,21162,24253,25101,24430,25067,25910,26533,25955,27308,25641,26704,27954,29263,30934,30922,42809,47270,64626,74500,80214,84562,94793,93265,95903,90674,90029,86961,83397,83002,99870,105655,108635,104896,102717,112845,115598,101335,88821,80382,81452,75409,72516,61808,46905,46904,46340,48011,49119,53947,54758,54046,54700,58234
-2019F,TX,JFTCP,10842,11801,14045,14650,15498,15365,17646,21162,24253,25101,24430,25067,25910,26533,25955,27308,25641,26704,27954,29263,30934,30922,42809,47270,64626,74500,80214,84562,94793,93265,95903,90674,90029,86961,83397,83002,99870,105655,108635,104896,102717,112845,115598,101335,88821,80382,81452,75409,72516,61808,46905,46904,46340,48011,49119,53947,54758,54046,54700,58234
-2019F,TX,JFTXP,10842,11801,14045,14650,15498,15365,17646,21162,24253,25101,24430,25067,25910,26533,25955,27308,25641,26704,27954,29263,30934,30922,42809,47270,64626,74500,80214,84562,94793,93265,95903,90674,90029,86961,83397,83002,99870,105655,108635,104896,102717,112845,115598,101335,88821,80382,81452,75409,72516,61808,46905,46904,46340,48011,49119,53947,54758,54046,54700,58234
-2019F,TX,KSCCP,656,283,400,530,728,788,2020,1909,3382,3533,3603,3027,3531,5228,4380,4192,2872,3771,4237,10172,3251,6808,1298,11780,1054,250,177,82,41,405,25,12,68,25,29,46,38,38,52,57,48,84,58,35,34,44,74,43,38,34,23,19,9,5,13,7,12,5,5,6
-2019F,TX,KSICP,2729,1074,1054,1573,2952,2663,5424,5097,3552,3896,3863,2666,3721,3433,3176,2965,2441,3005,3881,7404,11906,3823,8474,2385,339,414,455,444,134,248,149,47,82,97,99,128,161,282,347,134,245,461,73,196,278,239,217,132,137,71,39,67,28,26,27,36,43,23,25,16
-2019F,TX,KSRCP,6,3,4,5,7,7,19,18,31,33,33,28,33,48,40,39,27,35,39,94,198,114,356,112,48,112,46,59,58,49,26,34,23,30,20,22,38,45,31,31,30,58,17,18,12,15,7,9,8,3,5,3,1,1,2,1,1,1,1,0
-2019F,TX,KSTCP,3391,1360,1457,2108,3687,3459,7462,7024,6965,7461,7500,5721,7285,8709,7597,7196,5339,6811,8157,17670,15355,10745,10128,14276,1441,776,678,585,233,703,200,93,173,152,148,196,237,364,430,222,323,603,148,249,324,298,298,185,183,109,67,89,38,32,42,44,56,29,31,23
-2019F,TX,KSTXP,3391,1360,1457,2108,3687,3459,7462,7024,6965,7461,7500,5721,7285,8709,7597,7196,5339,6811,8157,17670,15355,10745,10128,14276,1441,776,678,585,233,703,200,93,173,152,148,196,237,364,430,222,323,603,148,249,324,298,298,185,183,109,67,89,38,32,42,44,56,29,31,23
-2019F,TX,LUACP,1780,1733,1789,1788,1878,1814,1884,1659,1822,1593,1623,1627,1742,1817,1740,1738,1931,1908,2049,2144,1909,1831,1670,1748,1864,1738,1699,1921,1852,1900,1955,1749,1783,1816,1898,1865,1810,1912,2002,2023,1992,1826,1804,1668,1690,1681,1638,1691,1570,1411,2667,2637,2438,2668,3012,3235,3088,2856,2822,2782
-2019F,TX,LUICP,1712,1666,2321,2320,2437,1974,2050,2066,2270,2534,2581,2646,2834,3199,3063,2583,2870,3428,3682,3853,3431,3290,3000,3141,3350,3122,3052,3451,3328,3413,3513,3142,3204,3262,3410,3351,3252,3436,3597,3634,3580,3280,3241,2996,3036,3020,2942,3038,2821,2536,3931,3872,3938,4339,4721,5373,4941,4495,4519,4705
-2019F,TX,LUTCP,3493,3399,4110,4108,4315,3788,3935,3725,4092,4127,4204,4274,4576,5016,4804,4321,4800,5336,5731,5997,5340,5121,4670,4890,5214,4859,4751,5372,5180,5313,5468,4891,4987,5078,5308,5216,5062,5348,5599,5657,5572,5105,5045,4664,4725,4701,4580,4729,4391,3947,6598,6510,6376,7007,7734,8607,8030,7351,7341,7487
-2019F,TX,LUTXP,3493,3399,4110,4108,4315,3788,3935,3725,4092,4127,4204,4274,4576,5016,4804,4321,4800,5336,5731,5997,5340,5121,4670,4890,5214,4859,4751,5372,5180,5313,5468,4891,4987,5078,5308,5216,5062,5348,5599,5657,5572,5105,5045,4664,4725,4701,4580,4729,4391,3947,6598,6510,6376,7007,7734,8607,8030,7351,7341,7487
-2019F,TX,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-12920,-10443,-7545,-3517,-10445,-14396,-6357,-2912,2779,2648,-1288,3638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,MGACP,87381,90265,93979,97692,100801,104577,110564,115177,124375,131667,139292,146499,157410,167639,166032,173854,183900,193072,200468,193944,177228,183644,189156,192055,192758,198761,202884,198817,202116,196670,198773,192539,194901,203844,214861,209319,222177,220599,231655,240326,247076,251744,263306,264111,269523,272404,279135,285654,283911,284533,287738,283589,286670,295443,309840,320204,329232,331492,337371,339773
-2019F,TX,MGCCP,663,659,678,664,654,711,696,649,748,731,692,614,610,628,689,687,1588,994,802,1162,3299,781,870,2430,1747,1954,2087,2296,2440,2334,2294,1623,1446,159,160,164,163,163,163,165,167,176,178,177,178,180,187,372,361,310,326,300,303,315,303,5151,5082,5021,5074,5120
-2019F,TX,MGICP,3798,3408,3114,2998,2720,2563,2203,1954,1916,1626,1410,1507,1222,1184,1144,997,1215,951,721,878,470,750,637,535,2250,4704,4542,4224,4123,4517,4336,4618,4338,3438,3750,3944,4040,4236,4961,2501,2576,4632,5005,5244,6023,5766,6096,4580,3867,3802,5750,6035,5600,6098,4489,3682,3663,3703,3786,3786
-2019F,TX,MGTCP,91841,94332,97771,101355,104175,107851,113463,117780,127038,134024,141393,148620,159242,169451,167865,175538,186703,195017,201991,195984,180997,185175,190663,195020,196755,205419,209513,205338,208680,203520,205402,198780,200686,207441,218772,213428,226381,224997,236779,242992,249819,256553,268490,269532,275724,278350,285419,290606,288139,288646,293814,289923,292573,301856,314632,329038,337977,340217,346231,348678
-2019F,TX,MGTXP,91841,94332,97771,101355,104175,107851,113463,117780,127038,134024,141393,148620,159242,169451,167865,175538,186703,195017,201991,195984,180997,185175,190663,195020,196755,205419,209513,205338,208680,203520,205402,198780,200686,207441,218772,213428,226381,224997,236779,242992,249819,256553,268490,269532,275724,278350,285419,290606,288139,288646,293814,289923,292573,301856,314632,329038,337977,340217,346231,348678
-2019F,TX,MSICP,8880,9914,10882,5760,5761,5621,5509,5147,5741,5347,4776,5512,5648,6997,8967,12075,19557,22121,19243,17809,16885,14921,13079,11724,10066,10138,8661,8697,10547,9703,8729,9996,6554,6204,6933,6361,6417,7045,8576,8066,8592,8822,9477,8896,8011,7966,12037,11811,12568,13434,14043,14577,14297,12477,13321,13772,13948,17548,17474,15902
-2019F,TX,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16022,26873,25856,22172,6326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,NGACP,52295,62800,61208,65583,66254,67532,67576,72353,85067,86302,96229,99091,104378,104587,93799,82121,71960,66520,75178,77867,104826,101771,102746,105797,107907,92040,81753,80976,107527,107190,106056,81965,81078,82395,95919,82211,76008,82358,66600,71356,63068,71313,90785,58410,58072,83075,87128,91534,111454,119400,82151,87752,140636,297320,105458,89264,89402,86312,119749,159467
-2019F,TX,NGCCP,59728,62334,67868,74975,81350,80612,88470,139727,139442,140854,146090,142423,141128,155070,134418,116749,135452,158683,168946,233758,168513,157199,189447,157481,165700,151774,146972,156509,175368,182670,172333,180973,184673,175988,180232,209584,178549,216333,169610,171714,190453,171847,226274,218565,192901,159972,147366,161255,167129,167315,188796,184475,161273,173809,184908,175883,164306,164782,214173,198029
-2019F,TX,NGEIP,407310,420072,492147,554120,605580,639543,702110,774167,851612,973439,1061625,1167973,1284783,1265928,1334837,1353297,1378534,1488818,1490686,1400368,1430027,1378235,1286297,1190648,1265385,1197590,1106826,1049804,1043910,1144026,1134238,1132682,1104687,1210739,1187928,1207268,1206032,1231541,1440704,1444716,1577563,1506112,1550292,1453858,1394408,1466263,1463658,1473555,1440043,1387421,1348656,1454413,1516946,1422600,1425134,1623836,1534063,1370474,1643854,1787199
-2019F,TX,NGICP,2029270,2024831,2041825,2042862,1997084,2097665,2209403,2297592,2408512,2456053,2557224,2717854,2641685,2854315,2677831,2159890,2153724,2159038,2201773,1973505,2162933,2080437,1594531,1573110,1663321,1731635,1655356,1805304,1994246,2079865,2105403,2069924,2027846,2117335,2068943,2188003,2442392,2351090,2329161,2146081,2397231,2315650,2246150,2133763,2092866,1628074,1590583,1611929,1652978,1536577,1743038,1781283,1874833,1933522,1988477,2023290,2067057,2089677,2266597,2290210
-2019F,TX,NGRCP,171670,166188,196433,198263,193093,182590,196355,201407,211763,220728,232189,237387,240662,241478,222603,232320,235637,269964,274849,315857,224800,209045,221383,214479,230311,212676,194602,210688,209957,230099,210655,222200,214682,231799,213433,206415,229318,234988,199454,175907,193555,208449,209951,206694,191507,185124,166225,199802,192750,192153,226445,199958,169980,207148,234520,211379,175332,164147,227028,228129
-2019F,TX,NGTCP,2720273,2736225,2859481,2935803,2943361,3067942,3263914,3485246,3696396,3877376,4093357,4364728,4412636,4621378,4463488,3944377,3975307,4143023,4211432,4001355,4091099,3926687,3394404,3241515,3432624,3385715,3185509,3303281,3531008,3743850,3728685,3687744,3612967,3818255,3746454,3893480,4132299,4116310,4205530,4009774,4421871,4273372,4323451,4071289,3929754,3522508,3454960,3538074,3564353,3402867,3589086,3707881,3863669,4034400,3938497,4123652,4030160,3875391,4471401,4663034
-2019F,TX,NGTPP,282.7,278.6,284.4,289,286.6,295.6,311.1,328.8,341.7,351.1,364.3,379.2,375.3,384.5,363.8,313.8,308.1,314,311.9,288.1,285.3,266.3,221.4,205.8,214.4,208.1,192.3,198.7,211.9,222.8,218.6,212,203.4,210.2,201.8,205.4,213.7,208.5,208.6,195,211.1,200.4,199.3,184.8,175.5,154.6,147.9,148.5,146.6,137.2,142.2,144.6,148.1,152.4,146.1,150.1,144.4,137,156.2,160.9
-2019F,TX,NGTXP,2312963,2316153,2367334,2381683,2337781,2428399,2561804,2711079,2844784,2903937,3031732,3196755,3127853,3355450,3128651,2591080,2596773,2654205,2720746,2600987,2661072,2548452,2108107,2050867,2167239,2188125,2078683,2253477,2487098,2599824,2594447,2555061,2508279,2607516,2558526,2686212,2926267,2884768,2764826,2565058,2844308,2767260,2773159,2617432,2535346,2056245,1991301,2064520,2124311,2015445,2240430,2253468,2346722,2611799,2513363,2499816,2496097,2504918,2827547,2875835
-2019F,TX,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3792,9990,15859,19800,24496,12407,28745,36151,35767,37358,38685,36760,37556,38163,35618,33437,40435,38232,41264,40955,40727,41498,41335,39648,38441,38315,39287,39355,42079,38581,41186,41298
-2019F,TX,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3792,9990,15859,19800,24496,12407,28745,36151,35767,37358,38685,36760,37556,38163,35618,33437,40435,38232,41264,40955,40727,41498,41335,39648,38441,38315,39287,39355,42079,38581,41186,41298
-2019F,TX,OPICP,42846,43931,45673,71564,77342,75972,87055,95408,103680,107617,111581,115015,127503,136916,139529,129728,162239,195466,214057,235301,239213,185566,143821,147991,140032,133410,155796,156760,172459,171993,191785,186601,199465,194092,205955,194965,209193,233545,226756,214113,211053,203058,207437,218922,238765,223105,223754,187401,154046,154291,164009,165332,162644,175201,157049,158712,162508,171845,172482,165591
-2019F,TX,OPTCP,42846,43931,45673,71564,77342,75972,87055,95408,103680,107617,111581,115015,127503,136916,139529,129728,162239,195466,214057,235301,239213,185566,143821,147991,140032,133410,155796,156760,172459,171993,191785,186601,199465,194092,205955,194965,209193,233545,226756,214113,211053,203058,207437,218922,238765,223105,223754,187401,154046,154291,164009,165332,162644,175201,157049,158712,162508,171845,172482,165591
-2019F,TX,OPTXP,42846,43931,45673,71564,77342,75972,87055,95408,103680,107617,111581,115015,127503,136916,139529,129728,162239,195466,214057,235301,239213,185566,143821,147991,140032,133410,155796,156760,172459,171993,191785,186601,199465,194092,205955,194965,209193,233545,226756,214113,211053,203058,207437,218922,238765,223105,223754,187401,154046,154291,164009,165332,162644,175201,157049,158712,162508,171845,172482,165591
-2019F,TX,P1ICP,66692,69029,73296,99338,107786,106935,120933,129755,137236,143182,147105,149304,165519,177288,177885,164810,195335,229730,250903,276059,287243,220232,183538,184671,175928,172257,195766,196028,215122,209197,237434,226718,244024,238607,245836,235068,251149,277381,269498,253955,250873,248577,253682,266532,288168,273886,277372,236494,194458,186878,200063,199285,201377,215982,197543,199322,204127,209599,209934,209871
-2019F,TX,P1TCP,72395,73903,79372,105317,113769,113002,127867,136012,144694,150528,154372,155984,172390,185936,185649,172091,201434,236805,258507,289645,293865,230286,187766,199073,179857,175675,199227,199240,218086,212371,240278,229169,246681,244041,250902,240105,256198,282505,274658,259294,256389,253063,258993,270029,293015,278862,282511,240798,198337,191224,204323,203743,204643,219541,201022,202950,207635,212922,213187,213075
-2019F,TX,P1TXP,72395,73903,79372,105317,113769,113002,127867,136012,144694,150528,154372,155984,172390,185936,185649,172091,201434,236805,258507,289645,293865,230286,187766,199073,179857,175675,199227,199240,218086,212371,240278,229169,246681,241171,248557,237646,253661,280033,272137,256861,253553,251012,256094,268764,290387,276136,279585,238730,196493,188674,203379,202620,204518,219308,201022,202950,207635,212922,213187,213075
-2019F,TX,PAACP,136595,138102,142912,146891,152099,157957,163981,172564,187650,199005,207059,215634,233354,255165,260181,271622,283230,304351,319977,325708,306082,312378,323171,322685,336341,351609,361609,354609,369932,369868,371182,365639,373582,374449,383555,380135,412812,422714,447285,445453,456482,475504,489445,477958,482877,482710,505633,512375,496501,477631,481551,484026,477509,495552,529000,543113,560068,565708,580279,590534
-2019F,TX,PACCP,4868,4325,4555,4787,5483,5581,6466,6331,8472,9579,9423,8688,9928,11574,10642,10355,10302,11854,12924,18539,13642,15566,10159,25722,11974,11225,8333,9970,8272,7580,6295,5182,4814,3147,3399,3789,3514,3572,4536,5584,8821,7247,5574,6349,3962,5565,4988,3564,4947,5473,5206,6763,6308,5726,5639,10289,10199,9308,9547,10049
-2019F,TX,PAEIP,61,57,105,86,51,47,63,49,70,93,149,343,1830,6301,5512,1815,3864,5084,6913,4742,1786,1500,2204,3850,955,1657,847,1073,1384,4287,975,455,474,3613,4076,3055,3568,2830,3041,3239,5385,5591,3422,4316,3118,3071,3224,2355,2043,2685,1144,1389,386,410,200,207,151,137,110,94
-2019F,TX,PAICP,144635,148047,159053,188958,207207,209061,225290,235171,252879,280207,287280,292889,337493,364908,363618,335253,369124,417729,444044,518976,532890,499456,449176,426521,498758,477338,489855,512223,550627,557144,579052,604542,638022,624637,667040,672241,719431,793498,779517,762435,719710,692761,722946,745616,788171,740083,745627,724457,589782,589113,684723,691266,727746,785983,741588,778079,796951,824130,936726,948772
-2019F,TX,PARCP,9201,9173,9263,9526,11556,11856,10804,11035,12721,15070,14062,13532,14112,12941,11524,10613,10898,10322,11460,6350,5739,5756,4652,5531,4954,6693,6026,6469,5680,5954,5562,3682,3136,3348,3298,3023,2125,3206,4139,8237,9738,11083,9896,8501,6847,7979,6062,6622,6272,5364,5343,4793,3824,4561,4831,4969,5101,4157,4345,5626
-2019F,TX,PATCP,295360,299703,315888,350249,376396,384503,406604,425150,461793,503954,517973,531087,596717,650889,651477,629658,677418,749341,795318,874314,860139,834656,789363,784309,852982,848522,866671,884344,935895,944834,963066,979501,1020028,1009194,1061369,1062243,1141450,1225820,1238518,1224947,1200135,1192186,1231283,1242741,1284977,1239409,1265534,1249373,1099545,1080266,1177967,1188238,1215774,1292232,1281258,1336657,1372470,1403441,1531007,1555075
-2019F,TX,PATPP,30.7,30.5,31.4,34.5,36.7,37,38.8,40.1,42.7,45.6,46.1,46.1,50.7,54.2,53.1,50.1,52.5,56.8,58.9,63,60,56.6,51.5,49.8,53.3,52.1,52.3,53.2,56.2,56.2,56.5,56.3,57.4,55.6,57.2,56,59,62.1,61.4,59.6,57.3,55.9,56.8,56.4,57.4,54.4,54.2,52.4,45.2,43.6,46.7,46.3,46.6,48.8,47.5,48.7,49.2,49.6,53.5,53.6
-2019F,TX,PATXP,295299,299646,315783,350162,376345,384455,406541,425101,461723,503861,517824,530744,594887,644588,645965,627843,673554,744257,788405,869573,858353,833156,787159,780460,852027,846866,865824,883270,934511,940547,962091,979046,1019555,1005581,1057293,1059188,1137883,1222990,1235477,1221708,1194750,1186595,1227861,1238425,1281859,1236337,1262311,1247018,1097501,1077581,1176823,1186849,1215387,1291822,1281059,1336450,1372319,1403304,1530897,1554981
-2019F,TX,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2871,2345,2460,2537,2472,2521,2433,2836,2051,2899,1264,2628,2726,2926,2068,1844,2550,944,1124,126,233,0,0,0,0,0,0
-2019F,TX,PCICP,13121,15078,16709,16734,17695,18515,17948,18210,18458,19168,17196,17498,20082,21990,19904,21384,21036,22391,22138,20135,21787,19629,20389,19433,21478,23504,22817,22772,24768,23860,27975,27558,29472,28421,25427,24829,26581,29609,27597,27635,28039,30058,29729,30503,33103,30333,34717,30784,26740,24245,25440,24877,29026,30295,29237,27662,27636,26033,27320,26672
-2019F,TX,PCTCP,13121,15078,16709,16734,17695,18515,17948,18210,18458,19168,17196,17498,20082,21990,19904,21384,21036,22391,22138,20135,21787,19629,20389,19433,21478,23504,22817,22772,24768,23860,27975,27558,29472,31292,27772,27289,29118,32081,30117,30068,30875,32109,32628,31767,35731,33058,37644,32851,28584,26795,26384,26000,29152,30528,29237,27662,27636,26033,27320,26672
-2019F,TX,PCTXP,13121,15078,16709,16734,17695,18515,17948,18210,18458,19168,17196,17498,20082,21990,19904,21384,21036,22391,22138,20135,21787,19629,20389,19433,21478,23504,22817,22772,24768,23860,27975,27558,29472,28421,25427,24829,26581,29609,27597,27635,28039,30058,29729,30503,33103,30333,34717,30784,26740,24245,25440,24877,29026,30295,29237,27662,27636,26033,27320,26672
-2019F,TX,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,3727,4231,563,0,0,0,0,-7,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28844,27300,25872,30643,27611,27095,33069,38842,42611,43897,44749,44642,46897,43452,39348,49742,51014,42087,38029,37946,38641,34428,24814,32058,27594,23395,28978,10189,15732,17558,16322,29631,20711,31897,41305,61538
-2019F,TX,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28844,27300,25872,30643,27611,27095,33069,38842,42611,43897,44749,44642,46897,43452,39348,49742,51014,42087,38029,37946,38641,34428,24814,32058,27594,23395,28978,10189,15732,17558,16322,29631,20711,31897,41305,61538
-2019F,TX,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,247,187,194,209,370,306,304,239,122,133
-2019F,TX,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2348,1801,1804,1953,2094,2240,1836,1713,2478,2526
-2019F,TX,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59493,64918,88079,100061,68394,82335,81753,72768,78009,57733
-2019F,TX,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5337,4787,3821,4560,4828,4966,5099,4155,4343,5624
-2019F,TX,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,67425,71693,93898,106783,75687,89848,88992,78875,84952,66017
-2019F,TX,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,67425,71693,93898,106783,75687,89848,88992,78875,84952,66017
-2019F,TX,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,75005,76179,78136,77111,74592,74009,76138,78030,78897,75103
-2019F,TX,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,75005,76179,78136,77111,74592,74009,76138,78030,78897,75103
-2019F,TX,RFACP,17736,15471,12752,11755,12442,12346,11902,12062,11869,12058,11667,9832,9629,15604,21280,25049,26877,32529,36548,49031,45812,35827,30391,25716,24764,21610,25541,19522,22015,25835,25865,27020,29589,19826,18891,20024,17866,20220,24640,17471,21007,16090,16088,16648,20281,22460,23981,29491,25090,21861,27828,26556,19135,18813,19345,19214,28421,28394,23016,24382
-2019F,TX,RFCCP,191,295,267,296,206,64,47,55,66,77,78,68,178,323,534,677,615,670,743,1057,2569,2525,1816,1018,681,252,247,536,543,295,71,216,16,0,1,0,0,0,0,0,0,11,23,0,0,0,0,14,7,4,14,44,24,29,9,0,7,0,0,0
-2019F,TX,RFEIP,43,40,73,60,36,33,44,35,49,65,104,292,1749,6224,5114,1740,3732,4823,6753,4431,660,587,914,2069,324,881,373,570,730,1937,254,104,177,328,343,62,335,24,11,10,401,617,86,498,190,29,55,46,6,0,0,0,26,0,0,0,0,0,0,0
-2019F,TX,RFICP,4615,6012,5614,5541,4778,1879,1909,1946,1952,2253,2297,1934,3304,7603,9040,11070,13081,15703,16830,17557,16029,28370,26848,14395,9622,5969,1680,1344,1040,503,1273,1094,813,2412,2388,2459,2092,1847,856,635,401,519,796,1408,1077,3537,3923,3121,3620,3408,3280,4548,2162,1626,1860,1242,2008,2516,2347,1961
-2019F,TX,RFTCP,22584,21818,18707,17652,17463,14322,13901,14097,13936,14454,14146,12126,14860,29754,35968,38536,44304,53725,60875,72076,65070,67308,59968,43198,35390,28713,27842,21971,24328,28570,27463,28434,30595,22566,21623,22544,20292,22092,25507,18115,21810,17237,16993,18554,21548,26026,27958,32671,28724,25272,31123,31148,21347,20468,21214,20455,30436,30910,25363,26344
-2019F,TX,RFTXP,22542,21778,18633,17592,17427,14289,13857,14063,13887,14389,14042,11834,13111,23530,30854,36797,40573,48902,54122,67645,64410,66722,59054,41129,35066,27831,27469,21402,23598,26633,27209,28330,30418,22238,21280,22483,19958,22068,25496,18106,21408,16621,16907,18056,21358,25997,27903,32625,28718,25272,31123,31148,21321,20468,21214,20455,30436,30910,25363,26344
-2019F,TX,SGICP,33905,33957,34737,34318,35290,36302,36032,38547,40461,43664,44590,42192,44729,47162,47325,45682,47546,51993,55085,56145,56492,53484,52408,52736,52940,54447,62272,60950,63691,63658,63613,62067,60889,61014,62228,61326,62208,62943,61987,62336,63083,64972,63950,68257,70120,64446,66057,66614,66369,67375,67473,67567,70469,74772,73525,74166,77837,77309,78858,76023
-2019F,TX,SNICP,0,0,0,0,1353,1465,1646,1371,1469,1610,1707,1706,1827,1847,1833,1576,1910,1992,2395,2425,2332,2012,1874,2202,2943,2263,1512,1686,1328,1249,1247,960,1141,1141,884,773,859,832,1236,1675,1122,1317,1719,1351,857,1049,1350,1504,1636,890,503,436,284,1986,2107,1971,1858,1943,1783,1852
-2019F,TX,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,3,3,6,12,24,39,53,73,100,141,133,189,246
-2019F,TX,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,29,118,161,280,399,729,2187,3204,4362
-2019F,TX,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2
-2019F,TX,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,4,7,14,25,40,65,93,126,252,345,528,756
-2019F,TX,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,5,7,12,35,77,197,279,446,624,1122,2665,3921,5366
-2019F,TX,TPOPP,9624,9820,10053,10159,10270,10378,10492,10599,10819,11045,11236,11510,11759,12020,12269,12569,12904,13193,13500,13888,14338,14746,15331,15752,16007,16273,16561,16622,16667,16807,17057,17398,17760,18162,18564,18959,19340,19740,20158,20558,20944,21320,21690,22031,22394,22778,23360,23832,24309,24802,25242,25646,26084,26480,26963,27469,27914,28291,28625,28987
-2019F,TX,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13714,-15527,-9139,-15115,-15768,-16119,-16175,-12367,-16910,-16410,-20177,-15380,-17402,-12434,-14301,-5031,-4609,-13947,-12864,-17999,-3442,-6117,-2306,-3529,123,3081,2929,-2498,-3710,1320,2627,2945,837,-4023,-909,449,4026,1629,7273
-2019F,TX,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,85,115,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,TX,WXICP,61,60,54,52,49,53,67,66,74,78,78,164,169,217,212,190,196,164,169,165,161,468,366,398,394,403,393,420,436,430,427,347,368,396,401,401,504,453,439,388,342,398,352,340,337,343,311,260,227,145,203,179,182,199,178,149,155,127,156,131
-2019F,TX,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,31,48,42,53,54
-2019F,TX,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,81,80,320,492,1188,2656,2570,3138,4237,6671,9006,16225,20026,26251,30548,32214,35874,39982,44803,57483,67008,75637,83557
-2019F,TX,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,10,9
-2019F,TX,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,81,80,320,492,1188,2656,2570,3138,4237,6671,9006,16225,20026,26251,30548,32214,35874,40005,44833,57531,67061,75700,83620
-2019F,TX,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,31,48,53,63,63
-2019F,US,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,978,141,17,766,108,9,-212,21,47,-16,31,29,1208,1048,1377,1794,793,1267,756,1203,1489,1480,2103,1649,127,353,19,-157,-48,2,-1,-75,-28,-69,-58,-38,-308,-236
-2019F,US,ARICP,110576,113555,121087,124268,126700,134157,140982,138218,148231,152046,163118,167013,171326,190434,175614,152837,150410,159187,174747,173754,144998,124742,124986,136241,149502,155136,163613,170285,171236,165164,176340,162227,166097,173149,176751,177543,177205,184383,190258,199580,192236,189401,186852,183776,196481,199403,190049,180386,152497,131568,132274,129519,124578,118045,119445,125326,128596,127966,119464,127167
-2019F,US,ARTCP,110576,113555,121087,124268,126700,134157,140982,138218,148231,152046,163118,167013,171326,190434,175614,152837,150410,159187,174747,173754,144998,124742,124986,136241,149502,155136,163613,170285,171236,165164,176340,162227,166097,173149,176751,177543,177205,184383,190258,199580,192236,189401,186852,183776,196481,199403,190049,180386,152497,131568,132274,129519,124578,118045,119445,125326,128596,127966,119464,127167
-2019F,US,ARTXP,110576,113555,121087,124268,126700,134157,140982,138218,148231,152046,163118,167013,171326,190434,175614,152837,150410,159187,174747,173754,144998,124742,124986,136241,149502,155136,163613,170285,171236,165164,176340,162227,166097,173149,176751,177543,177205,184383,190258,199580,192236,189401,186852,183776,196481,199403,190049,180386,152497,131568,132274,129519,124578,118045,119445,125326,128596,127966,119464,127167
-2019F,US,AVACP,59014,57527,52083,50157,46558,43897,38449,32904,30624,25551,19903,17892,16925,16531,16215,14067,13362,13932,14155,13929,12747,11147,9306,9444,8692,9969,11673,9041,9705,9427,8910,8265,8133,7606,7555,7841,7400,7864,7032,7760,7188,6921,6682,5987,6189,7006,6626,6258,5603,5261,5358,5360,4975,4429,4298,4188,4054,4150,4436,4633
-2019F,US,AVTCP,59014,57527,52083,50157,46558,43897,38449,32904,30624,25551,19903,17892,16925,16531,16215,14067,13362,13932,14155,13929,12747,11147,9306,9444,8692,9969,11673,9041,9705,9427,8910,8265,8133,7606,7555,7841,7400,7864,7032,7760,7188,6921,6682,5987,6189,7006,6626,6258,5603,5261,5358,5360,4975,4429,4298,4188,4054,4150,4436,4633
-2019F,US,AVTXP,59014,57527,52083,50157,46558,43897,38449,32904,30624,25551,19903,17892,16925,16531,16215,14067,13362,13932,14155,13929,12747,11147,9306,9444,8692,9969,11673,9041,9705,9427,8910,8265,8133,7606,7555,7841,7400,7864,7032,7760,7188,6921,6682,5987,6189,7006,6626,6258,5603,5261,5358,5360,4975,4429,4298,4188,4054,4150,4436,4633
-2019F,US,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,390,322,639,2163,6213,8422,7228,7663,6192,21099,21406,34020,33735,35575,49653,47269,45326,43163
-2019F,US,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,390,322,639,2163,6213,8422,7228,7663,6192,21099,21406,34020,33735,35575,49653,47269,45326,43163
-2019F,US,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37843,24612,28090,43087,42754,46836,30574,14014,12711,18434
-2019F,US,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37843,24612,28090,43087,42754,46836,30574,14014,12711,18434
-2019F,US,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1516,203,143,-1271,568,-1967,-879,1201,3095,6
-2019F,US,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1516,203,143,-1271,568,-1967,-879,1201,3095,6
-2019F,US,CCEXP,353,445,364,451,524,834,1102,710,792,1629,2478,1509,1232,1395,1278,1273,1315,1241,693,1440,2071,1170,993,665,1045,1122,1004,574,1093,1085,572,792,702,1062,986,1358,1622,1266,1129,898,1146,1346,792,722,1319,1747,1616,1444,1959,1307,1463,970,974,840,946,857,1000,1209,1151,967
-2019F,US,CCIMP,126,127,142,153,103,90,96,92,94,173,153,174,185,1094,3540,1819,1311,1829,5722,3974,659,527,120,35,582,578,329,922,2688,2311,765,1183,2098,2155,3338,3820,2542,3139,3834,3224,3781,2526,3242,2759,6873,3529,4068,2460,3603,347,1214,1418,1135,138,77,140,229,58,117,116
-2019F,US,CCNIP,-227,-318,-222,-298,-421,-744,-1006,-618,-698,-1456,-2325,-1335,-1047,-301,2262,546,-4,588,5029,2534,-1413,-643,-873,-630,-463,-544,-676,348,1595,1226,193,391,1396,1093,2352,2462,920,1873,2705,2326,2636,1180,2450,2037,5555,1782,2451,1016,1644,-960,-249,448,161,-703,-869,-717,-772,-1151,-1034,-852
-2019F,US,CLACP,3046,770,687,670,711,655,609,467,417,313,298,207,163,116,80,24,12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,US,CLCCP,16789,15293,14972,13211,11409,11041,11002,9518,8793,8305,7090,7753,6674,7004,7764,6587,6330,6447,7323,6710,5097,6085,6839,7096,7395,6068,5904,5324,5561,4872,5379,4997,5045,5101,5111,5052,5285,5752,4322,4293,3673,3888,3912,3685,4610,4342,2936,3173,3506,3210,3081,2793,2045,1951,1887,1503,1183,1061,972,876
-2019F,US,CLEIP,176685,182185,193316,211332,225425,244788,266477,274185,297779,310641,320182,327301,351768,389212,391811,405962,448371,477126,481235,527051,569274,596797,593666,625211,664399,693841,685056,717894,758372,772190,782567,783874,795094,831645,838354,850230,896921,921364,936619,940922,985821,964433,977507,1005063,1016208,1037419,1026571,1045056,1040483,933539,975052,932484,823551,857962,851602,738444,678554,664993,637217,538601
-2019F,US,CLICP,177402,170098,171741,180024,192369,200846,205076,194645,191648,186586,186637,158866,160624,162139,155094,147244,146491,139202,134479,145085,127003,128410,105004,103013,117767,116429,111446,112052,118140,116643,115207,109259,106408,106215,106919,106067,103395,101718,95628,92846,94147,91344,84403,85509,85865,83774,82429,79331,76463,60641,70381,67671,63589,64529,64243,58167,51333,50801,49917,47062
-2019F,US,CLKCP,81385,74201,74682,78084,89249,95286,96407,92800,91297,93444,96481,83230,87746,94101,90191,83598,84704,77739,71394,77368,66656,61014,40907,37033,44022,41056,35862,36877,41888,40508,38877,33854,32366,31323,31740,33011,31706,30203,28189,28108,28939,26075,23656,24248,23670,23434,22957,22715,22070,15326,21092,21434,20751,21474,21297,19708,16485,17538,18337,17967
-2019F,US,CLOCP,96017,95897,97059,101940,103120,105560,108669,101845,100351,93142,90156,75636,72878,68038,64903,63646,61787,61463,63085,67717,60347,67395,64097,65980,73745,75372,75583,75175,76252,76134,76330,75405,74042,74892,75179,73055,71689,71515,67439,64738,65208,65268,60747,61261,62195,60340,59472,56615,54393,45314,49289,46238,42838,43055,42946,38459,34849,33264,31580,29095
-2019F,US,CLRCP,24159,22006,21544,18243,15756,14635,14585,12616,11190,10569,9024,7448,5034,4113,3653,2823,2586,2507,2188,1678,1355,1336,1401,1352,1735,1711,1763,1590,1569,1295,1345,1097,1107,1120,902,755,721,711,534,585,454,481,533,551,512,378,290,353,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,US,CLTCP,398081,390352,402260,423480,445670,471965,497749,491431,509827,516414,523231,501575,524263,562584,558402,562640,603790,625291,625225,680524,702729,732627,706910,736672,791296,818049,804169,836860,883642,895000,904498,899227,907655,944081,951286,962104,1006321,1029544,1037103,1038646,1084095,1060146,1066355,1094808,1107195,1125912,1112227,1127912,1120452,997390,1048514,1002948,889185,924442,917732,798115,731071,716856,688105,586539
-2019F,US,CLTXP,221396,208167,208944,212148,220245,227177,231272,217246,212048,205773,203049,174274,172495,173372,166591,156678,155419,148165,143990,153473,133455,135831,113244,111461,126897,124208,119113,118966,125270,122810,121931,115353,112561,112436,112932,111873,109400,108181,100484,97725,98274,95713,88848,89745,90987,88493,85656,82857,79968,63851,73462,70464,65634,66480,66130,59671,52516,51863,50888,47938
-2019F,US,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24199,23275,22064,17806,12497,14697,10120,8773,6715,4718,3647,3221,2506,2367,797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,US,DFACP,153123,153072,165712,183239,194568,187692,199769,198788,238973,257252,269343,291943,333239,381463,378085,364122,392824,427248,459973,498739,479800,498085,478886,498780,506066,544219,552431,572454,622510,632876,628521,618132,632431,651643,692189,720169,767267,802106,826014,858546,886615,908447,925731,959608,1018401,1043015,1101157,1108475,1002098,958593,1008835,1039806,995024,1023488,1068654,1085567,1077338,1086131,1138168,1141216
-2019F,US,DFCCP,84736,86582,90290,89821,87415,91751,90799,94819,98486,98372,100857,102096,108444,110487,102255,100711,112601,116067,114273,100174,88880,78476,75477,111839,126209,108307,107019,104289,102985,98491,91988,88818,86981,84641,85999,82212,82905,76191,73621,75269,84285,87273,76238,85154,80741,76823,68882,65909,66420,68348,67703,67771,61510,59498,61757,62363,56498,55908,55970,56703
-2019F,US,DFEIP,3824,3708,3910,4233,4310,4928,6311,7393,9830,14961,24123,34283,44644,40709,47958,35731,37609,42478,43014,27519,27105,20603,14900,16512,15190,14635,14326,15367,18769,26156,16567,14359,12623,14849,20612,18553,18780,18989,23300,24058,30016,29274,21876,27632,19107,19675,12646,15327,12547,12035,13790,11021,9080,9598,14235,12193,9510,9481,13967,9336
-2019F,US,DFICP,174367,174680,182737,181035,183877,197447,209938,211854,210151,214066,210501,217410,237075,252132,231087,229865,262602,295182,300410,302879,227247,238381,225370,196099,206525,192134,199160,195913,193942,195547,197508,185052,190055,191733,190644,194163,203756,206533,207976,203803,206068,223152,206750,200973,208484,216920,216799,217148,233235,185662,199608,213990,220208,219328,236624,202639,200422,208819,217186,208964
-2019F,US,DFRCP,269218,276315,289756,288926,280253,293996,290563,305297,317099,315610,322387,325584,342708,343923,316532,310142,341058,342354,334885,279144,225943,196931,180231,158697,187227,187533,190806,198390,204304,199155,167919,159720,168182,167176,164773,155323,158971,150119,132516,142104,155330,155936,147611,160007,158590,146641,122247,124649,129724,100706,97179,90494,83535,85113,92325,95501,75306,74910,87936,81543
-2019F,US,DFTCP,685268,694356,732405,747254,750424,775814,797380,818150,874539,900262,927211,971316,1066110,1128714,1075916,1040571,1146695,1223328,1252556,1208456,1048975,1032476,974864,981927,1041218,1046827,1063741,1086413,1142510,1152224,1102503,1066081,1090273,1110043,1154217,1170419,1231679,1253938,1263427,1303779,1362315,1404082,1378206,1433373,1485324,1503074,1521731,1531508,1444024,1325344,1387115,1423082,1369358,1397025,1473595,1458262,1419074,1435249,1513227,1497761
-2019F,US,DFTXP,681444,690648,728495,743021,746114,770886,791069,810757,864709,885301,903088,937033,1021466,1088005,1027958,1004840,1109086,1180850,1209542,1180937,1021870,1011873,959964,965415,1026028,1032192,1049415,1071046,1123741,1126068,1085936,1051722,1077650,1095194,1133605,1151866,1212899,1234949,1240127,1279721,1332299,1374808,1356330,1405741,1466217,1483399,1509085,1516181,1431477,1313309,1373325,1412061,1360278,1387427,1459360,1446069,1409564,1425768,1499260,1488425
-2019F,US,ELEXP,788,917,1661,1985,4253,3699,3176,4350,4285,3830,4209,3514,2809,2570,2726,5083,2378,2744,1478,2182,4096,3060,3536,3337,2558,4965,4816,5882,7067,15135,16134,2305,2826,3541,2010,3623,3302,8974,13656,14222,14829,16473,15796,23975,22898,19151,24271,20144,24198,18138,19106,15049,11996,11373,13298,9118,6214,9371,13804,20008
-2019F,US,ELIMP,5323,3170,2197,2083,6209,3558,4268,4051,3654,4902,6170,7044,10495,16848,15420,11268,10988,20159,21208,22516,25021,36298,32852,38668,42219,45895,40713,52219,38837,26110,18445,21931,28247,31358,46833,42854,43497,43031,39513,43215,48592,38500,36779,30395,34210,43929,42691,51396,57019,52191,45083,52300,59257,69249,66510,75594,72716,65685,58261,59052
-2019F,US,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,US,ELNIP,4535,2254,536,98,1955,-141,1092,-299,-631,1072,1960,3530,7687,14278,12694,6185,8610,17416,19730,20334,20926,33237,29316,35330,39661,40931,35897,46337,31770,10976,2312,19626,25421,27817,44823,39231,40195,34057,25857,28993,33763,22027,20984,6420,11312,24778,18420,31252,32821,34053,25977,37251,47261,57876,53212,66477,66502,56314,44456,39044
-2019F,US,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1891,5190,9677,11808,14275,16486,18971,19268,19553,17373,20118,22858,26869,30115,32335,23206,29178,32357,33853,38809,40485,48166,65605,82529,94507,127559,160765,226574,258242,300462,301334,301181,308859,314948,319588,329188,332342,330643,333620
-2019F,US,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,45,80,106,104,141,163,186,163,146,139,138,84,63,51,59,194,178,75,116,121,156,314,260,169,320,389,605,810,940,826,736,761,1068,7401,7422,7227,7315,7456
-2019F,US,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,134,133,237,314,327,363,326,346,283,370,456,451,511,533,346,527,503,422,443,839,1038,1368,1787,1958,2626,2791,3377,3725,4753,4824,4794,5039,4080,5075,5207,5312,5384,5392
-2019F,US,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,5369,9890,12150,14693,16954,19497,19780,20062,17802,20627,23453,27405,30689,32919,23612,29899,33038,34350,39367,41445,49360,67286,84576,96634,130505,163945,230556,262776,306155,306984,306711,314658,320095,332064,341817,344882,343342,346468
-2019F,US,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,319026,346196,347622,363201,380099,392033,413402,452715,539931,560878
-2019F,US,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,319026,346196,347622,363201,380099,392033,413402,452715,539931,560878
-2019F,US,ESACP,3066,3023,2980,2918,2934,2923,2826,2934,2994,3054,3114,3066,3040,3087,2849,2975,2948,3056,2939,2965,3244,3186,3225,3715,4189,4147,4413,4562,4669,4770,4751,4758,4705,4771,4994,4974,4923,4908,4962,5126,5382,5485,5529,6882,7224,7506,7358,8173,7653,7768,7712,7672,7320,7625,7758,7637,7497,7523,7665,7632
-2019F,US,ESCCP,159144,167656,181965,201513,216234,231126,251827,271154,297174,324658,352041,377494,412534,444505,440016,468296,491777,514029,531439,543412,558644,595908,608747,620292,663680,689121,714721,744067,784029,810856,838263,855244,850007,884746,913106,953118,980061,1026626,1077957,1103822,1159347,1190758,1204519,1198728,1230425,1275079,1299744,1336315,1336133,1306853,1330199,1328057,1327101,1337079,1352158,1360752,1367191,1352888,1381755,1360877
-2019F,US,ESICP,324402,336826,359854,377430,405049,428727,463603,485015,521133,559385,570854,589448,640978,686085,684875,687680,754069,786037,809078,841903,815066,825743,744949,775999,837836,836772,830531,858233,896498,925659,945522,946583,972714,977164,1007981,1012693,1033631,1038197,1051203,1058217,1064239,996609,990238,1012373,1017850,1019156,1011298,1027832,1009516,917416,971221,991316,985714,985352,997576,986508,976715,984298,1000673,1002353
-2019F,US,ESRCP,201463,214445,232802,250753,271842,291013,316888,340114,381570,426736,466291,499532,538609,579231,578184,588140,606452,645239,674466,682819,717493,722265,729519,750948,780092,793934,819088,850410,892866,905525,924019,955417,935939,994781,1008482,1042501,1082512,1075880,1130109,1144923,1192446,1201607,1265180,1275824,1291982,1359227,1351520,1392241,1380662,1364758,1445708,1422801,1374515,1394812,1407208,1404096,1411058,1378648,1469093,1440289
-2019F,US,ESRPP,1115,1167,1248,1325,1417,1498,1612,1712,1901,2105,2274,2406,2566,2733,2704,2723,2781,2930,3030,3034,3158,3148,3149,3212,3308,3337,3411,3510,3652,3669,3702,3777,3649,3827,3833,3915,4018,3946,4097,4103,4226,4217,4399,4398,4412,4599,4530,4622,4540,4449,4674,4566,4379,4413,4420,4378,4368,4240,4495,4387
-2019F,US,ESTCP,688075,721950,777600,832613,896059,953789,1035145,1099217,1202871,1313833,1392300,1469540,1595161,1712909,1705924,1747091,1855246,1948361,2017922,2071099,2094447,2147102,2086440,2150955,2285796,2323974,2368753,2457272,2578063,2646809,2712555,2762003,2763365,2861462,2934563,3013287,3101127,3145610,3264231,3312087,3421414,3394458,3465466,3493807,3547479,3660969,3669919,3764561,3733965,3596795,3754841,3749846,3694650,3724868,3764700,3758992,3762462,3723356,3859185,3811150
-2019F,US,ESTPP,3808,3930,4169,4400,4670,4909,5266,5532,5993,6482,6790,7077,7600,8083,7977,8089,8509,8847,9066,9203,9218,9357,9006,9200,9693,9768,9864,10142,10544,10724,10867,10918,10773,11009,11153,11316,11511,11537,11833,11870,12126,11912,12049,12043,12115,12388,12299,12497,12279,11725,12139,12035,11771,11785,11824,11720,11646,11452,11808,11608
-2019F,US,ESTXP,688075,721950,777600,832613,896059,953789,1035145,1099217,1202871,1313833,1392300,1469540,1595161,1712909,1705924,1747091,1855246,1948361,2017922,2071099,2094447,2147102,2086440,2150955,2285796,2323974,2368753,2457272,2578063,2646809,2712555,2762003,2763365,2861462,2934563,3013287,3101127,3145610,3264231,3312087,3421414,3394458,3465466,3493807,3547479,3660969,3669919,3764561,3733965,3596795,3754841,3749846,3694650,3724868,3764700,3758992,3762462,3723356,3859185,3811150
-2019F,US,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2163,2162,1877,310,390,335,265,270,90,127
-2019F,US,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2163,2162,1877,310,390,335,265,270,90,127
-2019F,US,FNICP,0,0,0,22022,24583,23521,39854,50349,55618,57569,57279,56821,58075,56822,61879,53512,73297,74277,74893,86713,90472,83940,60238,54067,52612,44931,65050,66292,67756,74044,66273,56964,71861,66805,75903,71068,91332,102206,111279,95670,116908,94077,111005,116798,142803,133130,119827,107175,90925,89914,93478,92858,86494,98673,84338,81566,80035,83113,85192,75589
-2019F,US,FOICP,0,0,0,22624,25318,22428,23874,24054,27474,27094,31340,37546,50944,60679,56214,47538,62111,98173,122160,145298,147437,124921,89585,87849,80689,86740,104753,95330,100106,93640,129429,142025,139831,144906,143973,137513,125261,147853,140544,139252,123975,113726,108509,120065,133818,121542,135732,127741,111204,72923,77686,66700,49312,38441,42442,39320,38190,45138,41044,40187
-2019F,US,FSICP,0,0,0,7834,7698,8926,10068,9532,9844,9985,12564,16158,14678,12428,14375,15723,17448,17604,19978,13142,15320,7126,7434,9155,11566,12615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,US,GEEGP,33,94,100,168,204,189,188,316,436,615,525,548,1453,1966,2453,3246,3616,3582,2978,3889,5073,5686,4843,6075,7741,9325,10308,10775,10300,14593,15434,15966,16138,16789,15535,13378,14329,14726,14774,14827,14093,13741,14491,14424,14811,14692,14568,14637,14840,15009,15219,15316,15562,15775,15877,15918,15826,15927,15934,15031
-2019F,US,HLACP,4896,5408,5900,6496,7254,8243,9390,10096,11378,11911,11546,13336,13806,12885,11881,11236,12255,13030,14048,5663,4596,8849,8877,10542,11096,7696,7113,5631,6071,5926,5966,5509,5060,5277,8864,4622,4076,3708,4599,3721,3098,3577,3723,4659,4980,7351,7160,5721,10465,7308,1940,1897,1854,1854,1862,1885,1967,1858,1736,1790
-2019F,US,HLCCP,21126,21603,23533,25194,26626,26854,27788,29857,32603,37452,37217,37627,40071,38243,34990,33753,35403,35202,34209,24820,22964,22562,21123,25147,21722,24792,24264,26462,25873,28530,26660,28214,27869,28479,27962,28345,31907,31345,30649,36539,39205,37194,36704,40890,39617,34250,32109,31651,41182,36197,36452,37102,35284,39473,41779,38539,39056,40529,45812,47391
-2019F,US,HLICP,121811,125686,137355,149396,164489,171585,179269,186216,214408,251408,255063,260835,309536,330936,335142,314999,328519,335159,336024,488295,473289,468260,478634,435808,516999,513912,482827,517179,530436,519044,497725,547674,583017,569526,622562,630530,655004,661385,630402,702798,703805,625329,657334,617362,650632,608012,624040,636378,552510,590215,649546,654095,699162,750814,720542,774204,776999,808008,920543,949843
-2019F,US,HLRCP,79458,81212,88674,95119,96727,100431,107489,118283,127352,144855,142990,144954,156437,148566,137178,133390,138717,135479,131373,88618,81145,77841,75237,89575,72948,81930,80241,89217,88927,99817,91798,98578,96301,101557,100020,102922,122193,118560,110502,137118,144654,137039,140028,141939,133406,133694,116143,126082,144089,142614,137942,128251,102982,120665,127447,116040,111921,112133,131879,146682
-2019F,US,HLTCP,227291,233908,255462,276205,295095,307113,323936,344451,385741,445626,446816,456752,519850,530630,519191,493378,514893,518870,515654,607396,581994,577512,583871,561072,622766,628330,594445,638489,651308,653317,622149,679975,712248,704839,759408,766419,813180,814998,776153,880175,890762,803139,837789,804850,828635,783308,779452,799832,748246,776334,825880,821345,839282,912806,891630,930667,929942,962528,1099970,1145706
-2019F,US,HLTXP,227291,233908,255462,276205,295095,307113,323936,344451,385741,445626,446816,456752,519850,530630,519191,493378,514893,518870,515654,607396,581994,577512,583871,561072,622766,628330,594445,638489,651308,653317,622149,679975,712248,704839,759408,766419,813180,814998,776153,880175,890762,803139,837789,804850,828635,783308,779452,799832,748246,776334,825880,821345,839282,912806,891630,930667,929942,962528,1099970,1145706
-2019F,US,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,138,131,122,100,93,118,126,120,120,115,100,66,13,72,105,86,93,77,60,71,80,26,28,44,38,35,217,240,227,188
-2019F,US,HYEGP,145833,152172,168607,165755,177073,193851,194756,221518,222491,250193,247714,266311,272613,272083,301032,300047,283707,220475,280419,279783,276021,260684,309213,332130,321150,281149,290844,249695,222940,269189,289753,286019,250016,277524,254005,305410,341159,350648,317867,314663,271338,213749,260491,271512,265064,267040,286254,245843,253096,271506,258455,317531,273859,265058,258046,247636,266326,298711,291148,286652
-2019F,US,HYICP,3607,3365,3409,3235,3228,3134,3182,3430,3383,3276,3244,3221,3316,3347,3180,3106,3217,3124,3046,3293,3161,3161,3161,3161,3161,3161,3161,3161,3161,2722,2975,2844,2950,2871,6028,5304,5878,5685,5349,4758,4135,3145,3825,4222,3248,3195,2899,1590,1676,1868,1668,1799,2353,3463,1282,1410,1269,1382,1149,1033
-2019F,US,HYTCP,149440,155536,172016,168990,180302,196984,197938,224949,225873,253468,250957,269531,275929,275431,304212,303153,286924,223599,283465,283076,279182,263845,312374,335291,324311,284311,294005,252856,226101,271977,292866,288994,253088,280494,260126,310833,347162,356453,323336,319536,275573,216961,264329,275806,268417,270321,289246,247510,254831,273445,260203,319355,276240,268565,259367,249080,267812,300333,292524,287874
-2019F,US,HYTXP,3607,3365,3409,3235,3228,3134,3182,3430,3383,3276,3244,3221,3316,3347,3180,3106,3217,3124,3046,3293,3161,3161,3161,3161,3161,3161,3161,3161,3161,2788,3113,2975,3072,2970,6121,5422,6003,5805,5469,4873,4235,3212,3837,4295,3353,3281,2992,1667,1736,1939,1748,1824,2381,3507,1320,1444,1486,1622,1376,1222
-2019F,US,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9075,11709,14685,21962,22909,35556,46905,50989,58267,68343
-2019F,US,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9075,11709,14685,21962,22909,35556,46905,50989,58267,68343
-2019F,US,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,274,687,198,-170,-253,-281,178,280,-192,25
-2019F,US,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,274,687,198,-170,-253,-281,178,280,-192,25
-2019F,US,JFACP,135962,151623,178535,190473,204253,219632,244386,300770,349378,361731,352978,368723,373669,380278,357430,362114,357124,372898,381148,389527,388780,367007,369144,381783,430226,444702,477180,505520,530210,543646,555628,537076,532271,536309,557303,552763,577531,583463,592006,610501,631454,604222,588982,575909,596568,612831,596011,592171,563111,508514,522552,520250,511717,523555,536524,565109,590807,613994,623061,636335
-2019F,US,JFTCP,135962,151623,178535,190473,204253,219632,244386,300770,349378,361731,352978,368723,382490,386627,362600,365290,361358,379257,385654,392699,390726,367717,369581,381783,430226,444702,477180,505520,530210,543646,555628,537076,532271,536309,557303,552763,577531,583463,592006,610501,631454,604222,588982,575909,596568,612831,596011,592171,563111,508514,522552,520250,511717,523555,536524,565109,590807,613994,623061,636335
-2019F,US,JFTXP,135962,151623,178535,190473,204253,219632,244386,300770,349378,361731,352978,368723,373669,380278,357430,362114,357124,372898,381148,389527,388780,367007,369144,381783,430226,444702,477180,505520,530210,543646,555628,537076,532271,536309,557303,552763,577531,583463,592006,610501,631454,604222,588982,575909,596568,612831,596011,592171,563111,508514,522552,520250,511717,523555,536524,565109,590807,613994,623061,636335
-2019F,US,KSCCP,8464,8266,7932,8132,8357,9466,10599,8053,10537,10815,10773,9756,9757,11409,9623,8688,7723,9190,9652,13844,7161,12229,5348,19630,6326,5791,8805,8582,4607,4863,2087,2132,1962,2476,3432,3898,3709,4347,5494,4752,5229,5538,2813,3287,3615,3808,2676,1618,782,745,850,563,212,180,360,242,366,209,236,324
-2019F,US,KSICP,28416,23409,24750,24249,27596,29184,34620,39971,36143,34758,32566,29096,28286,27457,22308,20993,21658,25253,27433,31300,32002,19025,24845,11662,7590,7819,5661,4992,5278,5206,2165,2007,1727,2302,2983,2724,3228,3318,3893,2265,2758,4096,2435,4253,4977,6892,5216,2367,676,776,1291,638,354,261,499,305,400,197,286,250
-2019F,US,KSRCP,62460,65572,65351,64595,56785,58932,55898,52055,56255,54795,52635,52065,47808,40049,32421,28309,32539,29519,26957,23426,18807,15052,16771,15059,28269,27957,21396,20939,25315,20683,11272,12759,11465,13336,11450,13103,15658,16382,19104,19606,16679,16769,10569,12400,14949,14780,11702,7746,3750,4884,5133,3267,1365,1457,2425,1784,2407,1484,1454,1897
-2019F,US,KSTCP,99340,97248,98033,96976,92738,97581,101116,100078,102934,100369,95974,90917,85852,78915,64352,57990,61920,63962,64042,68570,57970,46306,46963,46352,42185,41567,35862,34513,35199,30753,15524,16898,15153,18114,17865,19725,22595,24046,28490,26622,24667,26403,15817,19940,23540,25480,19594,11731,5208,6405,7274,4468,1931,1897,3284,2331,3173,1890,1976,2472
-2019F,US,KSTXP,99340,97248,98033,96976,92738,97581,101116,100078,102934,100369,95974,90917,85852,78915,64352,57990,61920,63962,64042,68570,57970,46306,46963,46352,42185,41567,35862,34513,35199,30753,15524,16898,15153,18114,17865,19725,22595,24046,28490,26622,24667,26403,15817,19940,23540,25480,19594,11731,5208,6405,7274,4468,1931,1897,3284,2331,3173,1890,1976,2472
-2019F,US,LUACP,25039,24369,23991,23983,25186,24488,25438,22334,24533,23737,24180,24273,25991,26939,25801,25520,28349,28323,30416,31827,28341,27180,24786,25950,27673,25790,25217,28509,27493,28199,29019,25961,26468,26951,28169,27685,26868,28383,29713,30024,29574,27096,26776,24754,25078,24947,24306,25100,23302,20950,25519,24464,22326,23637,24625,26845,25450,23410,22587,21653
-2019F,US,LUICP,17637,17165,19624,19618,20602,22632,23511,21789,23934,25045,25513,25048,26822,32232,30869,24649,27383,29987,32203,33697,30007,28778,26243,27476,29299,27306,26699,30185,29108,29856,30724,27486,28023,28535,29825,29313,28448,30052,31460,31789,31312,28689,28349,26209,26552,26414,25734,26575,24672,22182,22404,21005,19508,20625,21545,23435,22283,20593,20113,19508
-2019F,US,LUTCP,42676,41534,43615,43601,45788,47120,48949,44123,48467,48782,49693,49321,52813,59171,56670,50169,55732,58310,62619,65524,58348,55958,51029,53426,56972,53096,51916,58694,56601,58055,59743,53447,54491,55486,57994,56998,55316,58435,61173,61813,60886,55785,55125,50963,51630,51361,50040,51675,47974,43132,47923,45469,41834,44262,46170,50280,47733,44003,42700,41161
-2019F,US,LUTXP,42676,41534,43615,43601,45788,47120,48949,44123,48467,48782,49693,49321,52813,59171,56670,50169,55732,58310,62619,65524,58348,55958,51029,53426,56972,53096,51916,58694,56601,58055,59743,53447,54491,55486,57994,56998,55316,58435,61173,61813,60886,55785,55125,50963,51630,51361,50040,51675,47974,43132,47923,45469,41834,44262,46170,50280,47733,44003,42700,41161
-2019F,US,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-48139,-38798,-27407,-12830,-38477,-54087,-24460,-11218,10855,10222,-4934,14408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,US,MGACP,1367319,1393106,1448494,1500763,1532374,1596494,1678811,1736195,1851541,1944872,2040070,2127010,2268858,2371034,2325625,2376790,2495199,2563013,2651180,2516933,2357261,2356584,2343844,2376228,2398629,2433578,2507937,2569852,2627407,2617423,2584316,2570448,2607786,2689045,2732882,2801009,2844538,2877313,2966753,3042681,3063390,3078849,3161472,3187498,3252618,3266107,3295709,3318892,3233378,3226865,3220873,3135832,3120214,3167917,3203956,3224769,3284100,3280481,3279272,3272103
-2019F,US,MGCCP,12737,13206,13779,13802,14049,14626,14955,15815,15818,15946,16443,15986,16615,16528,15796,16937,18452,19150,20293,19882,20382,17434,16671,19482,20397,18296,20243,21085,21003,19406,21168,16194,15150,5634,4822,3474,5088,8197,7477,5453,8548,7185,8662,11506,8573,8769,9331,11721,8765,10184,10227,8698,7626,7881,10639,74345,74122,71397,72497,73046
-2019F,US,MGICP,72600,69334,70335,67381,64925,65184,61166,57773,58018,56177,54836,52272,48305,48594,44755,42501,40183,37377,33835,30758,30104,30430,26309,21374,30435,41487,39255,39152,36736,37841,35258,36802,36977,34171,36795,38372,38328,40638,38267,29108,28835,56626,59325,62233,71388,68255,72133,58656,47914,46682,51219,50224,49848,51891,41512,50993,51829,52307,53310,52760
-2019F,US,MGTCP,1452656,1475646,1532608,1581946,1611348,1676304,1754932,1809782,1925376,2016995,2111349,2195267,2333778,2436156,2386177,2436229,2553834,2619540,2705309,2567573,2407747,2404447,2386824,2417084,2449461,2493361,2567436,2630089,2685145,2674669,2640741,2623444,2659913,2728850,2774499,2842855,2887953,2926148,3012497,3077242,3100774,3142660,3229459,3261237,3332579,3343131,3377174,3389269,3290057,3283730,3282319,3194754,3177687,3227689,3256107,3350106,3410051,3404186,3405079,3397909
-2019F,US,MGTXP,1452656,1475646,1532608,1581946,1611348,1676304,1754932,1809782,1925376,2016995,2111349,2195267,2333778,2436156,2386177,2436229,2553834,2619540,2705309,2567573,2407747,2404447,2386824,2417084,2449461,2493361,2567436,2630089,2685145,2674669,2640741,2623444,2659913,2728850,2774499,2842855,2887953,2926148,3012497,3077242,3100774,3142660,3229459,3261237,3332579,3343131,3377174,3389269,3290057,3283730,3282319,3194754,3177687,3227689,3256107,3350106,3410051,3404186,3405079,3397909
-2019F,US,MSICP,25208,28144,30890,16350,16353,15955,17122,15995,17842,16617,14843,14915,15284,18934,24263,32674,47464,53688,46702,43222,40980,36213,31744,28454,24431,24604,23595,23694,28734,26435,23781,26333,17264,16342,18263,16757,15361,16865,20529,19308,20567,21551,23151,21732,19569,19460,23470,23029,24505,26195,27381,28423,27878,29531,31529,32596,33013,34301,34156,31083
-2019F,US,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26251,44030,42363,36328,10364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,US,NGACP,347075,377607,382496,423783,435570,500524,535353,575752,590965,630962,722166,742592,766156,728177,668792,582963,548323,532669,530451,600964,634622,642326,596410,490041,528753,503764,485041,519172,613914,629308,660084,601672,589825,627163,688569,704920,717513,759798,644818,656941,654962,639501,681869,609763,586701,606909,607952,646020,673934,697435,702787,717761,760758,863107,735431,717573,728758,770255,926946,995417
-2019F,US,NGCCP,1020222,1076849,1206668,1267783,1374717,1443648,1622740,1958970,2075736,2253206,2398510,2508977,2607982,2597037,2555617,2508293,2667740,2500793,2601106,2785961,2610893,2519789,2605520,2432546,2524246,2432382,2318333,2430065,2670468,2717722,2622721,2728581,2802751,2861569,2895013,3031077,3158244,3214912,2999491,3044658,3182469,3022712,3144170,3179493,3128972,2998920,2832030,3012904,3152530,3118593,3102595,3155321,2894923,3295298,3466307,3201734,3109587,3164617,3513954,3512609
-2019F,US,NGEIP,1724762,1825117,1965974,2144473,2322896,2321101,2609949,2746352,3147909,3487642,3931860,3976018,3976914,3660172,3443428,3157669,3080868,3191200,3188363,3490523,3681595,3640154,3225518,2910767,3111342,3044083,2602370,2844051,2635613,3105183,3244619,3315925,3447871,3472982,3902546,4236526,3806901,4064803,4588284,4819531,5206324,5342301,5671897,5135215,5463763,5869145,6222100,6841408,6668379,6872533,7387184,7573863,9110793,8190756,8145982,9613370,9985270,9265565,10590225,11287053
-2019F,US,NGICP,5771311,5961117,6232812,6545169,6893333,7111641,7546102,7793982,8367096,8956149,9249415,9594174,9624417,10184589,9769167,8364545,8598204,8474432,8404552,8397947,8198101,8055138,6940565,6620957,7230722,6867337,6501580,7102691,7479263,7886148,8254803,8360230,8697719,8871678,8913268,9384060,9685008,9714058,9493087,9158349,9293187,8462771,8640266,8272679,8354312,7712685,7668522,7881102,7889884,7442607,8111821,8316710,8622488,8908540,9158184,9098293,9274016,9525948,10111536,10268012
-2019F,US,NGRCP,3103167,3248578,3478563,3589021,3787292,3902802,4138259,4313304,4450354,4728281,4837432,4971690,5125982,4879387,4786128,4924124,5051360,4821485,4903006,4965365,4752082,4546449,4633033,4380603,4555470,4433375,4313971,4314830,4630332,4780638,4391324,4555659,4690065,4956445,4847702,4850318,5241414,4983772,4520276,4725672,4996179,4771340,4888818,5079351,4868797,4826775,4368466,4722358,4892274,4778904,4782410,4713775,4149521,4897370,5087467,4612890,4346592,4413322,4997557,5015601
-2019F,US,NGTCP,11966537,12489268,13266513,13970229,14813808,15279716,16452403,17388360,18632060,20056240,21139383,21793451,22101451,22049362,21223132,19537594,19946495,19520579,19627478,20240760,19877293,19403856,18001046,16834914,17950533,17280941,16221295,17210809,18029590,19118999,19173551,19562066,20228231,20789838,21247098,22206901,22609080,22737342,22245956,22405151,23333121,22238624,23027021,22276502,22402545,22014435,21699071,23103793,23277001,22910072,24086798,24477430,25538484,26155070,26593371,27243861,27444223,27139708,30140218,31078693
-2019F,US,NGTPP,66.2,68,71.1,73.8,77.2,78.6,83.7,87.5,92.8,99,103.1,104.9,105.3,104.1,99.2,90.5,91.5,88.6,88.2,89.9,87.5,84.6,77.7,72,76.1,72.6,67.6,71,73.7,77.5,76.8,77.3,78.9,80,80.7,83.4,83.9,83.4,80.6,80.3,82.7,78,80.1,76.8,76.5,74.5,72.7,76.7,76.5,74.7,77.9,78.6,81.4,82.8,83.5,84.9,84.9,83.5,92.2,94.7
-2019F,US,NGTXP,10241775,10664151,11300539,11825756,12490912,12958615,13842454,14642008,15484151,16568598,17207523,17817433,18124537,18389190,17779704,16379925,16865627,16329379,16439115,16750237,16195698,15763702,14775528,13924147,14839191,14236858,13618925,14366758,15393977,16013815,15928932,16246141,16780360,17316855,17344552,17970375,18802178,18672539,17657673,17585620,18126797,16896323,17355124,17141286,16938782,16145290,15476971,16262384,16608622,16037539,16699613,16903567,16427690,17964315,18447389,17630490,17458953,17874142,19549993,19791639
-2019F,US,NUEGP,518,1692,2270,3212,3343,3657,5520,7655,12528,13928,21804,38105,54091,83479,113976,172505,191104,250883,276403,255155,251116,272674,282773,293677,327634,383691,414038,455270,526973,529355,576862,612565,618776,610291,640440,673402,674729,628644,673702,728254,753893,768826,780064,763733,788528,781986,787219,806425,806208,798855,806968,790204,769331,789016,797166,797178,805694,804950,807084,809409
-2019F,US,NUETP,518,1692,2270,3212,3343,3657,5520,7655,12528,13928,21804,38105,54091,83479,113976,172505,191104,250883,276403,255155,251116,272674,282773,293677,327634,383691,414038,455270,526973,529355,576862,612565,618776,610291,640440,673402,674729,628644,673702,728254,753893,768826,780064,763733,788528,781986,787219,806425,806208,798855,806968,790204,769331,789016,797166,797178,805694,804950,807084,809409
-2019F,US,OPICP,159126,160071,165684,202237,236356,239783,260556,269035,291941,305814,315928,317417,347249,364792,371232,358364,418307,472421,507725,537757,534333,386859,318508,369970,362814,331776,360901,379151,425436,424211,447139,410664,455012,429267,457307,430870,478835,514708,486881,480056,459234,483560,489700,528416,558292,543350,568194,542788,482113,429028,456658,452479,426367,447691,420161,420677,428046,448339,441591,433971
-2019F,US,OPTCP,159126,160071,165684,202237,236356,239783,260556,269035,291941,305814,315928,317417,347249,364792,371232,358364,418307,472421,507725,537757,534333,386859,318508,369970,362814,331776,360901,379151,425436,424211,447139,410664,455012,429267,457307,430870,478835,514708,486881,480056,459234,483560,489700,528416,558292,543350,568194,542788,482113,429028,456658,452479,426367,447691,420161,420677,428046,448339,441591,433971
-2019F,US,OPTXP,159126,160071,165684,202237,236356,239783,260556,269035,291941,305814,315928,317417,347249,364792,371232,358364,418307,472421,507725,537757,534333,386859,318508,369970,362814,331776,360901,379151,425436,424211,447139,410664,455012,429267,457307,430870,478835,514708,486881,480056,459234,483560,489700,528416,558292,543350,568194,542788,482113,429028,456658,452479,426367,447691,420161,420677,428046,448339,441591,433971
-2019F,US,P1ICP,370227,381334,401849,439695,481649,499383,533348,544142,576568,598494,611158,615445,658822,707537,683954,646540,706508,784095,833440,865031,827025,650577,584330,627502,638488,617418,653256,691919,743080,733998,774930,717366,783281,753655,786912,760186,813352,853212,855002,869029,817690,848104,847125,879555,941276,923649,944249,902491,804008,716143,725821,711264,687719,694243,667479,677566,684945,695433,682965,678226
-2019F,US,P1TCP,525204,537069,551206,586562,618535,636165,663732,659488,698516,713392,721831,722457,762441,804999,771139,723475,788822,865546,916611,949396,894977,716880,641287,698894,710706,688082,721911,760728,812244,799757,831259,771351,838791,817105,849114,826107,880216,927069,936876,949864,892763,921596,923085,955033,1028014,1014652,1025111,971698,863093,771080,786626,769136,731533,745430,719939,730250,737962,741771,729484,720045
-2019F,US,P1TXP,525204,537069,551206,586562,618535,636165,663732,659488,698516,713392,718649,719431,759305,802465,768014,723124,788482,865058,914620,948057,894081,716186,640540,697587,709448,686925,720348,758990,810199,797170,826218,766482,831320,804049,837541,812735,867007,910210,916366,931190,876388,904460,894005,926038,991153,974237,989608,943274,837496,748027,762742,744950,716661,724007,699279,710716,717274,724774,711739,706771
-2019F,US,PAACP,1879579,1916901,2000368,2074176,2133787,2202963,2320191,2432168,2634570,2746405,2839051,2954638,3135133,3304816,3225855,3266952,3430145,3562945,3708349,3651966,3493965,3462737,3397057,3433316,3510723,3590900,3719896,3834239,3969585,3991963,3973963,3928571,3982337,4060215,4167344,4258914,4363088,4416041,4533278,4659078,4762490,4722246,4821018,4849225,5021459,5094460,5175025,5214664,4985233,4853229,4926954,4851089,4762762,4837318,4910945,4982069,5082828,5115732,5165336,5161889
-2019F,US,PACCP,215900,219531,226017,224110,222701,245280,253376,262540,269098,273553,278864,272426,277464,282506,257018,238295,264421,273131,262992,239047,229211,197074,182016,209246,216886,193402,206416,202172,196429,187572,178461,169068,162050,148729,149587,140453,145448,137796,130815,133692,151864,148333,137150,158566,152074,142120,125018,122951,128495,126855,125105,122715,109689,110975,115890,176212,170800,168741,175071,177872
-2019F,US,PAEIP,88195,88912,89294,93314,101141,115203,140949,161278,188642,251027,338686,399496,496895,562781,539399,506479,556261,624193,637830,524636,421110,351806,250517,246804,205736,174571,232046,201116,250141,272921,206523,191852,158820,180386,170407,121948,131940,149516,210338,195224,184904,205914,155730,194906,195784,199499,105495,106837,76386,63871,62178,50010,36156,43304,50027,46656,41441,36943,44158,31962
-2019F,US,PAICP,991010,992838,1036570,1081125,1142842,1185235,1242330,1252905,1308774,1373685,1389859,1403395,1533870,1634662,1569837,1473948,1627610,1759847,1776630,1950240,1772263,1559621,1481108,1406667,1533787,1483849,1491629,1536670,1590992,1551569,1570865,1540004,1654872,1620009,1703547,1676811,1763762,1807997,1768206,1837738,1794673,1785541,1800772,1795187,1911340,1861593,1895278,1845410,1668580,1559401,1645312,1651034,1668053,1723946,1672612,1710786,1722531,1772510,1880898,1896299
-2019F,US,PARCP,411136,423099,443780,448640,433765,453358,453950,475634,500706,515260,518013,522603,546954,532538,486130,471841,512314,507352,493214,391188,325895,289824,272239,263331,288445,297420,292444,308546,318546,319655,270989,271056,275948,282069,276243,271348,296823,285061,262122,298827,316663,309744,298209,314346,306945,295116,250091,258477,277563,248204,240254,222012,187882,207235,222197,213325,189634,188526,221268,230122
-2019F,US,PATCP,3585820,3641280,3796029,3921364,4034236,4202039,4410796,4584526,4901789,5159930,5364473,5552560,5990316,6317303,6078239,5957515,6390750,6727468,6879017,6757077,6242445,5861062,5582937,5559364,5755576,5740142,5942430,6082743,6325692,6323680,6200801,6100551,6234027,6291408,6467128,6469474,6701060,6796411,6904758,7124559,7210595,7171778,7212878,7312230,7587603,7592787,7550908,7548339,7136256,6851560,6999803,6896860,6764542,6922778,6971670,7129048,7207234,7282452,7486731,7498143
-2019F,US,PATPP,19.8,19.8,20.3,20.7,21,21.6,22.4,23.1,24.4,25.5,26.2,26.7,28.5,29.8,28.4,27.6,29.3,30.5,30.9,30,27.5,25.5,24.1,23.8,24.4,24.1,24.7,25.1,25.9,25.6,24.8,24.1,24.3,24.2,24.6,24.3,24.9,24.9,25,25.5,25.6,25.2,25.1,25.2,25.9,25.7,25.3,25.1,23.5,22.3,22.6,22.1,21.6,21.9,21.9,22.2,22.3,22.4,22.9,22.8
-2019F,US,PATXP,3497625,3552368,3706735,3828050,3933095,4086836,4269847,4423248,4713147,4908903,5025787,5153064,5493421,5754522,5538840,5451036,5834489,6103275,6241187,6232441,5821335,5509256,5332420,5312560,5549840,5565571,5710384,5881627,6075551,6050759,5994278,5908699,6075207,6111022,6296721,6347526,6569120,6646895,6694420,6929335,7025691,6965864,7057148,7117324,7391819,7393288,7445413,7441502,7059870,6787689,6937625,6846850,6728386,6879474,6921643,7082392,7165793,7245509,7442573,7466181
-2019F,US,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,26,22,21,19,22,21,20,28,32,40,54,46,46,49,61,50,43,60,32,63,61,92,91,52,87,62,37
-2019F,US,PCEIP,0,0,0,0,0,0,0,0,0,0,3182,3026,3136,2534,3125,351,340,488,1991,1339,896,694,747,1307,1258,1157,1563,1738,2045,2587,5041,4869,7471,13056,11573,13372,13209,16859,20510,18674,16375,17136,29080,28995,36861,40415,35503,28424,25597,23053,23884,24186,14872,21423,20660,19534,20688,16997,17745,13274
-2019F,US,PCICP,54472,67134,70704,69323,70395,73627,73680,75130,76319,80830,74033,76871,85140,92622,83931,89697,88751,97246,91332,88523,85685,91174,89748,82154,89283,95381,96383,107306,112022,109560,118562,114981,132422,120401,120046,119737,125637,120752,142511,155339,132149,142359,139789,136901,154975,147591,155056,150375,144051,132589,113194,107623,116912,107622,105829,107823,105620,98339,101510,97330
-2019F,US,PCTCP,54472,67134,70704,69323,70395,73627,73680,75130,76319,80830,77215,79897,88276,95156,87056,90048,89091,97734,93323,89862,86581,91868,90495,83461,90541,96538,97946,109044,114067,112147,123603,119850,139905,133483,131642,133130,138865,137633,163042,174033,148552,159526,168909,165951,191882,188052,190608,178860,169698,155686,137139,131841,131848,129106,126581,127448,126360,115423,119317,110641
-2019F,US,PCTXP,54472,67134,70704,69323,70395,73627,73680,75130,76319,80830,74033,76871,85140,92622,83931,89697,88751,97246,91332,88523,85685,91174,89748,82154,89283,95381,96383,107306,112022,109560,118562,114981,132434,120427,120069,119758,125656,120774,142532,155359,132177,142390,139829,136956,155021,147637,155105,150436,144101,132633,113255,107655,116976,107683,105921,107914,105672,98426,101572,97367
-2019F,US,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,1869,6106,6933,923,0,0,0,0,-11,25,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,US,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47260,44729,42390,50206,45239,44394,54181,63640,69815,71923,73318,73144,76838,71194,63639,78999,74277,56965,48451,47800,48148,42476,30326,38823,33127,27605,33658,11835,18273,20394,19132,34733,24277,37390,48418,72134
-2019F,US,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47260,44729,42390,50206,45239,44394,54181,63640,69815,71923,73318,73144,76838,71194,63639,78999,74277,56965,48451,47800,48148,42476,30326,38823,33127,27605,33658,11835,18273,20394,19132,34733,24277,37390,48418,72134
-2019F,US,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1940,1897,1854,1854,1862,1885,1967,1858,1736,1790
-2019F,US,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36452,37102,35284,39473,41779,38539,39056,40529,45812,47391
-2019F,US,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,134508,143528,175510,191544,146333,159175,151951,138503,144631,120953
-2019F,US,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,137942,128251,102982,120665,127447,116040,111921,112133,131879,146682
-2019F,US,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,310842,310778,315630,353536,317421,315638,304894,293023,324058,316816
-2019F,US,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,310842,310778,315630,353536,317421,315638,304894,293023,324058,316816
-2019F,US,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,111483,113163,112764,111757,108610,107784,110326,112646,113592,108943
-2019F,US,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,111483,113163,112764,111757,108610,107784,110326,112646,113592,108943
-2019F,US,RFACP,134226,131797,125653,119065,123595,122518,123947,131081,128144,121350,121031,111463,102645,115686,110818,113102,131032,144502,157430,195348,222439,193885,162213,130589,128340,124946,138345,143232,146189,154466,161604,163181,170188,143384,140383,144825,135407,113204,107160,105845,141171,93135,107652,90811,117625,133202,144056,158047,147276,125738,141877,123480,106652,92437,71025,73708,99113,105708,96076,84158
-2019F,US,RFCCP,88837,89874,90483,87160,86254,102583,109235,113997,111654,110968,113574,106961,102576,105839,94354,78206,90242,93523,84564,80326,89825,66373,63398,33147,42231,36217,46085,41754,41961,36282,36558,33709,30075,27472,27349,22504,21821,17694,13553,11659,14567,11111,12693,17674,19483,18424,11971,11991,11296,11338,9812,8549,4994,3881,1263,632,706,609,494,372
-2019F,US,RFEIP,84371,85204,85384,89081,96831,110274,134638,153886,178812,236066,311381,362187,440294,513190,483146,467221,514077,574869,588319,492606,391163,329798,234434,228984,189289,158779,216156,184011,229327,244179,184915,172625,138726,152481,138222,90023,99951,113669,166528,152493,138513,159504,104773,138279,139816,139409,57345,63086,38241,28782,24503,14803,12203,12283,15132,14929,11242,10464,12446,9352
-2019F,US,RFICP,252004,241803,244293,243618,247902,251636,258610,252921,249630,253540,258302,257434,280131,295463,274899,240043,289797,308034,272920,263277,214599,171974,166465,125883,141339,118899,117131,92507,86798,65140,65444,53109,61542,70926,66633,53560,53322,46229,36558,33000,38275,32329,30238,35063,39559,44757,38057,30736,30913,20700,19119,21461,11116,7671,6454,5385,8337,7943,6893,6505
-2019F,US,RFTCP,559439,548678,545813,538924,554581,587011,626430,651885,668239,721924,804288,838045,925647,1030177,963216,898572,1025148,1120927,1103233,1031557,918026,762030,626510,518604,501199,438840,517717,461504,504275,500067,448521,422624,400531,394262,372587,310911,310501,290795,323799,302998,332527,296079,255357,281828,316483,335791,251429,263861,227725,186558,195311,168293,134965,116273,93875,94654,119398,124724,115910,100387
-2019F,US,RFTXP,475068,463474,460429,449843,457750,476737,491792,497999,489427,485858,492907,475858,485353,516987,480070,431351,511071,546058,514914,538951,526863,432232,392076,289620,311910,280061,301561,277493,274948,255888,263606,249999,261805,241781,234365,220888,210550,177126,157271,150505,194014,136575,150584,143549,176667,196382,194084,200775,189484,157776,170808,153490,122762,103990,78743,79725,108156,114260,103464,91035
-2019F,US,SGICP,129480,127537,130829,129598,131257,135295,135459,140034,149796,160363,163905,156967,170993,176758,175724,175351,180666,191257,200028,205069,197422,199273,194713,191552,193147,200566,233966,234529,245351,248658,245535,237759,241160,238365,239901,236242,239515,241184,239539,239520,241365,244432,243517,256051,257689,249514,258893,254476,245050,242503,245302,247829,246803,256216,252824,249171,255241,251761,256427,243912
-2019F,US,SNICP,0,0,0,0,27551,29827,30261,25203,27007,29598,31390,29762,31866,32230,31976,27490,30109,31394,37752,38229,36758,27018,25157,29559,39513,30382,24748,27590,21732,20448,20406,16766,19925,19928,15444,13495,14204,13770,20441,27705,18555,14956,19511,15336,9725,11912,13348,14870,16175,8798,4974,4309,2804,19058,20221,18915,17831,19119,17540,18220
-2019F,US,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,18,20,22,24,27,30,35,39,44,52,59,71,84,98,121,182,266,375,603,810,1242,2104,3499,4317,5516,6106,6687,8206,10324,11588
-2019F,US,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,11,14,10,9,251,367,472,400,462,487,497,521,511,502,495,493,543,555,534,575,550,508,612,864,891,1206,1727,4164,8724,17304,24456,35497,52724,63253,71265
-2019F,US,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,5,5,6,7,8,9,10,11,13,16,19,22,27,40,59,83,133,179,276,454,756,908,1156,1472,2087,2406,2683,3127
-2019F,US,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,12,13,14,16,18,20,23,26,30,34,39,47,56,65,81,121,177,250,401,539,900,1358,2058,3217,4947,6999,10595,13942,17105,20914
-2019F,US,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,11,14,10,9,280,400,509,441,507,537,554,587,585,586,592,604,676,713,719,804,894,1009,1319,2002,2420,3623,5643,10478,17167,28924,39032,54866,77277,93365,106894
-2019F,US,TPOPP,180671,183691,186538,189242,191889,194303,196560,198712,200706,202677,205052,207661,209896,211909,213854,215973,218035,220239,222585,225055,227225,229466,231664,233792,235825,237924,240133,242289,244499,246819,249623,252981,256514,259919,263126,266278,269394,272647,275854,279040,282162,284969,287625,290108,292805,295517,298380,301231,304094,306772,309327,311583,313878,316060,318386,320739,323072,325122,326838,328330
-2019F,US,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-51098,-57689,-33194,-55147,-58085,-60563,-62241,-47641,-66053,-63341,-77292,-60915,-67984,-47936,-55090,-19371,-17661,-53896,-49427,-68867,-12948,-23292,-8652,-12970,478,12075,11191,-9222,-13355,4800,9635,10315,2869,-13835,-3054,1473,13110,5298,23333
-2019F,US,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,139,189,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,US,WXICP,4438,4390,3965,3809,3596,3831,3918,3868,4360,4588,4607,5248,5409,6941,6801,6076,7212,6028,6212,6084,5944,6581,5146,5595,5541,5670,5525,5911,6131,6043,6014,6344,6729,7229,7330,7331,8789,7900,7652,6761,5975,6563,5810,5606,5555,5665,4722,3953,3457,2207,3085,2723,2762,2978,2670,2232,2321,1835,2242,1883
-2019F,US,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,51,54,61,107,118,131,144,174,179
-2019F,US,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,6,4,4,1,2112,2789,2951,2888,3006,3447,3164,3234,3288,3026,4488,5593,6737,10354,11187,14144,17811,26589,34450,55363,73886,94636,120121,140749,167742,181496,190547,226790,254074,272396,295604
-2019F,US,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,19,37,53,53,71,84,97,100
-2019F,US,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,6,4,4,1,2112,2789,2951,2888,3006,3447,3164,3234,3288,3026,4488,5593,6737,10354,11187,14144,17811,26589,34450,55363,73886,94652,120177,140822,167840,181655,190719,226993,254303,272667,295882
-2019F,US,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,56,73,98,159,172,202,229,271,278
-2019F,UT,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,1,0,8,1,0,-2,0,0,0,0,0,12,10,14,18,8,12,7,12,15,14,21,17,1,3,0,-1,0,0,0,-1,0,-1,-1,0,-3,-3
-2019F,UT,ARICP,813,687,903,801,791,838,1209,1072,1021,1209,1576,1399,1804,1419,1571,1219,1661,1823,1699,1903,1477,927,933,820,1340,1576,1295,1429,1069,1671,1378,2870,1633,1730,1819,2179,2361,1992,2452,2380,2295,1441,618,2535,1676,1480,1110,795,1073,1112,1182,1298,1393,1090,1028,1116,1168,1313,1133,1151
-2019F,UT,ARTCP,813,687,903,801,791,838,1209,1072,1021,1209,1576,1399,1804,1419,1571,1219,1661,1823,1699,1903,1477,927,933,820,1340,1576,1295,1429,1069,1671,1378,2870,1633,1730,1819,2179,2361,1992,2452,2380,2295,1441,618,2535,1676,1480,1110,795,1073,1112,1182,1298,1393,1090,1028,1116,1168,1313,1133,1151
-2019F,UT,ARTXP,813,687,903,801,791,838,1209,1072,1021,1209,1576,1399,1804,1419,1571,1219,1661,1823,1699,1903,1477,927,933,820,1340,1576,1295,1429,1069,1671,1378,2870,1633,1730,1819,2179,2361,1992,2452,2380,2295,1441,618,2535,1676,1480,1110,795,1073,1112,1182,1298,1393,1090,1028,1116,1168,1313,1133,1151
-2019F,UT,AVACP,595,715,532,529,391,383,370,312,251,223,178,168,179,172,187,161,161,174,164,147,139,140,76,103,78,94,110,99,112,106,106,118,133,114,88,64,52,61,51,73,84,76,69,60,78,107,110,78,110,138,65,61,57,49,63,60,56,55,59,60
-2019F,UT,AVTCP,595,715,532,529,391,383,370,312,251,223,178,168,179,172,187,161,161,174,164,147,139,140,76,103,78,94,110,99,112,106,106,118,133,114,88,64,52,61,51,73,84,76,69,60,78,107,110,78,110,138,65,61,57,49,63,60,56,55,59,60
-2019F,UT,AVTXP,595,715,532,529,391,383,370,312,251,223,178,168,179,172,187,161,161,174,164,147,139,140,76,103,78,94,110,99,112,106,106,118,133,114,88,64,52,61,51,73,84,76,69,60,78,107,110,78,110,138,65,61,57,49,63,60,56,55,59,60
-2019F,UT,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,10,14,12,13,10,36,65,45,87,39,150,101,116,194
-2019F,UT,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,10,14,12,13,10,36,65,45,87,39,150,101,116,194
-2019F,UT,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,CLACP,45,10,7,6,8,8,7,5,5,4,4,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,CLCCP,102,100,113,96,86,78,80,78,52,71,48,122,92,125,241,92,148,203,216,434,187,161,147,160,210,197,147,95,153,182,214,250,183,99,89,67,83,109,101,100,52,53,174,53,192,41,32,20,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,CLEIP,515,563,462,447,411,363,440,410,417,375,435,417,571,984,1296,2026,1267,2511,3148,4151,4895,4956,4947,5223,5712,6325,6756,11175,12544,12949,13563,12829,13857,14210,14656,13693,13963,14654,15094,15011,15164,14906,15644,16302,16606,17118,16609,16593,16927,15925,15233,15005,14084,15529,15062,14580,12001,12438,12332,11891
-2019F,UT,CLICP,2640,2293,1752,1693,2068,2306,2370,2158,2262,2447,2477,2386,2290,2701,2611,2478,2642,2635,2525,2410,1974,2281,1663,1458,1934,1726,1165,507,1773,1865,1907,1700,1639,1732,1842,1905,1559,1729,2275,1486,2151,1783,592,611,1330,1431,680,911,873,718,717,598,588,645,614,662,575,485,378,382
-2019F,UT,CLKCP,2195,1910,1414,1351,1676,1892,1961,1829,1903,1951,1959,1841,1705,1890,1984,1932,1959,1991,1700,1569,1473,1477,845,831,1326,1254,785,0,1176,1178,1231,1192,1114,1005,1006,990,1047,1020,971,741,984,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,CLOCP,445,383,338,342,392,414,409,330,359,496,518,545,586,811,627,546,683,644,826,842,501,804,818,627,608,472,380,507,597,686,676,508,525,727,835,915,512,709,1304,744,1166,1235,592,611,1330,1431,680,911,873,718,717,598,588,645,614,662,575,485,378,382
-2019F,UT,CLRCP,147,144,162,132,118,103,106,103,67,90,61,118,69,74,113,39,60,79,65,108,50,35,30,31,49,55,44,29,43,49,53,55,40,22,16,10,11,14,12,14,6,7,24,8,21,4,3,2,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,CLTCP,3449,3110,2497,2374,2690,2857,3003,2753,2803,2988,3025,3047,3024,3886,4263,4636,4117,5429,5954,7104,7106,7432,6787,6873,7905,8303,8112,11807,14513,15044,15738,14834,15719,16063,16603,15675,15615,16507,17482,16611,17373,16748,16434,16975,18150,18594,17324,17526,17799,16643,15950,15603,14671,16173,15676,15242,12576,12923,12710,12272
-2019F,UT,CLTXP,2935,2547,2034,1927,2279,2494,2563,2344,2386,2613,2590,2630,2453,2902,2967,2610,2850,2917,2806,2952,2211,2477,1840,1649,2193,1978,1356,631,1969,2096,2174,2005,1862,1853,1947,1982,1653,1852,2388,1600,2209,1842,790,672,1544,1476,715,934,873,718,717,598,588,645,614,662,575,485,378,382
-2019F,UT,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,66,65,29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,DFACP,2312,1575,2097,2079,2109,2569,3237,2860,2747,2800,2870,3295,3064,3739,4245,4141,3939,3930,4256,5426,4974,4492,3780,3533,3701,4121,4137,4204,4460,3772,5056,4924,5130,5302,5586,6566,6878,7621,7549,7283,8353,8537,8926,8935,9535,10021,13018,12745,10967,10326,10570,12713,11702,11802,11324,11495,11422,11882,12300,11908
-2019F,UT,DFCCP,362,337,284,318,342,356,354,484,490,546,521,810,847,1103,1176,1300,1225,1228,1234,851,1028,206,382,786,665,484,843,657,634,433,364,378,388,321,408,382,374,406,524,593,366,696,558,543,490,343,437,452,423,524,461,527,653,610,586,369,536,480,423,464
-2019F,UT,DFEIP,12,11,8,8,8,8,7,7,7,8,9,9,9,23,20,10,5,6,5,14,67,59,59,79,58,55,129,187,103,86,84,82,62,62,57,66,59,58,66,55,101,110,96,61,60,74,126,73,78,63,81,88,69,46,42,34,55,66,64,70
-2019F,UT,DFICP,990,1024,1101,1089,1196,1163,1082,1119,1358,1490,1564,2186,2251,2859,3141,3356,2979,3297,3333,3086,2220,2269,2093,1825,1545,989,1799,1369,1743,1454,1520,1524,1610,1606,1507,1383,1360,1803,2188,1783,1730,1802,1819,2473,2095,3252,3683,2647,2652,1916,1576,2097,2326,2842,3197,2373,2209,2593,2887,2574
-2019F,UT,DFRCP,100,93,78,87,94,98,97,133,135,150,143,223,233,303,323,357,337,337,339,234,112,73,125,164,139,67,69,90,120,172,139,130,95,130,95,72,74,88,70,79,79,91,83,70,85,26,29,28,17,23,20,24,26,18,20,22,26,23,26,24
-2019F,UT,DFTCP,3775,3040,3568,3581,3749,4193,4778,4604,4737,4995,5107,6522,6403,8028,8906,9165,8484,8797,9168,9610,8401,7098,6438,6387,6107,5715,6978,6507,7060,5917,7162,7038,7286,7422,7653,8469,8746,9976,10398,9793,10629,11236,11482,12082,12264,13717,17292,15946,14138,12852,12707,15448,14776,15317,15169,14293,14248,15043,15700,15040
-2019F,UT,DFTXP,3764,3029,3560,3573,3741,4185,4770,4597,4730,4987,5098,6513,6394,8004,8886,9154,8479,8792,9163,9596,8333,7039,6379,6308,6050,5660,6849,6319,6957,5831,7078,6956,7224,7360,7596,8403,8687,9918,10332,9738,10528,11126,11385,12021,12204,13643,17166,15872,14060,12789,12626,15360,14707,15272,15128,14260,14193,14978,15636,14970
-2019F,UT,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,38,55,43,13,1,2,18,28,1,0,0,1,0
-2019F,UT,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,28,2,0,0,0,9,6,15,41,15,22,12,8,17,11,12,0,29,16,10,8,40,0
-2019F,UT,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-15309,-12689,-14594,-15054,-15180,-12028,-10646,-11904,-12790,-12185,-10616,-10159,-10718,-11463,-10708,-10341,-11941,-15297,-16165,-12824,-10987,-9162,-6453,-8701,-10562,-8595,-4699,-3886,-5633,-5551
-2019F,UT,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,28,2,0,0,0,9,6,15,40,14,-16,-42,-35,4,10,10,-18,1,15,10,8,39,0
-2019F,UT,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,11,5,1,1,1,1,1,7,19,0,0,21,0,294,250,284,369,98,75,36,604,508,881,1066,1231,1431,1902,2020,2187,2175,2682,2866,2898,2876,3026
-2019F,UT,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,40,44,44,45,46
-2019F,UT,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,8,2,2,1,15,13,18,21,23,21,30,32,33,26,41,43,44,45,46
-2019F,UT,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,59,12,5,1,1,1,1,1,7,19,0,0,22,0,297,253,287,378,100,77,37,619,521,900,1088,1255,1453,1934,2054,2223,2203,2763,2952,2986,2965,3118
-2019F,UT,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,10,16,25,25,28,29,34,33,32,34,35,38,54,61,56,57,56,51,52
-2019F,UT,ESCCP,640,707,777,868,955,1128,1274,1498,1607,1748,1890,2028,2226,2416,2516,2479,2697,2749,2990,3106,3141,2999,3207,3350,4269,4596,4682,4863,5035,5173,5389,5571,5850,5920,6340,6462,6717,7285,7433,8074,8746,9102,9293,9024,9345,9417,9749,10241,10286,10235,10368,10544,10803,11008,11053,11615,11565,11739,12084,11860
-2019F,UT,ESICP,1822,1960,2028,2111,1993,1404,1523,1283,1358,1616,1648,1643,1843,2219,2159,2968,2578,3299,3858,4100,4448,5451,5399,6040,4592,4458,4318,4555,5321,5629,5766,5876,6212,6221,6498,6957,7660,7430,7511,7568,7917,7411,7019,7646,7816,7989,8356,8759,9086,8594,8808,9333,9694,10010,9965,9405,9187,9283,9393,9491
-2019F,UT,ESRCP,1012,1071,1125,1228,1331,1243,1306,1373,1465,1569,1688,1879,2023,2271,2525,2493,2672,2761,2900,3209,3116,3436,3785,3804,3856,3985,3989,3980,4151,4163,4246,4460,4505,4726,5009,5041,5481,5661,5756,6236,6514,6693,6938,7166,7325,7567,8232,8752,8786,8725,8834,8947,9188,9402,8964,9117,9371,9511,9715,9740
-2019F,UT,ESRPP,1125,1144,1174,1260,1361,1255,1295,1347,1424,1498,1584,1707,1782,1941,2104,2017,2096,2092,2121,2259,2116,2267,2429,2385,2377,2425,2399,2372,2457,2440,2453,2506,2453,2489,2555,2503,2651,2670,2657,2830,2902,2931,2984,3036,3050,3079,3260,3369,3299,3204,3183,3178,3219,3243,3051,3056,3078,3064,3079,3040
-2019F,UT,ESTCP,3474,3737,3929,4207,4279,3776,4103,4153,4430,4933,5225,5550,6092,6906,7200,7940,7947,8808,9748,10415,10705,11886,12391,13194,12718,13038,12989,13397,14507,14965,15402,15907,16567,16867,17847,18460,19858,20376,20700,21879,23185,23217,23267,23860,24512,25000,26366,27785,28192,27587,28044,28859,29723,30474,30043,30192,30180,30589,31242,31143
-2019F,UT,ESTPP,3860,3993,4102,4319,4375,3810,4067,4076,4305,4711,4902,5040,5366,5903,5998,6424,6233,6675,7128,7333,7269,7843,7952,8272,7839,7936,7812,7983,8587,8772,8896,8938,9020,8885,9104,9165,9603,9612,9557,9929,10330,10166,10008,10110,10206,10172,10440,10696,10586,10129,10104,10253,10414,10513,10225,10119,9914,9856,9902,9722
-2019F,UT,ESTXP,3474,3737,3929,4207,4279,3776,4103,4153,4430,4933,5225,5550,6092,6906,7200,7940,7947,8808,9748,10415,10705,11886,12391,13194,12718,13038,12989,13397,14507,14965,15402,15907,16567,16867,17847,18460,19858,20376,20700,21879,23185,23217,23267,23860,24512,25000,26366,27785,28192,27587,28044,28859,29723,30474,30043,30192,30180,30589,31242,31143
-2019F,UT,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,FSICP,0,0,0,80,78,91,105,95,96,97,116,146,133,114,152,163,173,167,190,122,142,72,77,96,125,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,110,172,164,174,173,152,186,186,148,195,140,192,169,160,156,152,153,218,198,195,185,191,164,254,279,277,330,335,319,522,430,485,481,446,310
-2019F,UT,HLACP,35,34,35,29,22,12,8,42,12,8,6,6,9,9,10,11,16,12,15,10,14,56,85,104,115,76,78,58,65,56,51,44,39,43,57,32,25,16,2,34,43,56,47,26,48,47,64,39,63,36,24,23,24,28,23,18,28,5,3,7
-2019F,UT,HLCCP,117,155,144,156,187,238,212,261,323,328,327,350,396,333,310,266,280,218,224,151,165,181,203,248,302,298,294,306,299,220,200,196,158,95,76,99,118,231,70,147,278,473,293,269,248,558,294,382,455,323,329,552,294,494,515,490,334,257,415,425
-2019F,UT,HLICP,124,117,116,102,110,70,57,143,110,133,116,131,227,242,313,495,505,371,266,1273,876,1038,932,853,518,668,730,831,621,780,524,215,263,498,536,1252,2301,160,254,612,1068,752,503,45,88,317,398,453,166,111,283,203,400,254,291,188,358,222,257,282
-2019F,UT,HLRCP,175,231,216,234,280,356,317,389,483,490,489,523,591,497,463,397,418,326,335,225,246,271,303,371,452,445,440,457,447,329,299,292,235,143,114,148,177,344,105,220,415,707,437,376,421,551,644,578,666,643,442,535,416,547,455,395,403,648,656,795
-2019F,UT,HLTCP,452,538,511,521,599,677,595,836,928,959,939,1010,1223,1080,1096,1169,1219,928,841,1658,1301,1546,1523,1577,1387,1486,1542,1652,1432,1386,1074,747,696,779,784,1531,2621,750,430,1013,1804,1988,1280,716,805,1473,1399,1453,1351,1113,1078,1313,1134,1322,1284,1090,1123,1132,1330,1508
-2019F,UT,HLTXP,452,538,511,521,599,677,595,836,928,959,939,1010,1223,1080,1096,1169,1219,928,841,1658,1301,1546,1523,1577,1387,1486,1542,1652,1432,1386,1074,747,696,779,784,1531,2621,750,430,1013,1804,1988,1280,716,805,1473,1399,1453,1351,1113,1078,1313,1134,1322,1284,1090,1123,1132,1330,1508
-2019F,UT,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,HYEGP,304,231,391,350,762,910,788,1071,1014,1114,738,981,1220,1111,941,1074,1130,757,734,802,821,623,1024,1394,1391,1019,1413,856,593,562,508,627,602,860,750,969,1049,1344,1315,1255,746,508,458,421,450,784,747,539,668,835,696,1230,748,505,633,769,760,1294,927,875
-2019F,UT,HYICP,0,0,2,2,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,HYTCP,304,231,393,352,765,913,791,1074,1017,1117,741,984,1223,1111,941,1074,1130,757,734,802,821,623,1024,1394,1391,1019,1413,856,593,562,508,627,602,860,750,969,1049,1344,1315,1255,746,508,458,421,450,784,747,539,668,835,696,1230,748,505,633,769,760,1294,927,875
-2019F,UT,HYTXP,0,0,2,2,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,JFACP,1003,1172,1311,1237,1302,1244,1426,1564,1987,1999,1808,1947,1963,1889,1864,1903,1828,2034,2164,2302,2637,2424,2801,3284,3413,3808,4335,4969,4977,5095,5281,5917,5607,5518,5270,5658,6303,6279,6379,7443,7701,6880,6416,6758,7137,7394,7560,7085,6509,5751,5113,4843,4670,4482,4811,5385,6083,6499,8795,7555
-2019F,UT,JFTCP,1003,1172,1311,1237,1302,1244,1426,1564,1987,1999,1808,1947,1963,1889,1864,1903,1828,2034,2164,2302,2637,2424,2801,3284,3413,3808,4335,4969,4977,5095,5281,5917,5607,5518,5270,5658,6303,6279,6379,7443,7701,6880,6416,6758,7137,7394,7560,7085,6509,5751,5113,4843,4670,4482,4811,5385,6083,6499,8795,7555
-2019F,UT,JFTXP,1003,1172,1311,1237,1302,1244,1426,1564,1987,1999,1808,1947,1963,1889,1864,1903,1828,2034,2164,2302,2637,2424,2801,3284,3413,3808,4335,4969,4977,5095,5281,5917,5607,5518,5270,5658,6303,6279,6379,7443,7701,6880,6416,6758,7137,7394,7560,7085,6509,5751,5113,4843,4670,4482,4811,5385,6083,6499,8795,7555
-2019F,UT,KSCCP,6,72,113,128,189,148,168,86,91,80,46,65,72,66,33,28,25,22,20,58,34,60,46,8,3,19,6,18,5,4,5,8,1,3,2,1,3,4,5,4,4,8,4,5,8,11,6,4,2,2,3,0,0,1,1,0,1,0,0,0
-2019F,UT,KSICP,29,130,201,238,349,305,435,449,547,345,197,227,296,285,160,114,83,88,89,92,68,69,100,10,3,3,14,3,14,2,4,3,1,2,2,2,2,3,4,5,5,6,5,4,3,4,3,2,1,2,1,0,0,1,0,0,0,0,0,0
-2019F,UT,KSRCP,1,10,16,18,26,20,23,12,12,11,6,9,10,9,5,4,3,3,3,8,0,26,46,40,14,10,4,9,6,5,5,5,2,3,5,3,4,5,4,4,4,3,2,2,2,1,2,2,1,1,0,0,0,0,0,0,1,0,0,0
-2019F,UT,KSTCP,36,212,330,384,564,474,626,547,650,436,250,301,378,361,198,146,112,113,112,158,102,155,192,58,21,31,24,30,25,11,13,17,4,9,9,6,9,12,13,13,13,17,11,11,13,16,10,8,4,4,4,1,1,1,1,1,2,1,1,1
-2019F,UT,KSTXP,36,212,330,384,564,474,626,547,650,436,250,301,378,361,198,146,112,113,112,158,102,155,192,58,21,31,24,30,25,11,13,17,4,9,9,6,9,12,13,13,13,17,11,11,13,16,10,8,4,4,4,1,1,1,1,1,2,1,1,1
-2019F,UT,LUACP,152,148,130,130,137,151,156,138,151,158,161,163,174,198,190,158,176,194,208,217,194,186,169,177,189,176,172,195,188,193,198,177,181,184,192,189,184,194,203,205,202,185,183,169,171,170,166,171,159,143,221,237,211,222,222,247,234,219,210,200
-2019F,UT,LUICP,62,60,80,80,84,101,105,84,92,93,95,85,91,107,102,73,82,106,114,119,106,101,93,97,103,96,94,106,103,105,108,97,99,101,105,103,100,106,111,112,110,101,100,92,94,93,91,94,87,78,313,286,217,223,232,228,214,199,189,180
-2019F,UT,LUTCP,214,208,210,210,221,251,261,221,243,251,256,247,265,305,292,232,257,299,321,336,299,287,262,274,292,272,266,301,290,298,307,274,280,285,298,292,284,300,314,317,312,286,283,262,265,264,257,265,246,221,534,523,428,446,454,475,447,418,399,381
-2019F,UT,LUTXP,214,208,210,210,221,251,261,221,243,251,256,247,265,305,292,232,257,299,321,336,299,287,262,274,292,272,266,301,290,298,307,274,280,285,298,292,284,300,314,317,312,286,283,262,265,264,257,265,246,221,534,523,428,446,454,475,447,418,399,381
-2019F,UT,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-485,-399,-286,-139,-406,-556,-252,-115,111,106,-51,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,MGACP,7232,7524,7922,8178,8297,8534,9195,9346,10182,10996,11845,12514,13599,14180,14141,14586,15286,16052,17084,16112,15288,15294,15513,15624,15922,15932,17240,17326,17849,17027,16430,17102,17626,18569,19097,20428,20818,21670,22466,22884,23633,22470,23618,23751,24129,24067,24676,25505,24541,24830,24370,25149,24812,25666,26133,26962,27698,27922,27860,28796
-2019F,UT,MGCCP,281,260,263,274,227,234,132,205,232,210,202,192,194,186,130,210,200,198,171,159,81,88,99,131,77,88,90,93,89,89,96,82,73,20,20,21,21,21,21,21,22,23,23,23,24,24,25,25,25,25,25,25,26,26,25,404,421,428,432,437
-2019F,UT,MGICP,299,269,270,284,226,233,227,268,297,270,261,252,258,247,168,266,255,259,222,209,165,167,181,199,151,220,211,204,209,195,198,211,206,247,316,323,331,334,248,236,240,500,517,551,591,587,612,524,485,469,366,393,390,393,311,410,415,420,433,434
-2019F,UT,MGTCP,7813,8052,8455,8736,8751,9001,9554,9819,10712,11476,12308,12958,14052,14614,14439,15063,15741,16509,17478,16480,15534,15548,15793,15954,16151,16240,17541,17623,18148,17311,16724,17395,17905,18837,19433,20771,21170,22024,22735,23141,23895,22993,24158,24325,24744,24677,25312,26054,25051,25324,24761,25568,25228,26085,26469,27776,28535,28769,28725,29667
-2019F,UT,MGTXP,7813,8052,8455,8736,8751,9001,9554,9819,10712,11476,12308,12958,14052,14614,14439,15063,15741,16509,17478,16480,15534,15548,15793,15954,16151,16240,17541,17623,18148,17311,16724,17395,17905,18837,19433,20771,21170,22024,22735,23141,23895,22993,24158,24325,24744,24677,25312,26054,25051,25324,24761,25568,25228,26085,26469,27776,28535,28769,28725,29667
-2019F,UT,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,13,12,11,11,0,0,0,0,0,0,0,20,21,22,22,13,13,12
-2019F,UT,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,NGACP,89,155,157,256,297,402,226,210,244,209,490,537,851,611,590,300,406,439,978,570,851,721,1126,1218,1015,1201,1102,822,1362,1037,876,870,1434,2701,3008,3117,3979,3209,3425,3450,3522,4635,6466,7936,8939,9046,11342,12180,11740,10388,10550,11664,13191,13665,14408,14288,12732,11288,12664,12945
-2019F,UT,NGCCP,10128,10160,11853,13101,15681,15523,6384,6905,8114,9442,10180,8504,7933,8997,5806,6055,14681,9661,8430,6,330,343,21831,7986,8569,8505,4636,14811,17911,16522,16220,19276,16584,22588,26501,26825,29543,31129,30955,30361,31282,30917,33501,30994,31156,34447,34051,34447,37612,37024,38461,40444,35363,41398,38156,35772,39066,41264,42367,47336
-2019F,UT,NGEIP,3677,4895,5247,5064,3983,4742,8448,7390,5506,3578,3520,2400,3783,4742,4009,3040,2805,5344,7575,6186,5133,3097,3023,1259,271,235,230,263,196,636,907,5190,6576,6305,8900,8707,4087,4079,5945,6478,10544,15141,15439,14484,9423,12239,28953,56438,55374,49984,48399,40138,47138,49562,58780,56449,59684,40830,61161,67386
-2019F,UT,NGICP,33490,36575,39658,47998,54506,56571,52730,51612,55223,62702,63110,60113,62671,60109,60263,55029,61896,55313,53747,58823,51139,43290,45769,44784,51084,46449,41553,41555,47243,50174,55221,56858,53489,54826,49891,69347,69332,68781,72967,64668,64048,53599,48576,46079,45846,46500,53036,56072,53487,51640,55717,59905,67546,72170,67936,67542,64703,61752,60450,60055
-2019F,UT,NGRCP,22607,24706,28049,29147,32869,30665,36164,38935,40779,43948,44637,49849,48855,48647,50347,59736,66417,35558,47783,60462,57639,54789,45957,54938,54639,58727,57654,41536,42241,45168,43424,50572,44701,51779,48922,48975,54344,58108,56843,55474,55626,55008,59398,54632,60527,58044,60017,60563,65974,65184,66087,70076,59801,70491,62458,58562,63929,66700,67415,75938
-2019F,UT,NGTCP,69991,76491,84964,95566,107336,107903,103952,105052,109866,119879,121937,121403,124093,123106,121015,124160,146205,106315,118513,126047,115092,102240,117706,110185,115578,115117,105175,98987,108953,113537,116648,132766,122785,138199,137222,156971,161285,165305,170134,160431,165023,159299,163380,154125,155891,160275,187400,219701,224187,214220,219214,222227,223039,247286,241738,232613,240114,221834,244057,263660
-2019F,UT,NGTPP,77.8,81.7,88.7,98.1,109.8,108.9,103,103.1,106.8,114.5,114.4,110.2,109.3,105.2,100.8,100.5,114.7,80.6,86.7,88.8,78.2,67.5,75.5,69.1,71.2,70.1,63.3,59,64.5,66.6,67.4,74.6,66.8,72.8,70,77.9,78,78,78.5,72.8,73.5,69.8,70.3,65.3,64.9,65.2,74.2,84.6,84.2,78.7,79,78.9,78.1,85.3,82.3,78,78.9,71.5,77.4,82.3
-2019F,UT,NGTXP,66314,71596,79717,90502,103353,103161,95504,97662,104360,116301,118417,119003,120310,118364,117006,121120,143400,100971,110938,119861,109959,99143,114683,108926,115307,114882,104945,98724,108757,112900,115741,127576,116209,131894,128322,148264,157198,161226,164189,153954,154479,144158,147941,139641,146469,148036,158446,163262,168813,164236,170815,182089,175901,197724,182958,176164,180430,181004,182896,196274
-2019F,UT,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,OPICP,1358,1313,1366,1400,1409,1463,1523,1494,1553,1647,1632,1571,1692,1754,2016,1991,1996,2014,2127,2063,2003,1158,1161,1609,1646,1380,1256,1522,1917,1985,1988,1625,2056,1812,1950,1840,2343,2324,1859,1805,1633,2327,2258,2468,2484,2623,2742,2665,2363,2184,2502,2550,2679,2669,2530,2592,2869,2938,2932,3030
-2019F,UT,OPTCP,1358,1313,1366,1400,1409,1463,1523,1494,1553,1647,1632,1571,1692,1754,2016,1991,1996,2014,2127,2063,2003,1158,1161,1609,1646,1380,1256,1522,1917,1985,1988,1625,2056,1812,1950,1840,2343,2324,1859,1805,1633,2327,2258,2468,2484,2623,2742,2665,2363,2184,2502,2550,2679,2669,2530,2592,2869,2938,2932,3030
-2019F,UT,OPTXP,1358,1313,1366,1400,1409,1463,1523,1494,1553,1647,1632,1571,1692,1754,2016,1991,1996,2014,2127,2063,2003,1158,1161,1609,1646,1380,1256,1522,1917,1985,1988,1625,2056,1812,1950,1840,2343,2324,1859,1805,1633,2327,2258,2468,2484,2623,2742,2665,2363,2184,2502,2550,2679,2669,2530,2592,2869,2938,2932,3030
-2019F,UT,P1ICP,2831,2759,3206,3185,3401,3550,4062,3895,4033,4044,4240,4047,4677,4360,4629,4138,4557,4550,4535,4742,4249,2762,2817,3186,3806,3831,3358,3744,3755,4427,4161,5327,4468,4277,4505,4738,5460,5086,5150,5070,4785,4626,3773,5853,5053,5033,4773,4448,4352,4326,4986,5158,5291,4765,4673,4757,5152,5339,5042,5154
-2019F,UT,P1TCP,3584,3704,3998,3989,4143,4251,4779,4442,4537,4516,4632,4451,5112,4806,5044,4488,4921,4943,4929,5172,4615,3174,3154,3515,4090,4129,3651,4065,4066,4736,4475,5636,4785,4582,4792,4995,5703,5349,5413,5356,5080,4898,4031,6089,5312,5323,5057,4703,4624,4610,5275,5457,5559,5037,4959,5065,5443,5614,5311,5414
-2019F,UT,P1TXP,3584,3704,3998,3989,4143,4251,4779,4442,4537,4516,4632,4451,5112,4806,5044,4488,4921,4943,4929,5172,4615,3174,3154,3515,4090,4129,3651,4065,4066,4736,4475,5636,4785,4582,4792,4995,5703,5349,5413,5356,5080,4898,4031,6089,5312,5323,5057,4703,4624,4610,5275,5457,5559,5037,4959,5065,5443,5614,5311,5414
-2019F,UT,PAACP,11698,11249,12189,12308,12364,12991,14482,14343,15413,16256,16893,18127,19018,20217,20692,21028,21488,22451,23969,24214,23245,22592,22424,23115,23570,24207,26072,26850,27651,26249,27169,28282,28717,29730,30290,32936,34260,35840,36649,37923,40015,38204,39259,39700,41100,41806,45593,45624,42349,41225,40363,43027,41476,42249,42576,44167,45520,46581,49227,48526
-2019F,UT,PACCP,1423,1780,1995,2055,2060,2048,2114,2167,2287,2409,1892,2306,2275,2474,2635,2902,2923,2778,2565,1855,2358,534,767,1395,1184,934,1276,1187,1075,760,738,687,640,495,526,516,530,672,623,774,687,1219,878,840,769,940,762,863,906,874,817,1105,973,1130,1145,1264,1293,1165,1270,1326
-2019F,UT,PAEIP,2302,2172,1677,1603,1531,1605,1430,1411,1437,1624,1777,1880,1269,363,141,162,80,292,182,263,126,79,59,79,58,80,135,187,103,86,84,82,62,62,57,66,59,58,66,55,101,110,96,61,60,74,126,73,78,63,81,88,69,46,42,34,55,66,64,70
-2019F,UT,PAICP,6642,6753,7780,7633,7708,7910,8597,8305,8792,9134,8249,8896,9850,10191,11312,11541,11712,11567,11309,11610,9897,7237,6839,7152,6685,6068,6410,6392,6570,7094,6649,7454,6772,6858,7187,7977,9525,7522,7934,7750,7877,7680,6695,9033,7997,9406,9708,8382,8096,6952,7225,7852,8407,8256,8476,7732,8135,8575,8621,8443
-2019F,UT,PARCP,276,334,310,338,400,474,437,534,630,651,639,755,834,809,791,758,758,666,677,467,357,369,473,574,605,521,513,556,573,507,442,427,333,276,215,223,255,437,179,303,498,801,522,448,508,579,675,608,684,667,462,559,442,565,475,417,430,671,682,819
-2019F,UT,PATCP,22341,22288,23950,23937,24063,25029,27060,26761,28559,30075,29450,31965,33247,34054,35571,36391,36961,37754,38701,38409,35983,30812,30563,32316,32101,31809,34406,35172,35971,34694,35082,36933,36524,37422,38275,41718,44628,44529,45452,46806,49179,48013,47450,50082,50434,52803,56863,55550,52113,49781,48948,52631,51368,52245,52713,53614,55432,57057,59864,59184
-2019F,UT,PATPP,24.8,23.8,25,24.6,24.6,25.3,26.8,26.3,27.8,28.7,27.6,29,29.3,29.1,29.6,29.4,29,28.6,28.3,27,24.4,20.3,19.6,20.3,19.8,19.4,20.7,21,21.3,20.3,20.3,20.8,19.9,19.7,19.5,20.7,21.6,21,21,21.2,21.9,21,20.4,21.2,21,21.5,22.5,21.4,19.6,18.3,17.6,18.7,18,18,17.9,18,18.2,18.4,19,18.5
-2019F,UT,PATXP,20039,20116,22273,22334,22532,23424,25630,25350,27122,28450,27673,30085,31978,33691,35430,36229,36880,37462,38519,38146,35857,30733,30504,32237,32044,31729,34271,34984,35869,34609,34998,36851,36462,37359,38218,41652,44570,44471,45385,46751,49078,47903,47354,50020,50374,52729,56737,55477,52035,49717,48867,52542,51299,52200,52672,53580,55377,56992,59800,59114
-2019F,UT,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,PCICP,568,568,656,666,769,842,791,796,820,750,740,765,795,795,780,740,735,520,505,565,595,507,531,650,713,775,700,683,652,665,683,732,680,631,629,613,653,661,725,768,742,750,792,753,796,834,828,892,828,951,989,1024,1002,782,883,821,901,889,788,793
-2019F,UT,PCTCP,568,568,656,666,769,842,791,796,820,750,740,765,795,795,780,740,735,520,505,565,595,507,531,650,713,775,700,683,652,665,683,732,680,631,629,613,653,661,725,768,742,750,792,753,796,834,828,892,828,951,989,1024,1002,782,883,821,901,889,788,793
-2019F,UT,PCTXP,568,568,656,666,769,842,791,796,820,750,740,765,795,795,780,740,735,520,505,565,595,507,531,650,713,775,700,683,652,665,683,732,680,631,629,613,653,661,725,768,742,750,792,753,796,834,828,892,828,951,989,1024,1002,782,883,821,901,889,788,793
-2019F,UT,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,23,24,28,23,18,28,5,3,7
-2019F,UT,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,329,552,294,494,515,490,334,257,415,425
-2019F,UT,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,283,203,400,254,291,188,358,222,257,282
-2019F,UT,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,442,535,416,547,455,395,403,648,656,795
-2019F,UT,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1078,1313,1134,1322,1284,1090,1123,1132,1330,1508
-2019F,UT,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1078,1313,1134,1322,1284,1090,1123,1132,1330,1508
-2019F,UT,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,UT,RFACP,370,82,162,125,107,98,89,82,82,72,25,35,30,29,55,68,84,54,77,0,0,0,0,290,153,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,RFCCP,656,956,1190,1179,1114,1072,1248,1132,1151,1244,795,889,767,786,985,1098,1193,1112,915,637,1051,0,38,222,135,45,42,113,47,13,73,23,20,54,19,13,14,11,3,10,16,18,0,0,0,3,1,0,0,0,0,0,0,0,17,0,0,0,0,0
-2019F,UT,RFEIP,2291,2162,1669,1595,1524,1597,1423,1404,1430,1616,1768,1871,1260,340,121,152,76,286,177,249,58,20,1,0,0,25,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,RFICP,2399,2583,3087,2973,2775,2895,3168,2879,2994,3197,2068,2281,2436,2484,3061,3285,3416,3090,2954,2302,2386,1002,816,1088,665,360,311,244,241,237,245,177,225,230,324,282,73,139,94,50,54,0,82,111,171,217,242,309,441,130,14,1,1,2,4,4,0,0,3,0
-2019F,UT,RFTCP,5715,5783,6107,5872,5519,5662,5928,5497,5657,6129,4656,5076,4494,3638,4222,4603,4768,4543,4122,3187,3495,1022,855,1600,953,431,360,357,288,250,367,200,245,285,343,294,87,149,96,60,71,18,82,111,171,220,243,309,441,130,14,1,1,2,21,4,0,0,3,0
-2019F,UT,RFTXP,3425,3621,4438,4277,3996,4065,4505,4093,4227,4513,2888,3205,3233,3298,4101,4451,4692,4257,3946,2938,3437,1002,854,1600,953,405,353,357,288,250,367,200,245,285,343,294,87,149,96,60,71,18,82,111,171,220,243,309,441,130,14,1,1,2,21,4,0,0,3,0
-2019F,UT,SGICP,1358,1313,1366,1320,1330,1373,1418,1399,1457,1551,1516,1415,1548,1628,1853,1819,1794,1816,1901,1904,1826,2008,2004,2001,2091,2117,2404,2413,2525,2551,2536,2455,2521,2504,2394,2357,2503,2460,2356,2232,2248,2373,2404,2474,2536,2543,2549,2477,2374,2266,2422,2426,2548,2501,2522,2486,2722,2665,2749,2650
-2019F,UT,SNICP,0,0,0,0,0,0,0,0,0,0,0,10,11,11,11,9,29,30,36,37,35,68,63,74,99,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,22,17,11,14,51,57,62,34,19,17,11,99,105,98,93,107,98,102
-2019F,UT,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,8,11,18,26,43,63,79,88
-2019F,UT,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,32,1054,2211,2224,2186
-2019F,UT,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,5,6,8,8,9
-2019F,UT,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,5,9,16,36,101,218,307,362
-2019F,UT,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,6,16,24,40,99,1203,2500,2618,2646
-2019F,UT,TPOPP,900,936,958,974,978,991,1009,1019,1029,1047,1066,1101,1135,1170,1200,1236,1275,1320,1368,1420,1473,1515,1558,1595,1622,1643,1663,1678,1689,1706,1731,1780,1837,1898,1960,2014,2068,2120,2166,2203,2245,2284,2325,2360,2402,2458,2526,2598,2663,2723,2775,2815,2854,2899,2938,2984,3044,3104,3155,3203
-2019F,UT,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-515,-594,-347,-597,-613,-622,-640,-490,-678,-654,-798,-637,-714,-478,-550,-202,-180,-530,-460,-641,-126,-230,-84,-128,5,119,109,-89,-125,47,94,107,28,-138,-30,16,139,57,254
-2019F,UT,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,20,22,22,22,28,25,25,22,19,40,35,34,33,34,22,18,16,10,14,13,13,22,20,17,17,15,18,15
-2019F,UT,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,160,448,573,704,540,660,626,822,858,795,819
-2019F,UT,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,UT,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,160,448,573,704,540,660,626,822,858,795,819
-2019F,UT,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,3,0,0,-1,0,0,0,0,0,4,4,5,7,3,5,3,4,5,5,7,0,0,1,0,-1,0,0,0,0,0,0,0,0,0,0
-2019F,VA,ARICP,1753,2227,1862,2296,2392,2681,2655,2289,2502,2476,2250,2786,2743,3119,3026,2328,2702,2928,3465,3249,2618,2357,2013,2823,3658,4033,4444,4406,3604,4203,4701,3734,3759,3697,3935,3639,3512,3474,3889,4770,3883,4252,3382,3808,4311,4821,4329,3972,2835,3139,3727,4213,3823,3060,3062,3834,3721,3432,3126,3298
-2019F,VA,ARTCP,1753,2227,1862,2296,2392,2681,2655,2289,2502,2476,2250,2786,2743,3119,3026,2328,2702,2928,3465,3249,2618,2357,2013,2823,3658,4033,4444,4406,3604,4203,4701,3734,3759,3697,3935,3639,3512,3474,3889,4770,3883,4252,3382,3808,4311,4821,4329,3972,2835,3139,3727,4213,3823,3060,3062,3834,3721,3432,3126,3298
-2019F,VA,ARTXP,1753,2227,1862,2296,2392,2681,2655,2289,2502,2476,2250,2786,2743,3119,3026,2328,2702,2928,3465,3249,2618,2357,2013,2823,3658,4033,4444,4406,3604,4203,4701,3734,3759,3697,3935,3639,3512,3474,3889,4770,3883,4252,3382,3808,4311,4821,4329,3972,2835,3139,3727,4213,3823,3060,3062,3834,3721,3432,3126,3298
-2019F,VA,AVACP,382,381,576,608,655,721,810,742,615,462,356,321,322,321,305,251,228,241,255,207,218,185,180,163,127,131,155,74,74,75,70,116,101,105,101,85,79,50,90,106,97,165,134,117,138,223,61,197,180,214,93,88,83,73,97,64,71,69,81,86
-2019F,VA,AVTCP,382,381,576,608,655,721,810,742,615,462,356,321,322,321,305,251,228,241,255,207,218,185,180,163,127,131,155,74,74,75,70,116,101,105,101,85,79,50,90,106,97,165,134,117,138,223,61,197,180,214,93,88,83,73,97,64,71,69,81,86
-2019F,VA,AVTXP,382,381,576,608,655,721,810,742,615,462,356,321,322,321,305,251,228,241,255,207,218,185,180,163,127,131,155,74,74,75,70,116,101,105,101,85,79,50,90,106,97,165,134,117,138,223,61,197,180,214,93,88,83,73,97,64,71,69,81,86
-2019F,VA,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,11,30,41,35,37,30,103,92,439,424,466,806,840,493,402
-2019F,VA,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,11,30,41,35,37,30,103,92,439,424,466,806,840,493,402
-2019F,VA,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,CLACP,77,22,19,19,19,19,17,13,11,7,7,4,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,CLCCP,533,455,459,414,402,342,359,305,285,249,207,221,229,304,465,226,312,310,166,154,152,107,203,213,233,211,189,250,227,153,189,114,157,254,268,248,348,162,153,109,74,115,68,92,83,111,24,75,75,90,84,90,49,51,66,50,34,37,27,22
-2019F,VA,CLEIP,6262,6577,7390,7669,8103,8265,8496,8349,9330,8129,6644,5764,4880,4951,4469,3991,5669,5019,4320,5162,5560,6550,6596,6577,7323,7166,7345,8297,8469,10407,9083,9472,10047,11367,10411,11248,12942,13496,13762,14057,16098,15428,15417,15201,14882,14920,14194,14913,13368,10803,10958,8799,6497,9869,9513,7961,7828,5275,4939,1973
-2019F,VA,CLICP,4503,4888,4759,5191,5143,5824,5738,5453,5059,4388,4172,3276,2938,2715,2396,2816,2209,2285,2464,3297,3538,3985,3577,4057,4557,4219,4268,4605,4670,4512,4641,5273,4564,3826,3807,3551,3594,3486,3385,3249,3425,3492,3382,3403,3230,3295,3068,3135,3125,2463,2773,2653,2475,2371,2128,1708,1629,1522,1526,1494
-2019F,VA,CLKCP,168,78,33,51,125,265,264,71,4,12,27,28,0,0,0,0,8,219,522,686,663,751,541,902,994,885,895,943,925,936,885,973,972,963,969,966,981,986,1017,1022,1077,1144,1230,1183,1084,1098,1037,1194,1134,822,1168,1210,1038,1039,1041,1025,1016,1018,1032,1038
-2019F,VA,CLOCP,4335,4810,4726,5140,5018,5559,5474,5383,5055,4376,4145,3249,2938,2715,2396,2816,2201,2066,1942,2611,2875,3234,3036,3155,3563,3334,3373,3662,3745,3576,3756,4301,3592,2863,2838,2585,2613,2500,2368,2227,2348,2348,2152,2221,2146,2196,2031,1941,1992,1641,1605,1443,1437,1333,1087,683,613,503,494,457
-2019F,VA,CLRCP,766,655,661,571,555,454,476,405,362,317,264,213,173,179,219,97,127,120,50,38,41,24,42,40,55,60,56,75,64,41,47,25,35,56,47,37,47,20,19,15,9,14,9,14,9,10,2,8,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,CLTCP,12141,12598,13288,13865,14222,14904,15088,14525,15047,13090,11294,9479,8223,8151,7550,7130,8317,7734,7000,8651,9291,10666,10419,10888,12168,11656,11857,13227,13430,15113,13960,14885,14803,15504,14533,15084,16931,17165,17320,17431,19606,19049,18876,18709,18205,18335,17289,18131,16569,13355,13815,11542,9020,12292,11706,9719,9491,6833,6491,3489
-2019F,VA,CLTXP,5879,6021,5898,6196,6119,6639,6591,6177,5717,4961,4650,3715,3343,3199,3081,3139,2648,2716,2680,3489,3731,4116,3822,4310,4845,4490,4513,4930,4961,4706,4877,5412,4756,4136,4122,3836,3989,3668,3557,3373,3508,3622,3459,3509,3323,3416,3094,3218,3200,2552,2857,2743,2524,2422,2194,1758,1663,1558,1553,1516
-2019F,VA,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,DFACP,4099,3670,4035,4284,5061,6564,7219,7034,6682,7707,7698,8568,8798,9978,9616,8217,9319,10266,10814,12235,11219,12274,11241,13486,13087,14305,15275,16463,19217,16018,16749,17322,16964,17248,18479,18418,21422,22274,22842,23217,24840,24618,24930,26146,29026,28426,31389,29916,26100,25018,25563,25427,25714,25741,26299,25746,25459,25301,28280,30039
-2019F,VA,DFCCP,1388,1474,1526,1623,1500,1591,1802,1891,1955,1819,2072,2025,2052,2168,1945,1935,2012,2180,1935,2780,1634,1396,1483,2741,3223,2747,3154,2970,2976,2614,2815,2468,2273,2583,2741,2656,3398,2974,3097,2864,3322,2959,2457,3245,3027,2980,2692,2088,1549,1333,1475,1153,1709,1377,1598,1601,1494,1563,1821,1879
-2019F,VA,DFEIP,6,6,8,7,9,7,9,12,15,386,721,570,1144,944,1547,624,1006,1593,1092,726,793,604,325,278,310,340,275,323,336,608,553,529,578,434,868,683,876,2259,464,641,966,1436,539,2560,1223,1405,460,1115,755,998,935,468,353,344,1521,1003,588,607,1168,263
-2019F,VA,DFICP,2133,2609,3146,3353,2916,2977,3372,3556,4372,4689,4415,3703,3443,3828,3122,3128,3314,3904,3379,4257,3573,3768,3830,2990,3516,3389,3732,3995,4451,3852,3625,3399,2938,3159,2755,3661,4366,4997,4431,4279,4857,5091,4570,5973,6758,7105,6872,7114,6807,3108,2419,2513,2822,2950,3097,2664,2825,2605,2538,2714
-2019F,VA,DFRCP,6520,6923,7170,7622,7047,7471,8465,8881,9181,8544,9734,9511,9638,10185,9134,9091,9450,10240,9089,13058,7380,5572,5035,5396,6346,5738,7240,7583,7981,6987,6069,5316,5559,5288,5466,5162,5770,5214,5021,4951,5679,5187,4884,5300,5601,5390,4524,4358,3993,3030,3215,2822,2095,2355,2437,2249,1712,1548,1967,1638
-2019F,VA,DFTCP,14146,14681,15886,16888,16534,18609,20867,21373,22205,23145,24640,24376,25075,27103,25364,22996,25101,28183,26309,33056,24599,23613,21913,24890,26483,26519,29676,31335,34960,30080,29812,29035,28312,28713,30309,30580,35832,37717,35855,35952,39664,39291,37379,43225,45636,45306,45937,44591,39205,33487,33606,32383,32692,32766,34951,33263,32078,31624,35775,36533
-2019F,VA,DFTXP,14140,14675,15878,16881,16525,18602,20858,21361,22190,22759,23919,23806,23931,26159,23817,22372,24095,26590,25216,32330,23806,23009,21589,24612,26173,26179,29401,31011,34624,29472,29259,28506,27734,28279,29441,29897,34956,35458,35391,35311,38697,37855,36840,40665,44413,43901,45476,43477,38449,32489,32671,31915,32340,32423,33430,32260,31489,31017,34607,36270
-2019F,VA,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
-2019F,VA,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,30,0
-2019F,VA,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28877,29400,29678,30437,30156,32867,31501,29466,29008,30706,31242,32643,37211,37713,39458,42376,45678,44487,48576,48699,50858,52912,46818,43672,43825,37639,29645,30580,32161,30984
-2019F,VA,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,30,0
-2019F,VA,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,73,106,291,646,905,742,674,715,374,360,271,51,274,1,944,729,910,780,884,825,1455,1920,2016,1580,4071,5350,6648,8533,9437,8783,9054,9169,9306,9134,9341,9510,9588,9588
-2019F,VA,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,5,6,6,5,5,3,2,1,0,1,0,2,1,1,2,1,1,2,3,3,2,4,6,7,9,8,10,9,9,10,221,225,228,234,237
-2019F,VA,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,10,8,7,8,4,3,3,0,2,0,9,7,9,5,6,13,22,29,38,28,74,59,57,74,96,93,95,100,95,74,74,75,77,78
-2019F,VA,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,73,107,295,658,920,756,686,728,381,365,275,51,277,1,954,737,920,787,891,839,1480,1951,2056,1610,4149,5415,6713,8616,9541,8887,9159,9279,9411,9429,9640,9814,9899,9903
-2019F,VA,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,13,28,32,37,36,43,48,60,77,90,90,89,86,88,91,91,89,86,85,83,88,91,96,97,97,172,162,163,163,193,194,193,189,188,188,195,202,196,183,178,199,190
-2019F,VA,ESCCP,3676,4032,4470,4991,5536,6192,6943,7596,8671,9791,10804,11644,12617,14055,13827,14014,15003,15479,16211,16341,16969,18201,18492,19179,20631,21491,23504,24983,26143,27754,28082,29387,29863,31419,31624,33051,33839,34165,35793,36893,38459,39329,40642,41179,43025,44670,44654,46971,46878,46828,48037,47051,46757,47751,47752,48347,49264,50201,52268,53981
-2019F,VA,ESICP,3786,4060,4536,4874,5277,5834,6322,6822,7634,8182,7467,7765,8284,8851,8993,9437,10529,10829,11010,11678,11637,11931,12300,12733,13200,13561,14449,14899,15690,16395,16399,16029,16714,17390,18154,18554,19021,19249,20024,20269,20619,19702,19521,19282,19734,19354,18998,18925,18438,16678,17141,17218,17316,17150,17701,17537,17648,17169,17737,17598
-2019F,VA,ESRCP,4099,4511,4821,5277,5812,6557,7337,7954,9189,10473,11546,12053,13037,14697,14752,15871,17156,18198,18669,18717,19731,20579,20343,21588,21711,22568,25235,26875,28192,29223,28130,29607,29780,32472,32343,33472,34651,33923,34703,35779,37541,37325,40358,40877,42503,44662,42906,45481,44597,44763,48439,45771,43535,45416,46444,45928,45186,43982,47963,46666
-2019F,VA,ESRPP,1028,1102,1153,1234,1334,1486,1647,1764,2016,2270,2478,2537,2702,2999,2968,3144,3350,3504,3542,3526,3675,3780,3704,3879,3847,3949,4342,4530,4670,4775,4525,4699,4643,4988,4906,5018,5133,4967,5029,5111,5283,5185,5539,5549,5686,5894,5591,5868,5693,5648,6037,5649,5317,5501,5585,5489,5368,5192,5635,5454
-2019F,VA,ESTCP,11561,12603,13827,15143,16625,18583,20601,22372,25494,28446,29816,31462,33938,37603,37571,39322,42688,44513,45903,46764,48369,50748,51172,53543,55590,57681,63265,66847,70115,73461,72696,75111,76448,81372,82210,85162,87596,87420,90609,93032,96715,96453,100619,101510,105424,108850,106721,111570,110106,108462,113806,110228,107795,110512,112098,112009,112281,111530,118166,118435
-2019F,VA,ESTPP,2900,3078,3308,3541,3816,4213,4623,4963,5593,6165,6400,6622,7035,7672,7558,7791,8335,8572,8710,8810,9010,9322,9316,9622,9850,10093,10886,11268,11614,12003,11693,11920,11918,12500,12469,12767,12975,12801,13130,13290,13611,13399,13808,13779,14102,14366,13907,14394,14056,13684,14183,13604,13166,13386,13481,13387,13339,13166,13884,13841
-2019F,VA,ESTXP,11561,12603,13827,15143,16625,18583,20601,22372,25494,28446,29816,31462,33938,37603,37571,39322,42688,44513,45903,46764,48369,50748,51172,53543,55590,57681,63265,66847,70115,73461,72696,75111,76448,81372,82210,85162,87596,87420,90609,93032,96715,96453,100619,101510,105424,108850,106721,111570,110106,108462,113806,110228,107795,110512,112098,112009,112281,111530,118166,118435
-2019F,VA,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,FSICP,0,0,0,30,29,30,42,37,37,43,51,63,52,46,52,56,58,56,62,39,45,23,26,32,42,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,HLACP,7,10,13,18,21,24,26,26,31,35,47,65,68,69,64,57,70,82,79,88,47,99,78,92,140,102,56,82,98,92,63,101,102,109,182,64,56,48,35,14,35,8,18,55,46,67,72,63,129,83,49,47,50,44,25,24,26,22,24,23
-2019F,VA,HLCCP,256,276,299,389,427,395,371,408,419,479,498,502,557,522,492,543,580,579,519,474,524,484,456,542,606,629,533,651,622,725,740,808,846,833,850,1001,1110,1197,914,1019,1219,1107,1065,1402,1313,1261,1093,1173,1445,1358,1513,1568,1414,1836,1981,1817,1898,1970,1948,1829
-2019F,VA,HLICP,275,306,308,395,428,301,362,473,477,547,682,703,914,916,945,1184,1181,1327,1304,1934,1312,1210,1340,1051,1510,1707,1522,1844,2053,1929,1526,1812,1767,1906,1876,1338,1349,1124,884,1130,1945,1078,1727,1080,766,1244,1455,1081,667,669,657,662,653,802,924,996,904,855,831,673
-2019F,VA,HLRCP,608,657,711,924,1015,939,883,971,997,1139,1185,1193,1325,1242,1170,1293,1379,1377,1236,1127,1247,1152,1084,1289,1442,1495,1268,1548,1479,1725,1759,1922,2012,1981,2021,2380,2640,2848,2173,2424,2899,2633,2534,3150,3327,3195,2551,2914,3098,3511,3455,3289,2642,3160,3054,3201,2735,2565,3156,3313
-2019F,VA,HLTCP,1146,1250,1332,1726,1891,1658,1642,1879,1924,2201,2412,2463,2863,2749,2672,3077,3209,3365,3138,3624,3131,2945,2958,2975,3697,3932,3380,4126,4251,4472,4088,4643,4727,4829,4928,4783,5156,5216,4006,4587,6097,4825,5345,5686,5452,5767,5171,5231,5338,5621,5673,5566,4760,5842,5985,6038,5563,5413,5959,5839
-2019F,VA,HLTXP,1146,1250,1332,1726,1891,1658,1642,1879,1924,2201,2412,2463,2863,2749,2672,3077,3209,3365,3138,3624,3131,2945,2958,2975,3697,3932,3380,4126,4251,4472,4088,4643,4727,4829,4928,4783,5156,5216,4006,4587,6097,4825,5345,5686,5452,5767,5171,5231,5338,5621,5673,5566,4760,5842,5985,6038,5563,5413,5959,5839
-2019F,VA,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,HYEGP,1189,1108,1186,803,784,797,686,747,740,661,650,1082,1362,1274,1045,1273,853,687,1264,1515,864,338,913,1182,1154,818,47,807,-218,424,1309,1063,1071,1297,1134,981,1419,1007,1272,669,699,1013,867,1776,1583,1471,1345,1242,1002,1468,1488,1199,1032,1248,945,1146,1463,1116,1765,1519
-2019F,VA,HYICP,79,75,77,72,75,87,77,59,45,44,41,41,46,44,40,38,35,26,22,28,27,27,27,27,27,27,27,27,27,0,0,18,19,17,12,14,9,13,11,13,13,1,2,6,0,13,6,7,9,10,12,11,12,5,10,12,9,0,0,0
-2019F,VA,HYTCP,1267,1183,1263,875,859,883,764,806,785,705,691,1123,1408,1318,1085,1311,888,714,1286,1543,892,365,940,1210,1182,845,75,834,-191,424,1309,1080,1090,1313,1146,995,1429,1020,1283,682,712,1014,868,1782,1583,1484,1351,1248,1011,1479,1500,1210,1044,1254,955,1158,1471,1116,1765,1519
-2019F,VA,HYTXP,79,75,77,72,75,87,77,59,45,44,41,41,46,44,40,38,35,26,22,28,27,27,27,27,27,27,27,27,27,0,0,18,19,17,12,14,9,13,11,13,13,1,2,6,0,13,6,7,9,10,12,11,12,5,10,12,9,0,0,0
-2019F,VA,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,JFACP,4441,4500,4988,6062,6333,6504,7239,9427,10918,11489,11093,11803,11662,12311,11418,11602,11954,12541,12339,12079,12279,11255,11090,10869,10465,11038,13228,14432,15700,15768,15806,11824,11670,11915,12003,10589,9204,9406,10192,9314,9943,9981,9955,11461,16754,18845,18809,19024,16520,15693,18510,18715,18489,18878,18552,19003,18622,19496,19675,19780
-2019F,VA,JFTCP,4441,4500,4988,6062,6333,6504,7239,9427,10918,11489,11093,11803,11662,12311,11418,11602,11954,12541,12339,12079,12279,11255,11090,10869,10465,11038,13228,14432,15700,15768,15806,11824,11670,11915,12003,10589,9204,9406,10192,9314,9943,9981,9955,11461,16754,18845,18809,19024,16520,15693,18510,18715,18489,18878,18552,19003,18622,19496,19675,19780
-2019F,VA,JFTXP,4441,4500,4988,6062,6333,6504,7239,9427,10918,11489,11093,11803,11662,12311,11418,11602,11954,12541,12339,12079,12279,11255,11090,10869,10465,11038,13228,14432,15700,15768,15806,11824,11670,11915,12003,10589,9204,9406,10192,9314,9943,9981,9955,11461,16754,18845,18809,19024,16520,15693,18510,18715,18489,18878,18552,19003,18622,19496,19675,19780
-2019F,VA,KSCCP,93,103,105,106,93,97,101,112,116,104,91,91,82,59,45,41,46,38,32,46,46,37,34,58,101,214,144,197,270,280,139,148,127,159,101,275,277,372,433,317,276,228,88,195,242,203,168,162,25,28,38,26,11,13,21,13,25,10,12,13
-2019F,VA,KSICP,291,298,367,375,509,600,1009,478,713,410,395,433,522,277,235,167,246,206,199,379,267,216,186,105,173,207,190,125,149,140,75,92,56,87,101,122,114,91,118,56,56,63,46,50,57,67,50,28,15,14,23,11,4,4,5,3,3,3,2,2
-2019F,VA,KSRCP,4655,5139,5261,5320,4666,4847,5040,5626,5809,5208,4544,4541,4118,2949,2245,2056,2288,1899,1592,2302,1403,919,1048,1182,3220,3611,2474,2181,2629,2271,1160,1322,1283,1489,1256,1220,1544,1583,2053,1548,1642,1681,935,1261,1454,1426,1139,740,307,286,332,155,71,79,123,85,113,64,68,74
-2019F,VA,KSTCP,5038,5540,5734,5801,5268,5544,6150,6216,6639,5722,5029,5064,4722,3285,2525,2264,2580,2142,1823,2727,1716,1172,1268,1345,3494,4032,2808,2504,3049,2692,1374,1562,1466,1735,1459,1618,1935,2046,2604,1922,1974,1972,1069,1506,1754,1695,1358,929,348,328,392,192,85,95,149,101,142,76,82,89
-2019F,VA,KSTXP,5038,5540,5734,5801,5268,5544,6150,6216,6639,5722,5029,5064,4722,3285,2525,2264,2580,2142,1823,2727,1716,1172,1268,1345,3494,4032,2808,2504,3049,2692,1374,1562,1466,1735,1459,1618,1935,2046,2604,1922,1974,1972,1069,1506,1754,1695,1358,929,348,328,392,192,85,95,149,101,142,76,82,89
-2019F,VA,LUACP,451,439,437,436,458,428,445,394,432,423,430,439,470,477,457,427,475,529,569,595,530,508,463,485,517,482,471,533,514,527,542,485,495,504,527,518,502,531,555,561,553,507,501,463,469,466,454,469,436,392,686,632,603,623,647,688,651,599,588,578
-2019F,VA,LUICP,182,177,208,208,219,236,245,230,252,284,289,279,298,404,387,307,341,422,453,474,422,405,369,387,412,384,376,425,410,420,432,387,394,402,420,412,400,423,443,447,441,404,399,369,374,372,362,374,347,312,470,426,375,380,363,385,361,340,327,302
-2019F,VA,LUTCP,633,616,645,645,677,664,690,623,685,706,720,717,768,881,844,734,815,951,1022,1069,952,913,833,872,930,866,847,958,923,947,975,872,889,905,946,930,903,953,998,1009,993,910,899,832,842,838,816,843,783,704,1157,1058,978,1002,1010,1073,1012,939,915,880
-2019F,VA,LUTXP,633,616,645,645,677,664,690,623,685,706,720,717,768,881,844,734,815,951,1022,1069,952,913,833,872,930,866,847,958,923,947,975,872,889,905,946,930,903,953,998,1009,993,910,899,832,842,838,816,843,783,704,1157,1058,978,1002,1010,1073,1012,939,915,880
-2019F,VA,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-158,-137,-96,-46,-142,-193,-87,-41,41,39,-19,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,MGACP,29972,29689,31301,32371,33156,34992,36452,38171,41305,45200,47821,50894,54309,57552,57145,58524,61703,63680,65939,62192,58386,58492,57804,58876,61107,61837,64098,68645,69907,69658,69150,69513,70521,73071,74244,77978,78268,80503,81280,84077,84937,89292,90030,91498,92956,93557,95243,97824,94542,93355,95362,89347,91588,91714,93779,92483,93860,94359,94406,93651
-2019F,VA,MGCCP,223,242,257,264,267,275,296,311,312,192,210,218,283,359,299,310,320,347,349,368,371,517,346,653,410,456,397,509,502,504,478,341,345,121,137,132,130,137,123,166,122,124,127,123,124,115,100,116,104,98,80,106,96,93,100,2234,2263,2266,2303,2317
-2019F,VA,MGICP,882,861,926,890,890,838,785,704,740,666,653,560,497,518,501,460,399,385,328,330,278,232,205,159,399,686,689,740,689,768,705,671,668,635,666,718,766,801,794,571,569,1377,1392,1398,1741,1639,1732,1081,817,809,971,951,959,1001,960,745,739,748,761,758
-2019F,VA,MGTCP,31077,30793,32484,33525,34312,36104,37534,39186,42357,46059,48684,51673,55089,58429,57945,59293,62422,64412,66616,62890,59035,59241,58355,59687,61916,62979,65184,69895,71098,70930,70333,70526,71533,73827,75047,78828,79164,81440,82197,84814,85628,90793,91548,93019,94821,95311,97076,99021,95463,94263,96413,90404,92643,92808,94838,95461,96862,97373,97470,96726
-2019F,VA,MGTXP,31077,30793,32484,33525,34312,36104,37534,39186,42357,46059,48684,51673,55089,58429,57945,59293,62422,64412,66616,62890,59035,59241,58355,59687,61916,62979,65184,69895,71098,70930,70333,70526,71533,73827,75047,78828,79164,81440,82197,84814,85628,90793,91548,93019,94821,95311,97076,99021,95463,94263,96413,90404,92643,92808,94838,95461,96862,97373,97470,96726
-2019F,VA,MSICP,434,485,532,282,282,275,229,214,239,223,199,112,114,142,181,244,1283,1451,1262,1168,1107,565,495,444,381,384,189,190,230,212,191,317,208,197,220,202,213,234,285,268,286,288,310,291,262,260,177,174,185,198,207,215,211,170,181,187,190,468,466,424
-2019F,VA,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,NGACP,3935,4700,5341,5987,6560,6743,6941,7020,7660,7953,7779,7153,8274,5828,4222,3069,2705,2720,2683,4043,8259,10713,10943,7209,6553,4426,4861,6348,8238,5850,6943,6636,6454,5792,6397,6370,7889,7549,7025,8216,8208,7805,8119,7181,5820,5112,5580,7059,8602,8969,10233,14224,9709,8685,7631,8217,8768,9561,10553,13869
-2019F,VA,NGCCP,11336,12555,13056,13391,13438,14806,18174,22756,24594,27155,30090,34672,34176,37632,35281,32358,34887,34685,43064,33946,38467,35255,38157,38457,34825,33975,35453,39401,42013,44181,41038,44077,50757,52880,52944,56948,59262,61895,58283,61516,66098,59809,62699,64004,64518,65838,62352,66444,67006,67709,68911,64282,60217,68126,72165,69107,67553,68162,74282,71245
-2019F,VA,NGEIP,1438,1597,1592,1732,1928,2268,1738,2480,3471,4482,4276,4205,4510,4172,4689,496,484,1362,995,3557,2285,2180,3020,3330,3152,1528,847,1724,1096,3796,9773,15912,23799,40268,40647,44957,31519,19038,37808,41230,36700,33118,34936,35256,48784,66951,60321,90573,76983,94829,139755,142284,189848,171588,159155,243176,294524,311435,357021,409423
-2019F,VA,NGICP,22499,23212,25952,28657,32700,35526,54083,42136,42621,42495,44824,48496,53271,53598,51298,36595,32942,30300,33152,41543,54643,52592,50591,46630,47612,50777,48345,56003,53643,58186,75150,60289,69461,74069,86865,98795,85540,86594,94044,96660,78083,66872,76973,71198,75557,76490,74229,74879,67048,63184,68364,73353,79894,84406,87938,94514,95329,100604,103271,106788
-2019F,VA,NGRCP,26909,28500,31242,33236,34399,36307,40702,41495,43582,46663,49554,49488,55427,51618,48160,48802,52491,48953,54250,50999,54825,50997,48253,47318,51439,48752,51517,55421,58539,61712,51438,54199,62431,65472,65176,68712,76214,73905,63186,69189,79701,70249,75476,85330,82755,85355,71693,80957,79725,84445,88157,79301,70438,85702,92817,85464,77170,76904,89036,81831
-2019F,VA,NGTCP,66117,70564,77183,83003,89025,95650,121638,115887,121928,128748,136523,144014,155658,152848,143650,121320,123509,118020,134144,134088,158479,151737,150964,142944,143581,139458,141023,158897,163529,173726,184342,181112,212901,238480,252029,275783,260424,248981,260347,276811,268791,237853,258202,262969,277433,299746,274175,319913,299364,319136,375420,373444,410106,418507,419706,500478,543344,566666,634163,683156
-2019F,VA,NGTPP,16.6,17.2,18.5,19.4,20.4,21.7,27.3,25.7,26.8,27.9,29.3,30.3,32.3,31.2,28.9,24,24.1,22.7,25.5,25.3,29.5,27.9,27.5,25.7,25.4,24.4,24.3,26.8,27.1,28.4,29.7,28.7,33.2,36.6,38.2,41.3,38.6,36.5,37.7,39.5,37.8,33,35.4,35.7,37.1,39.6,35.7,41.3,38.2,40.3,46.8,46.1,50.1,50.7,50.5,59.8,64.5,66.9,74.5,79.8
-2019F,VA,NGTXP,64679,68967,75591,81271,87097,93382,119900,113407,118457,124266,132247,139809,151148,148676,138961,120824,123025,116658,133149,130531,156194,149557,147944,139614,140429,137930,140176,157173,162433,169930,174569,165200,189103,198212,211382,230826,228905,229943,222539,235581,232091,204735,223266,227714,228650,232795,213854,229340,222381,224307,235665,231160,220258,246919,260551,257302,248820,255231,277142,273733
-2019F,VA,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,448,6857,5953,8970,7740,9481,14098,7056,11466,17818,17420,18674,17045,22303,21215,18145,21037,14264,23820,23886,23334,22689,25429,25135,26286,27084,27234,28301,28321,25759,27346,24816,28315,27918,27594,27268,27931,28212,26572,25548,28723,29326,30221,28060,29732,30554,29252,29498
-2019F,VA,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,448,6857,5953,8970,7740,9481,14098,7056,11466,17818,17420,18674,17045,22303,21215,18145,21037,14264,23820,23886,23334,22689,25429,25135,26286,27084,27234,28301,28321,25759,27346,24816,28315,27918,27594,27268,27931,28212,26572,25548,28723,29326,30221,28060,29732,30554,29252,29498
-2019F,VA,OPICP,960,1010,1067,828,951,928,1009,942,995,1129,1094,1021,1026,1099,1117,1140,2179,2355,2236,2109,2019,1761,1655,1854,2105,1761,1307,1485,1515,1511,1490,1341,1373,1290,1312,1278,1598,1582,1654,1818,1522,1762,1866,1787,1553,775,1662,1737,1682,1440,427,406,349,517,544,524,510,1183,1128,1107
-2019F,VA,OPTCP,960,1010,1067,828,951,928,1009,942,995,1129,1094,1021,1026,1099,1117,1140,2179,2355,2236,2109,2019,1761,1655,1854,2105,1761,1307,1485,1515,1511,1490,1341,1373,1290,1312,1278,1598,1582,1654,1818,1522,1762,1866,1787,1553,775,1662,1737,1682,1440,427,406,349,517,544,524,510,1183,1128,1107
-2019F,VA,OPTXP,960,1010,1067,828,951,928,1009,942,995,1129,1094,1021,1026,1099,1117,1140,2179,2355,2236,2109,2019,1761,1655,1854,2105,1761,1307,1485,1515,1511,1490,1341,1373,1290,1312,1278,1598,1582,1654,1818,1522,1762,1866,1787,1553,775,1662,1737,1682,1440,427,406,349,517,544,524,510,1183,1128,1107
-2019F,VA,P1ICP,3931,4457,4355,4647,4953,5372,5870,4870,5268,5102,4767,5272,5324,5591,5425,4682,6154,6541,6971,6842,5917,5019,4602,5764,6772,6831,6797,6917,6209,6794,7184,6047,6141,6013,6283,6010,6166,6143,6614,7617,6401,6975,6178,6522,6821,6553,6847,6580,5358,5443,5048,5056,4551,3960,3975,4746,4594,4957,4583,4709
-2019F,VA,P1TCP,9512,10518,10734,11117,10826,11465,12265,11745,12240,11299,11043,11483,11361,9677,8478,7458,9191,9248,9419,9992,8113,6668,6327,7651,10738,11269,10041,9903,9697,9948,9095,8118,8147,8270,8268,8108,8569,8679,9746,10151,8968,9555,7835,8557,9124,8871,8670,8147,6306,6362,6197,5957,5319,4747,4862,5596,5455,5699,5331,5459
-2019F,VA,P1TXP,9512,10518,10734,11117,10826,11465,12265,11745,12240,11299,10187,10663,10315,9397,8478,7458,9191,9248,9419,9992,8113,6668,6327,7651,10738,11269,10041,9903,9697,9948,9095,8118,8147,8270,8268,8108,8569,8679,9746,10151,8968,9555,7835,8557,9124,8871,8670,8147,6306,6362,6197,5957,5319,4747,4862,5596,5455,5699,5331,5459
-2019F,VA,PAACP,51134,48195,49768,52310,54923,58877,61918,66777,69444,75150,79446,83920,86672,90105,86305,85436,89622,91968,94287,91833,87098,87015,83913,86482,87711,91313,96287,102986,108304,104728,105696,103120,102693,105316,107483,109575,110748,114264,116253,118509,124630,125618,126404,131305,141219,143515,147724,148820,138898,135353,141071,135347,137596,137725,139935,138265,139149,140632,143312,144369
-2019F,VA,PACCP,2135,2241,2326,2548,2468,2567,2733,2841,2936,2700,2989,3047,3240,3422,3079,3075,3223,3440,3055,3873,3018,2814,2837,4477,5001,4489,5204,5319,4773,4332,4390,3879,3812,3876,3983,4269,5169,4807,4680,4548,5369,4700,3811,5371,5022,4642,4090,3557,3143,2839,3135,2864,3235,3322,3704,5665,5680,5808,6084,6039
-2019F,VA,PAEIP,136,147,185,174,215,178,225,292,370,9409,18662,22593,26815,26345,28410,27364,25954,28766,27614,25025,15379,6876,3324,2724,2626,1641,4909,4599,4357,6800,1973,3339,2619,3689,4217,2260,1698,3468,4414,5028,4339,7985,5675,9161,8157,6862,1312,3281,1978,1744,2160,837,600,521,2103,1902,976,816,1584,403
-2019F,VA,PAICP,12961,12887,13261,14547,14946,16241,15654,13676,15746,15030,14687,17521,19021,20834,19427,17064,19434,21362,18653,19729,16282,12964,12779,12649,15863,16021,16530,16318,16261,16229,15893,14405,14426,14423,14041,13504,14437,15477,14735,15301,15639,15741,14553,17064,18532,18947,18032,17487,15654,11654,10570,10204,9840,9267,9229,9478,9412,9270,8754,9107
-2019F,VA,PARCP,11783,12719,13142,13866,12728,13257,14387,15479,15987,14891,15462,15245,15081,14376,12550,12440,13117,13516,11916,16487,10030,7643,7168,7867,11008,10844,10982,11313,12089,10984,8988,8560,8855,8758,8743,8762,9954,9644,9247,8924,10219,9500,8353,9711,10382,10010,8214,8012,7398,6827,7001,6266,4807,5594,5614,5534,4560,4177,5192,5025
-2019F,VA,PATCP,78148,76190,78682,83445,85281,91120,94917,99065,104482,117181,131246,142325,150829,155082,149770,145379,151350,159051,155525,156947,131808,117313,110020,114200,122210,124308,133912,140535,145784,143074,136940,133304,132405,136063,138468,138371,142007,147660,149328,152310,160196,163545,158795,172612,183312,183975,179372,181158,167071,158416,163937,155518,156079,156429,160585,160844,159778,160703,164925,164943
-2019F,VA,PATPP,19.6,18.6,18.8,19.5,19.6,20.7,21.3,22,22.9,25.4,28.2,30,31.3,31.6,30.1,28.8,29.5,30.6,29.5,29.6,24.6,21.5,20,20.5,21.7,21.8,23,23.7,24.1,23.4,22,21.2,20.6,20.9,21,20.7,21,21.6,21.6,21.8,22.5,22.7,21.8,23.4,24.5,24.3,23.4,23.4,21.3,20,20.4,19.2,19.1,18.9,19.3,19.2,19,19,19.4,19.3
-2019F,VA,PATXP,78012,76043,78497,83271,85065,90943,94692,98772,104113,107772,112584,119732,124014,128737,121361,118015,125396,130285,127911,131923,116429,110436,106696,111476,119583,122667,129002,135935,141426,136274,134966,129965,129786,132373,134251,136110,140309,144192,144914,147282,155857,155560,153120,163451,175155,177114,178060,177877,165093,156672,161778,154681,155479,155908,158482,158942,158801,159887,163341,164540
-2019F,VA,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,PCEIP,0,0,0,0,0,0,0,0,0,0,856,820,1046,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,PCICP,744,744,850,940,883,927,952,932,805,804,739,753,734,692,661,740,687,631,617,632,591,280,379,594,424,447,481,476,532,519,487,493,559,537,515,559,541,572,511,527,498,494,486,508,526,518,444,470,479,537,401,0,0,0,0,0,0,0,0,0
-2019F,VA,PCTCP,744,744,850,940,883,927,952,932,805,804,1595,1573,1780,972,661,740,687,631,617,632,591,280,379,594,424,447,481,476,532,519,487,493,559,537,515,559,541,572,511,527,498,494,486,508,526,518,444,470,479,537,401,0,0,0,0,0,0,0,0,0
-2019F,VA,PCTXP,744,744,850,940,883,927,952,932,805,804,739,753,734,692,661,740,687,631,617,632,591,280,379,594,424,447,481,476,532,519,487,493,559,537,515,559,541,572,511,527,498,494,486,508,526,518,444,470,479,537,401,0,0,0,0,0,0,0,0,0
-2019F,VA,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49,47,50,44,25,24,26,22,24,23
-2019F,VA,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1513,1568,1414,1836,1981,1817,1898,1970,1948,1829
-2019F,VA,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,657,662,653,802,924,996,904,855,831,673
-2019F,VA,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3455,3289,2642,3160,3054,3201,2735,2565,3156,3313
-2019F,VA,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5673,5566,4760,5842,5985,6038,5563,5413,5959,5839
-2019F,VA,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5673,5566,4760,5842,5985,6038,5563,5413,5959,5839
-2019F,VA,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VA,RFACP,11780,9506,8419,8532,9239,9645,9727,10984,9462,9835,12000,11832,11043,9397,7300,6356,5873,4628,4292,4437,4419,4202,3057,2511,2267,3419,3003,2756,2793,2588,3316,3758,2840,2365,1948,1923,1217,1453,1258,1220,4225,1048,838,1566,1829,1930,1695,1327,991,598,809,1091,1069,653,537,257,461,785,258,213
-2019F,VA,RFCCP,175,146,139,166,181,211,162,118,134,105,118,211,267,313,298,245,266,296,220,206,443,380,518,484,661,443,975,991,404,209,218,114,222,180,155,205,253,128,112,182,431,282,74,405,316,83,37,18,20,22,29,12,6,4,4,0,0,0,1,0
-2019F,VA,RFEIP,130,141,177,167,207,170,216,280,355,9023,17085,21203,24625,25121,26863,26741,24948,27173,26522,24298,14586,6272,2999,2447,2316,1301,4635,4276,4021,6192,1421,2810,2041,3256,3348,1577,822,1209,3950,4387,3373,6549,5136,6602,6934,5456,851,2166,1223,746,1225,369,247,177,582,900,388,209,415,140
-2019F,VA,RFICP,5739,4654,4525,5261,5758,6754,5264,4072,4888,4026,4170,7282,8844,9982,9434,7611,8386,9205,6672,6365,5203,2736,2803,2686,3667,3408,3790,2822,2859,2886,2853,2476,2913,2710,2461,1777,1790,2412,2012,1704,1867,1220,686,2092,2446,2406,1126,1631,2005,1625,1476,1022,855,553,274,326,349,105,40,253
-2019F,VA,RFTCP,17825,14447,13260,14126,15385,16780,15370,15455,14838,22989,33373,40527,44778,44813,43895,40953,39473,41301,37705,35306,24651,13590,9377,8128,8911,8571,12403,10845,10077,11876,7807,9158,8016,8509,7913,5482,4082,5202,7332,7492,9895,9099,6734,10664,11525,9875,3709,5143,4239,2990,3538,2494,2176,1387,1397,1483,1198,1098,715,606
-2019F,VA,RFTXP,17695,14306,13082,13959,15178,16610,15154,15174,14484,13966,16288,19324,20154,19692,17032,14212,14524,14128,11183,11008,10065,7318,6377,5681,6595,7270,7768,6569,6056,5683,6386,6348,5975,5254,4564,3905,3260,3993,3382,3105,6522,2551,1597,4063,4591,4419,2858,2977,3016,2244,2313,2124,1929,1210,815,583,810,889,299,466
-2019F,VA,SGICP,495,494,507,489,491,462,567,546,564,694,666,614,610,659,634,625,604,604,618,604,580,656,690,671,699,738,836,834,894,936,931,939,865,859,843,897,895,880,874,874,883,882,866,895,888,0,904,940,913,954,0,0,0,0,0,0,0,0,0,0
-2019F,VA,SNICP,0,0,0,0,124,134,156,130,139,153,162,233,249,252,250,215,235,245,294,298,287,840,782,919,1229,945,691,770,606,571,569,254,302,302,234,205,358,347,516,699,468,491,640,503,319,391,468,522,567,309,174,151,98,317,336,314,296,695,638,663
-2019F,VA,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,8,8,11,13,16,24,23,38
-2019F,VA,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,313,763,947
-2019F,VA,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2
-2019F,VA,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,5,6,8,11,16,25,41,58,93
-2019F,VA,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,7,14,16,22,30,62,379,845,1081
-2019F,VA,TPOPP,3986,4095,4180,4276,4357,4411,4456,4508,4558,4614,4659,4751,4824,4901,4971,5047,5122,5193,5270,5308,5368,5444,5493,5565,5644,5715,5812,5932,6037,6120,6217,6301,6414,6510,6593,6671,6751,6829,6901,7000,7106,7198,7287,7367,7476,7577,7674,7751,7833,7926,8024,8102,8187,8256,8315,8367,8418,8471,8511,8557
-2019F,VA,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-168,-204,-116,-200,-214,-216,-221,-174,-249,-240,-305,-218,-245,-168,-209,-72,-64,-197,-180,-252,-47,-83,-30,-45,0,42,41,-34,-53,0,0,0,0,0,0,0,0,0,0
-2019F,VA,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,WXICP,31,31,28,27,25,27,14,14,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,164,177,179,179,198,178,173,153,135,144,127,123,122,124,69,58,51,32,45,40,41,30,27,23,24,20,24,20
-2019F,VA,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VA,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,ARICP,224,234,234,204,157,171,324,295,331,280,271,295,122,109,99,28,27,33,18,75,43,49,74,63,226,330,419,491,396,453,27,527,335,31,230,253,290,792,162,174,166,297,175,93,464,145,124,324,39,603,752,707,698,754,710,696,581,671,575,497
-2019F,VT,ARTCP,224,234,234,204,157,171,324,295,331,280,271,295,122,109,99,28,27,33,18,75,43,49,74,63,226,330,419,491,396,453,27,527,335,31,230,253,290,792,162,174,166,297,175,93,464,145,124,324,39,603,752,707,698,754,710,696,581,671,575,497
-2019F,VT,ARTXP,224,234,234,204,157,171,324,295,331,280,271,295,122,109,99,28,27,33,18,75,43,49,74,63,226,330,419,491,396,453,27,527,335,31,230,253,290,792,162,174,166,297,175,93,464,145,124,324,39,603,752,707,698,754,710,696,581,671,575,497
-2019F,VT,AVACP,19,15,28,30,24,25,24,21,17,15,14,12,11,12,8,11,9,8,6,4,25,16,19,25,17,22,27,21,17,17,15,15,15,12,11,12,10,12,10,12,40,44,10,9,21,26,16,16,10,11,9,8,8,7,4,7,7,7,9,9
-2019F,VT,AVTCP,19,15,28,30,24,25,24,21,17,15,14,12,11,12,8,11,9,8,6,4,25,16,19,25,17,22,27,21,17,17,15,15,15,12,11,12,10,12,10,12,40,44,10,9,21,26,16,16,10,11,9,8,8,7,4,7,7,7,9,9
-2019F,VT,AVTXP,19,15,28,30,24,25,24,21,17,15,14,12,11,12,8,11,9,8,6,4,25,16,19,25,17,22,27,21,17,17,15,15,15,12,11,12,10,12,10,12,40,44,10,9,21,26,16,16,10,11,9,8,8,7,4,7,7,7,9,9
-2019F,VT,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,6,5,6,4,15,12,59,56,71,120,126,65,53
-2019F,VT,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,6,5,6,4,15,12,59,56,71,120,126,65,53
-2019F,VT,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,CLACP,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,CLCCP,31,28,25,24,23,21,17,16,15,13,13,14,12,13,13,11,10,10,9,7,9,20,12,12,12,36,8,8,6,3,6,4,5,5,4,3,1,2,2,2,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,CLEIP,19,39,19,48,38,43,32,34,31,42,55,47,32,35,37,13,9,12,7,13,9,14,31,28,37,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,CLICP,41,42,39,25,15,14,13,10,8,8,3,4,2,3,4,2,1,3,1,2,2,3,4,4,3,6,3,2,3,5,1,7,14,0,0,0,0,107,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,CLOCP,41,42,39,25,15,14,13,10,8,8,3,4,2,3,4,2,1,3,1,2,2,3,4,4,3,6,3,2,3,5,1,7,14,0,0,0,0,107,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,CLRCP,45,41,35,33,32,27,23,21,19,17,16,14,9,8,6,5,4,4,3,2,2,4,3,2,3,10,3,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,CLTCP,137,150,117,130,107,105,86,81,74,81,87,79,56,59,60,31,24,29,19,24,22,42,50,46,55,80,26,12,11,9,8,12,20,6,5,3,2,110,2,82,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,CLTXP,118,111,99,82,69,62,54,47,43,39,32,32,23,24,23,18,16,17,13,11,13,28,19,18,18,52,14,12,11,9,8,12,20,6,5,3,2,110,2,82,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,DFACP,254,166,163,121,161,185,191,206,205,210,346,300,361,530,513,504,583,897,706,910,757,772,362,708,860,977,1023,1316,1394,1153,1043,1063,1437,1652,1681,1981,2227,1809,1784,2006,1245,1690,1518,1565,1498,1506,1636,1589,1464,1548,1709,1691,1661,1694,1664,1856,1906,1792,1754,1661
-2019F,VT,DFCCP,418,489,540,572,538,636,707,721,748,795,792,746,815,837,693,634,747,684,700,659,620,554,507,423,497,591,599,745,791,803,669,810,948,796,856,692,795,850,938,946,1040,1009,865,971,1036,858,812,766,561,701,668,647,527,567,619,826,576,555,548,558
-2019F,VT,DFEIP,8,13,7,14,16,38,77,96,172,141,268,256,58,119,60,38,24,17,20,28,45,17,16,16,31,34,46,71,75,50,8,15,8,17,23,39,16,31,107,64,159,87,31,57,45,12,8,9,6,3,5,7,2,8,8,5,8,15,8,3
-2019F,VT,DFICP,234,270,275,292,280,316,375,390,429,447,463,440,451,469,417,364,459,418,430,668,501,468,420,288,339,500,561,543,661,558,554,517,591,545,386,328,326,345,379,409,381,366,338,445,586,560,509,396,519,533,551,678,608,497,539,521,550,591,603,619
-2019F,VT,DFRCP,2044,2391,2641,2797,2633,3110,3457,3527,3658,3887,3873,3649,3988,4093,3388,3101,3656,3345,3423,3222,2171,2008,1395,2004,2357,2482,2060,2143,2222,2405,2293,2357,2547,2529,2412,2321,2368,2309,2008,2016,2450,2220,2114,2371,2696,2257,2119,2157,1869,2022,1675,1769,1428,1622,1767,1885,1738,1784,1831,1996
-2019F,VT,DFTCP,2958,3329,3626,3795,3628,4285,4807,4940,5212,5480,5741,5391,5674,6047,5071,4642,5470,5360,5280,5486,4095,3819,2699,3439,4085,4583,4289,4817,5144,4969,4566,4762,5532,5539,5358,5361,5732,5344,5215,5441,5276,5371,4866,5408,5861,5194,5085,4917,4420,4807,4607,4791,4227,4388,4597,5092,4777,4737,4744,4838
-2019F,VT,DFTXP,2949,3316,3619,3781,3612,4247,4730,4844,5040,5339,5474,5136,5616,5928,5011,4603,5446,5343,5260,5458,4050,3802,2683,3423,4053,4550,4243,4747,5068,4919,4558,4747,5523,5523,5335,5322,5716,5313,5108,5377,5116,5284,4835,5351,5816,5181,5077,4909,4414,4804,4602,4785,4225,4380,4589,5087,4769,4722,4736,4835
-2019F,VT,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,47,337,99,328,670,500,443,440,288,120,67,165,362,0,0,26,14,38,80,116,41,41,32,2,16,4,25,13,7,9,6,0
-2019F,VT,ELIMP,65,67,6,25,47,41,20,19,30,26,50,68,84,54,77,75,68,83,108,146,187,184,199,197,239,321,1705,2277,2868,2292,1809,2032,2741,3100,3487,4394,3805,4093,3928,7837,4280,2999,2433,1942,1952,2160,2509,2604,2534,2605,2458,2524,11515,11742,11182,10804,8962,10345,9726,14134
-2019F,VT,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1591,-1823,-1381,-1593,-2978,-3369,-2982,-3700,-2817,-7161,-3899,-2263,-1624,-1984,-1050,-1281,-3065,-1969,-3132,-3949,-3037,-3365,-12203,-12648,-12251,-6888,-4990,-6718,-6043,-10688
-2019F,VT,ELNIP,64,67,6,25,47,41,20,19,30,26,50,68,84,54,77,75,68,83,108,146,187,184,199,197,239,321,1671,2277,2821,1955,1710,1704,2071,2600,3043,3954,3517,3974,3861,7672,3917,2999,2433,1916,1938,2121,2429,2488,2493,2563,2426,2522,11499,11739,11157,10791,8955,10336,9720,14133
-2019F,VT,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,66,96,502,737,671,674,698,712,687,662,678,694,656,696
-2019F,VT,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,12,13,13,14,14
-2019F,VT,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,7,11,13,13,12,12,12,9,9,9,9,9
-2019F,VT,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,68,98,510,749,685,688,711,725,699,683,699,716,679,719
-2019F,VT,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,ESCCP,233,243,245,261,281,303,328,457,494,549,609,677,747,766,740,709,753,782,809,885,923,851,890,935,927,959,995,1424,1499,1537,1526,1531,1574,1614,1622,1647,1696,1759,1878,1941,1956,1968,1991,1881,1978,2051,2027,2059,2043,1991,2021,2009,1994,2017,2031,2011,2014,1977,2004,1934
-2019F,VT,ESICP,191,202,256,268,300,352,413,596,632,720,787,856,954,1003,947,858,1253,994,1114,1168,1247,1172,1152,1210,1450,1518,1576,1264,1345,1373,1381,1390,1440,1431,1435,1484,1537,1561,1534,1587,1646,1608,1592,1460,1577,1644,1626,1635,1565,1383,1446,1417,1422,1446,1418,1422,1446,1424,1411,1412
-2019F,VT,ESRCP,451,487,528,577,618,678,760,820,933,1076,1216,1360,1496,1515,1496,1427,1485,1466,1529,1698,1781,1707,1738,1766,1849,1538,1156,1409,1572,1664,1809,1783,1927,1971,2009,1973,2006,1992,1951,1999,2037,2009,2047,2011,2109,2189,2142,2170,2133,2122,2128,2125,2095,2125,2121,2089,2056,2023,2116,2082
-2019F,VT,ESRPP,1158,1248,1344,1453,1549,1679,1841,1938,2169,2463,2727,2993,3231,3234,3164,2975,3062,2981,3070,3360,3475,3312,3348,3375,3511,2901,2165,2608,2859,2983,3202,3137,3365,3412,3442,3350,3379,3336,3250,3305,3341,3282,3326,3255,3403,3523,3439,3480,3418,3396,3400,3387,3345,3392,3390,3338,3294,3237,3387,3336
-2019F,VT,ESTCP,875,931,1029,1105,1199,1333,1501,1872,2059,2346,2612,2893,3197,3284,3184,2995,3491,3242,3452,3751,3951,3731,3780,3911,4226,4015,3727,4097,4416,4573,4716,4704,4941,5016,5067,5104,5239,5312,5363,5527,5639,5585,5629,5352,5664,5883,5795,5864,5741,5497,5595,5550,5511,5588,5570,5521,5516,5424,5531,5428
-2019F,VT,ESTPP,2248,2388,2619,2784,3005,3300,3635,4427,4789,5367,5856,6368,6904,7010,6732,6243,7200,6591,6930,7422,7709,7236,7282,7473,8024,7575,6979,7583,8032,8200,8350,8274,8627,8681,8678,8666,8825,8895,8933,9141,9249,9123,9147,8663,9136,9470,9303,9405,9198,8797,8939,8849,8798,8917,8902,8822,8835,8676,8852,8698
-2019F,VT,ESTXP,875,931,1029,1105,1199,1333,1501,1872,2059,2346,2612,2893,3197,3284,3184,2995,3491,3242,3452,3751,3951,3731,3780,3911,4226,4015,3727,4097,4416,4573,4716,4704,4941,5016,5067,5104,5239,5312,5363,5527,5639,5585,5629,5352,5664,5883,5795,5864,5741,5497,5595,5550,5511,5588,5570,5521,5516,5424,5531,5428
-2019F,VT,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,FSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,HLACP,0,0,0,1,0,1,1,2,1,2,3,4,2,1,1,1,2,2,20,2,2,21,6,7,17,13,10,11,11,11,11,11,11,8,21,15,16,17,0,2,0,0,0,4,5,8,8,4,29,5,4,3,6,2,4,4,3,1,1,2
-2019F,VT,HLCCP,96,99,93,90,133,117,110,98,128,138,132,144,174,171,180,206,231,220,238,120,132,141,154,183,186,223,225,283,336,430,411,440,528,446,455,453,511,455,514,503,487,668,669,524,625,511,516,642,778,766,736,826,971,996,1045,1094,896,548,907,796
-2019F,VT,HLICP,99,114,124,67,54,77,134,155,176,148,121,130,145,141,128,179,212,245,425,158,245,157,366,277,39,70,143,191,79,128,85,226,226,217,199,220,196,77,144,19,223,303,229,139,145,259,411,220,165,91,72,73,68,107,86,76,54,125,78,43
-2019F,VT,HLRCP,208,214,203,195,289,255,239,213,278,299,287,313,378,372,392,447,502,479,517,261,287,307,335,399,404,484,490,616,731,935,894,957,1148,970,989,985,1111,990,1118,1093,1059,1454,1454,1200,1212,1456,1354,1286,1291,1561,1541,1289,1308,1568,1660,1609,1447,1673,1849,1839
-2019F,VT,HLTCP,404,427,420,352,476,450,485,468,582,587,542,590,698,685,703,833,946,946,1199,541,666,626,862,866,646,791,867,1101,1156,1504,1401,1634,1912,1641,1663,1673,1834,1540,1777,1617,1769,2425,2352,1867,1987,2234,2288,2152,2263,2423,2353,2191,2353,2673,2795,2783,2399,2348,2835,2679
-2019F,VT,HLTXP,404,427,420,352,476,450,485,468,582,587,542,590,698,685,703,833,946,946,1199,541,666,626,862,866,646,791,867,1101,1156,1504,1401,1634,1912,1641,1663,1673,1834,1540,1777,1617,1769,2425,2352,1867,1987,2234,2288,2152,2263,2423,2353,2191,2353,2673,2795,2783,2399,2348,2835,2679
-2019F,VT,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,HYEGP,809,708,737,635,614,661,775,755,733,841,724,683,873,995,920,871,1015,887,804,857,743,933,776,936,879,852,974,925,809,1029,1348,1035,904,959,1018,954,1216,1046,1170,1175,1201,868,1099,1148,1166,1190,1497,645,1472,1461,1322,1401,1128,1286,1175,1139,1078,1280,1268,1337
-2019F,VT,HYICP,64,64,61,55,50,53,65,60,57,63,62,59,69,65,71,67,74,72,70,73,70,70,70,70,70,70,70,70,70,18,17,18,18,23,21,18,16,22,24,20,20,16,16,6,21,21,22,2,21,25,25,24,23,0,0,0,0,0,0,0
-2019F,VT,HYTCP,873,772,799,690,664,714,840,815,790,904,786,742,942,1059,991,938,1090,958,874,930,813,1003,846,1006,949,922,1044,995,879,1047,1365,1053,921,981,1039,973,1231,1067,1194,1196,1221,884,1115,1154,1187,1211,1519,647,1493,1486,1347,1425,1151,1286,1175,1139,1078,1280,1268,1337
-2019F,VT,HYTXP,64,64,61,55,50,53,65,60,57,63,62,59,69,65,71,67,74,72,70,73,70,70,70,70,70,70,70,70,70,18,17,18,18,23,21,18,16,22,24,20,20,16,16,6,21,21,22,2,21,25,25,24,23,0,0,0,0,0,0,0
-2019F,VT,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,JFACP,82,83,89,99,94,79,93,117,127,120,121,112,123,124,127,129,116,125,134,168,137,75,84,106,173,201,133,181,143,220,180,162,116,124,138,127,99,106,121,143,144,120,65,68,309,423,376,317,266,512,139,141,134,131,135,147,140,136,148,170
-2019F,VT,JFTCP,82,83,89,99,94,79,93,117,127,120,121,112,255,219,204,177,142,137,134,172,155,82,91,106,173,201,133,181,143,220,180,162,116,124,138,127,99,106,121,143,144,120,65,68,309,423,376,317,266,512,139,141,134,131,135,147,140,136,148,170
-2019F,VT,JFTXP,82,83,89,99,94,79,93,117,127,120,121,112,123,124,127,129,116,125,134,168,137,75,84,106,173,201,133,181,143,220,180,162,116,124,138,127,99,106,121,143,144,120,65,68,309,423,376,317,266,512,139,141,134,131,135,147,140,136,148,170
-2019F,VT,KSCCP,43,52,47,39,30,40,33,42,47,37,27,27,25,21,18,15,18,18,16,20,44,26,26,9,14,36,60,33,63,58,12,15,14,34,19,14,13,21,32,35,23,35,16,21,34,31,26,27,6,14,8,9,3,3,6,5,6,4,3,6
-2019F,VT,KSICP,75,123,83,68,50,71,73,83,88,63,39,39,78,65,63,68,67,42,47,43,9,9,7,34,40,26,30,33,84,27,17,11,6,8,12,10,22,23,151,58,95,46,15,71,59,51,12,14,7,8,12,7,16,6,15,3,6,4,3,3
-2019F,VT,KSRCP,701,846,768,637,490,649,537,679,763,598,436,436,401,341,295,235,289,284,263,324,230,177,154,215,435,514,291,251,308,278,193,248,210,235,183,180,203,238,326,262,326,320,186,276,400,381,355,248,109,168,150,104,51,50,79,65,86,60,58,67
-2019F,VT,KSTCP,819,1022,899,744,570,760,643,804,898,698,502,502,503,427,376,317,373,343,326,387,283,212,187,258,490,577,380,316,455,362,223,274,230,277,213,204,239,282,509,355,444,401,218,369,492,464,393,289,122,190,170,120,69,59,100,73,97,68,65,76
-2019F,VT,KSTXP,819,1022,899,744,570,760,643,804,898,698,502,502,503,427,376,317,373,343,326,387,283,212,187,258,490,577,380,316,455,362,223,274,230,277,213,204,239,282,509,355,444,401,218,369,492,464,393,289,122,190,170,120,69,59,100,73,97,68,65,76
-2019F,VT,LUACP,68,66,49,49,52,44,46,43,47,48,49,46,49,49,47,45,50,52,56,58,52,50,45,48,51,47,46,52,50,52,53,48,49,49,52,51,49,52,55,55,54,50,49,45,46,46,45,46,43,38,50,47,43,45,45,51,48,44,39,38
-2019F,VT,LUICP,2,2,16,16,17,19,20,16,18,17,17,12,12,11,11,10,12,15,16,17,15,15,13,14,15,14,14,15,15,15,16,14,14,14,15,15,14,15,16,16,16,15,14,13,13,13,13,13,13,11,33,29,25,26,25,27,26,24,22,19
-2019F,VT,LUTCP,70,68,66,66,69,63,65,59,65,65,66,57,61,60,58,56,62,67,72,76,67,64,59,62,66,61,60,68,65,67,69,62,63,64,67,66,64,67,70,71,70,64,64,59,59,59,58,60,55,50,83,77,68,71,71,78,74,68,61,58
-2019F,VT,LUTXP,70,68,66,66,69,63,65,59,65,65,66,57,61,60,58,56,62,67,72,76,67,64,59,62,66,61,60,68,65,67,69,62,63,64,67,66,64,67,70,71,70,64,64,59,59,59,58,60,55,50,83,77,68,71,71,78,74,68,61,58
-2019F,VT,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,MGACP,3205,3237,3339,3433,3460,3665,3919,4191,4444,4631,4985,5250,5593,5666,5550,5591,5914,6033,6228,5759,5386,5459,5479,5511,5716,5656,5806,6369,6635,6391,6574,6656,6756,7014,7064,7116,7234,7504,7428,7610,8309,7844,7978,8088,8164,8166,8135,8149,7865,7843,7710,7463,7276,7413,7335,7191,7186,7167,6587,7022
-2019F,VT,MGCCP,127,49,107,115,23,24,24,24,24,24,25,24,25,27,26,30,31,31,32,32,33,36,37,58,36,40,40,41,38,36,41,27,33,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,131,133,135,140,141
-2019F,VT,MGICP,0,80,0,0,95,100,98,95,78,70,68,57,59,70,50,77,69,61,49,38,19,12,13,10,68,117,120,120,123,127,81,88,90,76,84,89,90,95,76,82,79,170,179,210,237,235,264,198,115,114,149,149,127,129,124,95,91,92,93,90
-2019F,VT,MGTCP,3332,3365,3447,3547,3577,3789,4041,4310,4546,4725,5077,5331,5677,5763,5626,5698,6013,6125,6309,5830,5437,5506,5529,5579,5821,5813,5966,6530,6797,6554,6696,6772,6879,7096,7154,7211,7331,7606,7510,7699,8394,8021,8164,8304,8407,8408,8406,8354,7987,7964,7866,7618,7409,7549,7465,7417,7410,7394,6819,7253
-2019F,VT,MGTXP,3332,3365,3447,3547,3577,3789,4041,4310,4546,4725,5077,5331,5677,5763,5626,5698,6013,6125,6309,5830,5437,5506,5529,5579,5821,5813,5966,6530,6797,6554,6696,6772,6879,7096,7154,7211,7331,7606,7510,7699,8394,8021,8164,8304,8407,8408,8406,8354,7987,7964,7866,7618,7409,7549,7465,7417,7410,7394,6819,7253
-2019F,VT,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,NGACP,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,5,5,0,0,5,5,3,12,15,15,24,31,164,9,9,16,14,15,15,15,15,15,16,16,18,17,56,117,92,127,139,139,8,10,3
-2019F,VT,NGCCP,0,0,0,0,0,0,223,333,284,398,547,613,625,565,585,770,752,759,886,996,828,831,853,856,1467,1575,1688,1833,1941,2081,2049,2058,2319,2382,2669,2672,2825,3051,2979,2309,2595,2473,2470,2757,2724,2610,2374,2631,2495,2483,2384,2479,2314,4748,4830,5918,6251,6205,7356,7341
-2019F,VT,NGEIP,0,0,0,0,0,0,0,0,0,0,0,22,602,605,1266,555,64,440,39,534,239,193,107,220,272,95,3,0,0,37,685,1091,801,268,166,138,24,36,188,250,1023,116,37,30,51,32,31,26,38,64,55,49,38,44,36,19,14,12,11,12
-2019F,VT,NGICP,0,0,0,0,0,0,0,227,666,935,1067,1295,1361,1812,1661,1532,1633,1645,1677,1706,1623,2069,2128,2026,1771,1867,1728,1684,1741,1901,1878,1717,1958,2045,2023,2159,1953,2334,2105,2901,3949,2597,3085,2479,2784,2628,2762,2987,3000,2890,2909,2812,2711,1303,1858,2040,2172,2191,2284,2370
-2019F,VT,NGRCP,0,0,0,0,0,0,675,793,714,982,1049,1118,1207,1205,1235,1116,1222,1149,1177,1118,1301,1290,1278,1252,1352,1456,1595,1663,1868,2126,2150,2203,2520,2530,2438,2299,2523,2631,2454,2565,2843,2719,2761,3118,3112,3088,2874,3207,3075,3183,3078,3214,3012,3415,3826,3833,3518,3509,4081,4139
-2019F,VT,NGTCP,0,0,0,0,0,0,898,1362,1664,2315,2663,3048,3795,4187,4747,3973,3671,3993,3779,4354,3991,4383,4370,4359,4868,4998,5019,5180,5550,6150,6766,7072,7611,7240,7312,7292,7355,8216,7735,8033,10427,7919,8367,8400,8685,8372,8056,8867,8624,8638,8443,8610,8192,9602,10677,11949,12094,11925,13742,13865
-2019F,VT,NGTPP,0,0,0,0,0,0,2.2,3.2,3.9,5.3,6,6.7,8.2,8.9,10,8.3,7.6,8.1,7.6,8.6,7.8,8.5,8.4,8.3,9.2,9.4,9.4,9.6,10.1,11,12,12.4,13.3,12.5,12.5,12.4,12.4,13.8,12.9,13.3,17.1,12.9,13.6,13.6,14,13.5,12.9,14.2,13.8,13.8,13.5,13.7,13.1,15.3,17.1,19.1,19.4,19.1,22,22.2
-2019F,VT,NGTXP,0,0,0,0,0,0,898,1362,1664,2315,2663,3026,3193,3582,3481,3418,3607,3553,3740,3820,3752,4190,4263,4139,4596,4903,5016,5180,5550,6113,6081,5981,6810,6972,7145,7154,7331,8180,7547,7783,9403,7803,8330,8370,8635,8340,8025,8841,8586,8574,8388,8561,8154,9558,10641,11930,12080,11913,13731,13853
-2019F,VT,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,169,1598,2483,3561,3260,3538,3241,3449,2979,3569,4174,2870,3336,2999,2058,3536,4114,3607,3616,4108,3735,3372,4316,3859,3799,4267,3358,4059,4548,4171,3963,4444,3858,4072,5107,4704,4895,5361,4782,4907,4989,4846,5061,0,0,0,0,0
-2019F,VT,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,169,1598,2483,3561,3260,3538,3241,3449,2979,3569,4174,2870,3336,2999,2058,3536,4114,3607,3616,4108,3735,3372,4316,3859,3799,4267,3358,4059,4548,4171,3963,4444,3858,4072,5107,4704,4895,5361,4782,4907,4989,4846,5061,0,0,0,0,0
-2019F,VT,OPICP,46,45,41,39,37,39,38,38,43,45,45,78,80,103,101,90,108,90,93,91,89,87,68,74,74,75,81,87,88,87,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,36,34,32,37,34,35
-2019F,VT,OPTCP,46,45,41,39,37,39,38,38,43,45,45,78,80,103,101,90,108,90,93,91,89,87,68,74,74,75,81,87,88,87,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,36,34,32,37,34,35
-2019F,VT,OPTXP,46,45,41,39,37,39,38,38,43,45,45,78,80,103,101,90,108,90,93,91,89,87,68,74,74,75,81,87,88,87,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,36,34,32,37,34,35
-2019F,VT,P1ICP,346,404,375,327,260,301,454,432,479,404,372,423,293,289,274,196,213,181,174,227,156,160,162,186,355,445,543,626,584,582,146,552,356,53,257,278,327,830,329,248,277,358,205,178,537,210,149,352,59,622,798,743,739,819,786,760,644,736,634,555
-2019F,VT,P1TCP,1178,1385,1266,1082,856,1059,1094,1216,1354,1103,898,944,778,711,643,502,579,542,515,633,506,430,407,482,872,1065,967,983,1022,986,419,878,643,384,522,535,603,1153,752,612,721,806,466,530,1037,693,591,689,227,854,1015,912,844,924,921,888,791,851,744,674
-2019F,VT,P1TXP,1178,1385,1266,1082,856,1059,1094,1216,1354,1103,898,944,778,711,643,502,579,542,515,633,506,430,407,482,872,1065,967,983,1022,986,419,878,643,384,522,535,603,1153,752,612,721,806,466,530,1037,693,591,689,227,854,1015,912,844,924,921,888,791,851,744,674
-2019F,VT,PAACP,3629,3568,3675,3732,3812,4000,4281,4583,4841,5030,5519,5725,6141,6384,6249,6284,6674,7117,7150,6901,6359,6394,5995,6405,6834,6916,7044,7952,8251,7851,7878,7958,8387,8860,8967,9302,9636,9501,9398,9828,9793,9748,9621,9779,10042,10174,10216,10122,9677,9957,9622,9353,9128,9292,9187,9256,9295,9155,8539,8902
-2019F,VT,PACCP,909,928,1064,1080,882,1239,1324,1076,1116,1252,1390,1363,1474,1461,1162,1257,1608,1483,1444,989,1065,910,839,721,799,914,1059,1193,1289,1410,1253,1424,1629,1454,1422,1236,1399,1443,1597,1561,1659,1811,1677,1674,1848,1552,1491,1529,1461,1576,1477,1541,1544,1610,1701,2073,1629,1269,1609,1507
-2019F,VT,PAEIP,9,14,7,15,17,42,84,105,187,153,291,274,207,218,138,87,66,46,29,43,63,24,23,16,31,34,46,71,75,50,8,15,8,17,23,39,16,31,107,64,159,87,31,57,45,12,8,9,7,4,5,7,3,8,8,5,8,15,8,3
-2019F,VT,PAICP,931,1140,1087,987,876,1278,1581,1300,1374,1366,1489,1524,1438,1427,1147,1237,1605,1498,1589,1267,1155,991,1205,1031,1171,1230,1703,1723,1624,1496,981,1514,1430,1193,1121,1058,1149,1560,1095,908,1166,1344,1083,1112,1656,1419,1463,1318,976,1466,1667,1739,1598,1642,1596,1479,1352,1560,1425,1324
-2019F,VT,PARCP,2953,3452,3612,3629,3412,4014,4234,4418,4700,4785,4596,4398,4767,4805,4076,3783,4447,4107,4203,3807,2688,2492,1884,2618,3196,3481,2841,3010,3260,3618,3380,3562,3905,3734,3584,3487,3682,3538,3452,3371,3836,3994,3754,3847,4308,4094,3828,3691,3269,3752,3366,3162,2788,3240,3507,3559,3271,3518,3738,3902
-2019F,VT,PATCP,8431,9102,9445,9442,8999,10572,11502,11481,12217,12586,13285,13285,14026,14295,12772,12647,14400,14252,14416,13008,11331,10811,9946,10791,12031,12574,12693,13950,14500,14424,13499,14472,15359,15259,15117,15121,15882,16073,15650,15732,16613,16984,16166,16468,17899,17251,17006,16668,15390,16755,16137,15803,15061,15792,15998,16371,15555,15517,15318,15638
-2019F,VT,PATPP,21.7,23.3,24,23.8,22.6,26.2,27.9,27.1,28.4,28.8,29.8,29.2,30.3,30.5,27,26.4,29.7,29,28.9,25.7,22.1,21,19.2,20.6,22.8,23.7,23.8,25.8,26.4,25.9,23.9,25.5,26.8,26.4,25.9,25.7,26.8,26.9,26.1,26,27.3,27.7,26.3,26.7,28.9,27.8,27.3,26.7,24.7,26.8,25.8,25.2,24,25.2,25.6,26.2,24.9,24.8,24.5,25.1
-2019F,VT,PATXP,8421,9088,9438,9427,8981,10531,11419,11377,12030,12433,12994,13011,13819,14077,12633,12561,14334,14206,14386,12964,11267,10786,9923,10774,12000,12540,12647,13879,14424,14374,13491,14457,15350,15242,15094,15083,15866,16042,15543,15668,16454,16897,16135,16412,17854,17239,16998,16659,15383,16751,16132,15795,15058,15784,15991,16367,15547,15502,15311,15635
-2019F,VT,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,PCICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,PCTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,PCTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,6,2,4,4,3,1,1,2
-2019F,VT,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,736,826,971,996,1045,1094,896,548,907,796
-2019F,VT,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,73,68,107,86,76,54,125,78,43
-2019F,VT,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1541,1289,1308,1568,1660,1609,1447,1673,1849,1839
-2019F,VT,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2353,2191,2353,2673,2795,2783,2399,2348,2835,2679
-2019F,VT,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2353,2191,2353,2673,2795,2783,2399,2348,2835,2679
-2019F,VT,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,VT,RFACP,0,1,7,0,22,0,6,3,0,4,2,2,2,2,3,2,1,0,0,0,0,0,0,0,0,0,0,2,0,7,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0
-2019F,VT,RFCCP,225,240,276,265,158,422,450,191,169,259,414,422,435,405,245,373,581,531,457,158,237,153,115,48,65,24,135,92,61,83,119,131,105,171,86,71,72,111,107,71,101,92,121,151,147,145,130,87,109,89,59,53,36,37,24,17,19,27,11,6
-2019F,VT,RFEIP,1,1,1,1,1,3,7,8,15,12,23,18,17,4,1,0,16,17,10,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0
-2019F,VT,RFICP,252,272,313,301,186,484,519,228,213,297,466,474,491,458,278,421,652,594,512,177,235,194,244,271,369,98,336,244,177,101,115,130,168,302,196,144,210,212,168,149,207,149,132,141,151,156,130,151,117,105,97,96,56,90,61,27,14,16,17,16
-2019F,VT,RFTCP,478,514,597,567,367,910,982,431,397,572,905,916,944,870,526,796,1250,1142,979,347,471,348,359,318,434,122,471,338,238,191,237,264,277,474,281,215,282,323,274,220,309,241,253,292,297,300,260,238,227,195,157,150,93,127,85,44,37,50,28,23
-2019F,VT,RFTXP,477,513,596,566,366,906,976,422,382,560,882,898,928,866,525,795,1234,1125,969,335,471,348,359,318,434,122,471,338,238,191,237,264,277,474,281,215,282,323,274,220,309,241,253,292,297,300,260,238,226,194,157,149,93,127,85,44,37,50,28,23
-2019F,VT,SGICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,7,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,36,34,32,37,34,35
-2019F,VT,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,5,8,18,24,40,47,57
-2019F,VT,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,17,24,48,59,99,107,147
-2019F,VT,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2
-2019F,VT,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,5,11,17,25,36,51,70,81,94
-2019F,VT,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,9,21,39,57,102,135,210,237,300
-2019F,VT,TPOPP,389,390,393,397,399,404,413,423,430,437,446,454,463,468,473,480,485,492,498,505,513,516,519,523,527,530,534,540,550,558,565,569,573,578,584,589,594,597,600,605,610,612,615,618,620,621,623,623,624,625,626,627,626,627,626,626,624,625,625,624
-2019F,VT,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,WXICP,46,45,41,39,37,39,38,38,43,45,45,78,80,103,101,90,108,90,93,91,89,87,68,74,74,75,73,79,81,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,10,11,11,11,11,11,10,12,14,33,107,236,311,325,291,305,373,377
-2019F,VT,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,VT,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,10,11,11,11,11,11,10,12,14,33,107,236,311,325,291,305,373,377
-2019F,VT,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,26,4,0,22,3,0,-6,1,2,-1,1,1,44,39,52,66,29,46,28,45,55,53,76,63,5,13,1,-6,-2,0,0,-3,-1,-2,-2,-1,-11,-8
-2019F,WA,ARICP,1309,1397,1518,1656,1521,1683,2231,2095,2248,2330,2335,2364,2983,3343,2758,2910,3303,3044,3127,3197,2050,1800,1792,2310,2626,2039,2404,2268,1921,2612,2481,2967,3023,2941,3526,3558,3696,4048,4087,4104,4952,3427,3737,2878,3313,3439,3394,2926,2954,2053,2136,1540,1540,1467,1585,1740,1873,2034,1758,1879
-2019F,WA,ARTCP,1309,1397,1518,1656,1521,1683,2231,2095,2248,2330,2335,2364,2983,3343,2758,2910,3303,3044,3127,3197,2050,1800,1792,2310,2626,2039,2404,2268,1921,2612,2481,2967,3023,2941,3526,3558,3696,4048,4087,4104,4952,3427,3737,2878,3313,3439,3394,2926,2954,2053,2136,1540,1540,1467,1585,1740,1873,2034,1758,1879
-2019F,WA,ARTXP,1309,1397,1518,1656,1521,1683,2231,2095,2248,2330,2335,2364,2983,3343,2758,2910,3303,3044,3127,3197,2050,1800,1792,2310,2626,2039,2404,2268,1921,2612,2481,2967,3023,2941,3526,3558,3696,4048,4087,4104,4952,3427,3737,2878,3313,3439,3394,2926,2954,2053,2136,1540,1540,1467,1585,1740,1873,2034,1758,1879
-2019F,WA,AVACP,2161,2190,917,895,726,434,532,460,433,358,351,223,305,307,313,274,270,294,315,299,356,305,229,200,175,202,228,275,214,188,313,268,289,198,318,229,292,202,356,283,332,148,258,225,202,262,184,176,132,112,160,174,187,164,73,93,87,86,102,114
-2019F,WA,AVTCP,2161,2190,917,895,726,434,532,460,433,358,351,223,305,307,313,274,270,294,315,299,356,305,229,200,175,202,228,275,214,188,313,268,289,198,318,229,292,202,356,283,332,148,258,225,202,262,184,176,132,112,160,174,187,164,73,93,87,86,102,114
-2019F,WA,AVTXP,2161,2190,917,895,726,434,532,460,433,358,351,223,305,307,313,274,270,294,315,299,356,305,229,200,175,202,228,275,214,188,313,268,289,198,318,229,292,202,356,283,332,148,258,225,202,262,184,176,132,112,160,174,187,164,73,93,87,86,102,114
-2019F,WA,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,8,16,53,153,207,178,188,152,518,473,457,482,521,543,521,572,567
-2019F,WA,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,8,16,53,153,207,178,188,152,518,473,457,482,521,543,521,572,567
-2019F,WA,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,CLACP,7,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,CLCCP,74,84,63,56,54,63,58,41,30,30,15,25,19,11,9,14,16,97,140,105,127,99,139,185,170,168,68,40,91,71,53,66,75,93,73,68,21,19,12,15,18,20,20,23,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,CLEIP,0,0,0,0,0,0,0,0,0,0,0,0,2002,3741,2925,4009,4107,5370,4233,5166,4950,4964,3844,4298,4506,5192,3329,5468,5561,5514,4852,5184,6148,5646,6016,3857,5507,4771,6111,5727,6355,6001,6126,7311,6879,6996,4125,5681,5763,4974,5727,3425,2502,4429,4475,3405,3075,3623,3628,4804
-2019F,WA,CLICP,420,424,467,390,342,341,315,241,214,222,210,223,145,165,274,463,665,563,558,564,332,363,381,276,211,208,372,298,252,238,229,197,163,174,201,223,152,156,117,95,126,128,103,90,84,71,94,136,148,170,141,97,109,106,141,102,100,76,74,79
-2019F,WA,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,CLOCP,420,424,467,390,342,341,315,241,214,222,210,223,145,165,274,463,665,563,558,564,332,363,381,276,211,208,372,298,252,238,229,197,163,174,201,223,152,156,117,95,126,128,103,90,84,71,94,136,148,170,141,97,109,106,141,102,100,76,74,79
-2019F,WA,CLRCP,106,120,90,78,75,83,77,54,38,38,19,24,14,7,4,6,6,38,42,26,34,22,28,35,40,47,20,12,26,19,13,14,16,21,13,10,3,2,2,2,2,2,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,CLTCP,608,630,622,526,473,488,451,336,283,289,245,272,2179,3924,3213,4492,4794,6068,4973,5860,5443,5448,4393,4794,4926,5616,3790,5819,5929,5843,5147,5461,6402,5934,6303,4158,5682,4948,6241,5838,6501,6151,6252,7427,6986,7067,4219,5818,5911,5144,5868,3522,2612,4534,4616,3507,3175,3699,3702,4883
-2019F,WA,CLTXP,608,630,622,526,473,488,451,336,283,289,245,272,177,183,288,483,687,697,740,695,493,484,549,496,420,424,460,350,368,329,295,277,254,288,287,301,175,178,131,112,146,150,126,116,107,71,94,137,148,170,141,97,109,106,141,102,100,76,74,79
-2019F,WA,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,DFACP,2574,2698,3122,3058,3274,3022,2804,2720,3677,4001,3956,4493,5139,6675,6460,6616,8004,8334,9200,10078,9595,9643,8429,7985,8363,10139,14070,11655,12345,12514,11609,11763,12632,11679,14902,14082,15233,17668,14863,17767,18748,16924,18541,18663,19415,19543,23925,24589,22643,19762,19124,20918,19253,18459,19638,21009,21951,21360,22673,22629
-2019F,WA,DFCCP,2308,2248,2093,2079,2240,2053,2158,1892,2113,2151,2224,2201,2104,1978,1545,1519,1569,1731,1692,1531,1073,744,1990,1726,2023,4154,2455,1975,2460,1728,1865,1603,930,1002,1116,1264,989,1087,856,950,902,1204,1155,1099,746,1038,1018,783,1339,1018,1526,1172,1172,1175,1297,1296,1305,738,1375,746
-2019F,WA,DFEIP,2,1,1,1,0,0,22,1,1,1,0,0,0,30,5,3,3,14,1,18,31,33,23,22,17,17,19,17,16,42,30,17,14,63,19,234,364,488,83,21,782,519,39,30,54,21,39,27,45,71,37,31,27,25,29,21,24,28,26,23
-2019F,WA,DFICP,5937,5574,5303,5054,5453,5546,5787,5549,5318,5184,4986,4983,5472,5301,3958,4025,4142,4727,4995,5247,4350,4197,4469,3875,4543,2689,3634,3166,2687,3725,3976,3966,3882,3961,4441,3724,3700,3449,4299,3608,2953,3586,3193,2974,2434,2900,3707,3970,4951,2836,2991,2927,2553,2608,2489,3114,3254,3109,3909,4336
-2019F,WA,DFRCP,7303,7112,6621,6578,7087,6495,6827,5988,6687,6806,7035,6964,6658,6258,4890,4806,4963,5476,5355,4843,3422,3000,3247,2693,3157,3010,3117,2567,2814,2777,2675,2470,2084,2250,2356,2003,2202,1851,1757,1891,1737,1896,1896,1500,1354,1250,1229,1102,1017,972,946,871,632,607,654,612,614,834,607,629
-2019F,WA,DFTCP,18123,17633,17141,16770,18053,17116,17597,16150,17796,18144,18201,18642,19374,20242,16859,16970,18680,20281,21243,21716,18471,17617,18159,16302,18104,20008,23295,19380,20322,20786,20155,19819,19543,18955,22834,21307,22488,24543,21859,24237,25122,24128,24826,24266,24003,24753,29918,30471,29996,24658,24624,25919,23636,22874,24107,26053,27147,26070,28590,28363
-2019F,WA,DFTXP,18121,17632,17139,16769,18052,17116,17575,16149,17794,18143,18200,18642,19373,20212,16854,16967,18677,20267,21242,21698,18440,17584,18136,16279,18087,19992,23276,19363,20306,20743,20125,19803,19529,18892,22815,21073,22124,24055,21775,24216,24339,23609,24786,24236,23949,24732,29878,30444,29951,24587,24587,25888,23610,22849,24078,26031,27123,26042,28564,28341
-2019F,WA,ELEXP,68,16,57,19,61,669,702,1690,1504,1073,279,532,516,501,413,1140,1081,607,1242,1341,2433,894,2116,2250,1397,3680,3633,3888,2058,3878,37,3,3,1084,26,1648,664,3567,4402,7025,5390,8210,5549,5402,7077,5537,11086,6881,10247,9328,9164,9806,8420,8221,9226,6929,2293,2884,5447,6290
-2019F,WA,ELIMP,18,19,16,21,33,188,696,601,703,1277,896,828,1516,5321,2825,2870,1685,5602,3705,1340,3292,9574,6169,4633,7828,4584,1310,5024,2603,3091,280,2617,6245,1801,2823,883,5270,7199,6869,8834,4257,3152,4362,3445,2229,2533,2430,3622,2973,3150,2211,3045,2247,1889,1687,3619,1514,1814,1435,2409
-2019F,WA,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-317,-1642,7788,13219,6341,-1979,-23940,-23842,1344,-7547,1096,10177,-16435,-11144,-7523,-5980,-4932,-10572,-8868,-638,1280,-7387,-10927,-7324,-9719,-9039,-17674,-16290,-16614,-5564
-2019F,WA,ELNIP,-50,3,-41,2,-29,-481,-6,-1090,-801,203,617,295,1000,4820,2412,1730,604,4995,2463,-1,859,8680,4053,2383,6431,904,-2322,1136,545,-787,243,2614,6242,718,2797,-765,4606,3632,2467,1808,-1133,-5057,-1187,-1956,-4848,-3005,-8657,-3259,-7273,-6178,-6953,-6761,-6173,-6332,-7539,-3310,-778,-1069,-4012,-3881
-2019F,WA,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,17,18,20,14,57,128,130,182,201,237,1104,1925,2222,731,324,615,827,700,790,570,1653,1592,533,2083,2284,2892,5072,5901,5040,5194,4957,5205,5584,6691,6592,6700,6894,7079
-2019F,WA,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,1,0,1,1,4,3,1,5,2,1,4,5,8,13,13,8,9,12,14,12,165,187,162,164,168
-2019F,WA,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3,4,16,18,21,7,3,6,7,6,7,10,29,28,11,41,47,43,71,79,90,95,89,93,89,104,101,104,105,106
-2019F,WA,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,17,18,20,14,58,131,133,185,205,241,1123,1945,2245,739,328,621,835,710,800,581,1687,1622,544,2129,2335,2942,5156,5993,5138,5297,5058,5311,5685,6960,6881,6966,7162,7353
-2019F,WA,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,ESACP,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,12,14,14,14,13,14,14,15,16,19,20,19,19,18,17,18,18,20,18,19,19,42,42,2,1,2,2,3,7,7,7,6,5,5,6,7,7,99
-2019F,WA,ESCCP,3220,3346,3645,3853,4057,4380,4818,5179,5659,6323,6723,7243,9667,10310,10056,10377,11070,11059,12071,12936,13845,17842,18144,18246,17999,18965,18816,19698,20706,20637,21510,21967,22532,22959,23377,23912,25147,25209,25876,26695,28047,27528,27528,28039,28226,28100,28580,29599,29878,30069,28833,29409,29240,29659,29040,29267,28989,29800,29396,29270
-2019F,WA,ESICP,13975,14205,14670,16285,17825,18703,19997,22028,23086,26500,25530,24351,27947,26789,29738,27416,29616,27099,31347,31607,31366,34726,28236,30824,33344,29431,30040,31597,36909,37369,40712,40839,38332,36563,34065,34276,31247,33956,37616,39499,35410,19339,15792,18180,19259,22112,22013,20753,21117,23371,26633,27933,27579,27235,28013,26772,25678,24859,25263,25172
-2019F,WA,ESRCP,8755,9110,9760,10105,10707,11015,11660,12236,13428,14823,15355,16521,18945,19254,19397,19209,20311,20630,21920,24006,24445,28475,29157,27266,26725,27933,26503,25773,27203,28653,28809,29889,28436,30932,29673,30147,32012,31749,31362,32817,33036,31608,32066,31872,32455,33212,34439,35389,36336,36768,34907,36376,35511,35983,35083,34072,34212,37283,35339,36512
-2019F,WA,ESRPP,3066,3161,3318,3420,3616,3712,3814,3855,4106,4434,4499,4792,5495,5535,5464,5304,5499,5463,5636,5975,5884,6723,6818,6340,6153,6348,5952,5687,5863,6037,5876,5947,5510,5860,5520,5500,5748,5595,5436,5617,5589,5281,5298,5221,5253,5308,5406,5477,5537,5515,5177,5328,5148,5165,4971,4754,4687,5019,4695,4795
-2019F,WA,ESTCP,25951,26662,28077,30244,32590,34099,36476,39445,42175,47647,47609,48117,56560,56354,59192,57003,60999,58789,65340,68551,69658,81048,75549,76349,78081,76342,75372,77082,84832,86674,91046,92714,89319,90473,87133,88353,88424,90932,94873,99030,96511,78495,75404,78134,79982,83425,85033,85742,87333,90210,90380,93725,92336,92883,92141,90116,88885,91948,90006,91053
-2019F,WA,ESTPP,9090,9251,9543,10235,11006,11493,11932,12427,12898,14253,13949,13957,16404,16199,16674,15741,16515,15569,16801,17063,16766,19134,17666,17755,17976,17350,16927,17009,18283,18261,18569,18448,17307,17139,16210,16120,15876,16024,16444,16950,16329,13114,12459,12800,12945,13332,13347,13269,13308,13530,13404,13728,13385,13333,13056,12573,12176,12379,11958,11959
-2019F,WA,ESTXP,25951,26662,28077,30244,32590,34099,36476,39445,42175,47647,47609,48117,56560,56354,59192,57003,60999,58789,65340,68551,69658,81048,75549,76349,78081,76342,75372,77082,84832,86674,91046,92714,89319,90473,87133,88353,88424,90932,94873,99030,96511,78495,75404,78134,79982,83425,85033,85742,87333,90210,90380,93725,92336,92883,92141,90116,88885,91948,90006,91053
-2019F,WA,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,FSICP,0,0,0,132,130,161,185,176,186,184,223,400,365,299,351,388,400,402,447,282,327,171,201,246,331,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,HLACP,6,6,9,10,10,21,17,23,26,27,38,43,40,35,36,37,43,50,93,117,92,210,153,181,482,329,284,246,277,249,291,246,207,214,312,179,148,97,100,13,18,25,27,109,104,239,244,167,416,229,32,33,29,26,24,24,35,36,27,67
-2019F,WA,HLCCP,86,95,175,184,202,222,196,239,244,276,284,286,218,190,171,100,102,119,130,141,155,169,172,203,119,137,106,165,132,151,163,221,218,229,234,307,312,597,542,498,514,560,764,485,370,401,471,474,768,678,722,682,1068,922,975,728,864,1119,1297,1236
-2019F,WA,HLICP,134,65,92,131,167,155,166,175,186,192,274,260,297,227,301,250,285,344,589,738,658,555,739,563,1085,1487,1738,2315,1926,2436,1228,1302,1307,1284,1172,1278,1568,2190,2049,2085,4003,4405,1182,537,569,237,284,336,1282,941,1098,1421,1350,1477,1458,1485,1497,844,1046,658
-2019F,WA,HLRCP,322,354,654,687,757,830,734,892,913,1031,1063,1070,814,711,638,375,383,444,488,526,581,631,642,759,447,513,397,618,493,564,610,827,817,855,876,1149,1167,2232,2026,1861,1922,2093,2857,1604,1710,1902,1773,1690,2231,2489,2353,2367,1806,1820,1754,1527,1899,2290,2254,2836
-2019F,WA,HLTCP,548,519,930,1012,1137,1227,1113,1329,1369,1525,1659,1659,1368,1164,1147,763,813,957,1300,1522,1487,1565,1706,1705,2133,2466,2525,3345,2828,3399,2292,2596,2549,2582,2594,2913,3195,5116,4716,4458,6456,7083,4830,2735,2752,2779,2773,2667,4696,4337,4206,4502,4254,4246,4211,3765,4295,4289,4624,4798
-2019F,WA,HLTXP,548,519,930,1012,1137,1227,1113,1329,1369,1525,1659,1659,1368,1164,1147,763,813,957,1300,1522,1487,1565,1706,1705,2133,2466,2525,3345,2828,3399,2292,2596,2549,2582,2594,2913,3195,5116,4716,4458,6456,7083,4830,2735,2752,2779,2773,2667,4696,4337,4206,4502,4254,4246,4211,3765,4295,4289,4624,4798
-2019F,WA,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,85,79,63,59,56,83,77,79,75,82,70,57,0,53,73,49,62,45,46,45,53,0,0,0,0,0,0,0,0,0
-2019F,WA,HYEGP,34154,37177,39366,42929,46855,49105,52610,58713,64141,67387,69391,71430,75716,68856,82313,83527,94290,66470,88759,79376,82982,93572,87576,85435,83301,76923,78831,69698,68379,71304,87193,89080,68106,67116,65356,82220,98262,103875,79577,96691,80161,54674,77989,71702,71501,72023,81944,78781,77589,72886,68233,91815,89463,78155,79463,73405,78346,82183,80883,66018
-2019F,WA,HYICP,195,183,187,188,181,190,211,186,195,155,135,158,166,160,177,181,167,147,147,135,129,129,129,129,129,129,129,129,129,161,189,183,155,137,163,197,178,217,163,216,32,3,178,2,2,2,2,3,2,2,3,3,1,0,0,0,0,0,0,0
-2019F,WA,HYTCP,34349,37360,39553,43117,47036,49295,52821,58899,64336,67541,69525,71589,75883,69016,82491,83708,94457,66617,88906,79511,83111,93701,87705,85564,83431,77053,78960,69827,68508,71528,87467,89342,68325,67312,65575,82500,98518,104171,79815,96989,80263,54734,78167,71757,71576,72075,82008,78829,77637,72933,68288,91818,89464,78155,79463,73405,78346,82183,80883,66018
-2019F,WA,HYTXP,195,183,187,188,181,190,211,186,195,155,135,158,166,160,177,181,167,147,147,135,129,129,129,129,129,129,129,129,129,224,274,262,218,196,219,280,256,296,238,298,102,60,178,55,75,52,64,48,48,47,55,3,1,0,0,0,0,0,0,0
-2019F,WA,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,JFACP,4502,4750,5745,6113,6607,6919,7472,9429,10715,11177,10637,11721,10680,11762,12312,14036,12990,12092,11468,12693,12036,12081,12800,12830,15646,15417,17073,18596,20647,20592,22343,21306,24066,22226,21492,23039,22323,22464,21879,22155,24726,21815,18076,17493,19219,18480,18588,20451,20110,18293,12530,12675,12395,13410,14123,15914,17118,18013,17946,19013
-2019F,WA,JFTCP,4502,4750,5745,6113,6607,6919,7472,9429,10715,11177,10637,11721,10680,11762,12312,14037,12990,12093,11480,12715,12036,12081,12800,12830,15646,15417,17073,18596,20647,20592,22343,21306,24066,22226,21492,23039,22323,22464,21879,22155,24726,21815,18076,17493,19219,18480,18588,20451,20110,18293,12530,12675,12395,13410,14123,15914,17118,18013,17946,19013
-2019F,WA,JFTXP,4502,4750,5745,6113,6607,6919,7472,9429,10715,11177,10637,11721,10680,11762,12312,14036,12990,12092,11468,12693,12036,12081,12800,12830,15646,15417,17073,18596,20647,20592,22343,21306,24066,22226,21492,23039,22323,22464,21879,22155,24726,21815,18076,17493,19219,18480,18588,20451,20110,18293,12530,12675,12395,13410,14123,15914,17118,18013,17946,19013
-2019F,WA,KSCCP,0,1,1,0,1,1,2,2,6,2,15,18,13,10,29,26,34,42,45,17,18,18,18,370,222,206,52,806,869,651,14,17,12,13,16,14,8,13,24,12,12,21,23,29,30,48,22,10,7,6,5,3,1,1,3,1,4,2,2,3
-2019F,WA,KSICP,105,39,31,35,14,23,13,8,14,12,109,75,36,21,87,118,93,221,270,106,37,195,102,1187,710,920,649,14,17,7,11,7,6,6,8,21,24,21,33,26,25,25,10,12,28,27,7,3,5,7,7,3,2,1,1,0,0,0,0,0
-2019F,WA,KSRCP,0,9,10,4,8,9,16,16,52,15,115,146,100,79,229,203,272,335,354,135,65,535,72,45,64,86,50,41,59,54,49,46,29,44,66,86,110,133,123,86,65,101,35,101,69,54,31,13,11,18,21,13,5,4,6,4,7,4,4,6
-2019F,WA,KSTCP,105,49,43,39,23,34,30,26,72,28,239,240,148,110,345,346,400,599,669,258,120,748,192,1602,996,1212,751,860,945,712,75,70,47,63,89,121,142,167,181,124,102,147,68,142,127,129,61,26,22,31,33,19,8,7,10,6,11,7,5,9
-2019F,WA,KSTXP,105,49,43,39,23,34,30,26,72,28,239,240,148,110,345,346,400,599,669,258,120,748,192,1602,996,1212,751,860,945,712,75,70,47,63,89,121,142,167,181,124,102,147,68,142,127,129,61,26,22,31,33,19,8,7,10,6,11,7,5,9
-2019F,WA,LUACP,413,402,387,387,407,381,396,367,404,393,400,376,403,426,408,428,476,501,538,563,501,481,438,459,489,456,446,504,486,499,513,459,468,477,498,490,475,502,525,531,523,479,473,438,443,441,430,444,412,370,514,508,495,533,543,614,639,543,520,520
-2019F,WA,LUICP,158,154,174,174,183,216,225,228,251,262,267,140,150,185,178,192,214,202,216,227,202,193,176,185,197,184,179,203,196,201,207,185,188,192,200,197,191,202,211,214,210,193,191,176,178,178,173,179,166,149,319,290,266,288,301,334,314,294,295,277
-2019F,WA,LUTCP,571,556,562,562,590,597,621,596,654,654,666,516,553,611,585,620,689,702,754,789,703,674,615,644,686,640,625,707,682,699,720,644,656,668,699,687,666,704,737,745,733,672,664,614,622,619,603,622,578,520,834,798,761,821,844,948,953,838,815,797
-2019F,WA,LUTXP,571,556,562,562,590,597,621,596,654,654,666,516,553,611,585,620,689,702,754,789,703,674,615,644,686,640,625,707,682,699,720,644,656,668,699,687,666,704,737,745,733,672,664,614,622,619,603,622,578,520,834,798,761,821,844,948,953,838,815,797
-2019F,WA,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1157,-1049,-737,-367,-1104,-1546,-736,-339,354,339,-173,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,MGACP,22052,23036,24241,24281,24761,25886,28258,30099,32342,33838,35213,35964,37194,39062,38958,40196,42489,44671,46647,44747,41897,42348,42450,43993,45283,42971,45900,50202,49744,52856,52525,53256,54259,56811,56866,58222,60986,60559,61279,62412,62246,62306,63254,63119,62945,63818,64264,64756,62853,63583,62605,62035,61476,63995,63799,64480,64204,64369,66789,67368
-2019F,WA,MGCCP,222,230,242,249,251,255,268,271,294,293,304,317,319,331,370,374,401,380,421,363,478,430,472,509,283,357,309,314,278,260,281,189,131,48,48,59,60,60,63,321,275,146,187,83,85,137,137,168,162,139,97,103,143,166,142,1592,1824,1560,1592,1596
-2019F,WA,MGICP,802,651,828,818,666,765,623,598,605,551,551,507,523,468,424,438,421,360,370,289,278,251,275,211,574,692,740,736,676,697,658,794,806,526,532,555,565,593,491,506,533,1040,1103,1115,1272,1261,1311,969,876,848,1114,1131,1105,1139,1019,1000,985,997,1014,1009
-2019F,WA,MGTCP,23076,23917,25311,25348,25679,26906,29149,30968,33241,34683,36068,36788,38036,39861,39752,41007,43311,45412,47438,45399,42653,43029,43197,44713,46140,44020,46950,51252,50699,53814,53464,54238,55196,57385,57446,58836,61611,61213,61833,63239,63053,63492,64544,64317,64302,65216,65712,65893,63891,64569,63817,63269,62725,65300,64960,67072,67014,66926,69395,69973
-2019F,WA,MGTXP,23076,23917,25311,25348,25679,26906,29149,30968,33241,34683,36068,36788,38036,39861,39752,41007,43311,45412,47438,45399,42653,43029,43197,44713,46140,44020,46950,51252,50699,53814,53464,54238,55196,57385,57446,58836,61611,61213,61833,63239,63053,63492,64544,64317,64302,65216,65712,65893,63891,64569,63817,63269,62725,65300,64960,67072,67014,66926,69395,69973
-2019F,WA,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,92,87,97,89,22,24,29,28,29,63,67,63,57,57,65,64,68,73,76,79,77,77,82,85,86,207,207,188
-2019F,WA,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,NGACP,413,422,447,0,656,688,1404,2465,3465,4541,6426,6143,7394,7363,5513,5855,5975,6185,6349,7336,3663,2284,1711,1554,1852,2887,1971,3781,3953,4359,5103,5160,3114,4286,6498,8722,6985,8966,9270,7873,6287,9336,6644,6879,9217,8700,7055,7907,7098,8007,8023,7154,9696,10562,9497,12465,12460,12513,13552,12951
-2019F,WA,NGCCP,6477,6974,7944,8340,12306,10658,12735,15133,16244,17166,18490,20612,23254,32333,33221,31988,31652,29946,25330,33369,30754,28629,30559,28728,32371,35459,32022,32366,36674,38502,38671,41738,37800,43620,42982,42568,48139,46686,45561,50735,50462,57160,46455,47845,48455,49745,51292,53689,56205,55697,51335,56487,53420,55805,54457,49939,51634,60096,57014,61010
-2019F,WA,NGEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2100,941,491,121,30,32,77,124,93,1753,8320,191,1145,11267,27985,42583,40252,41730,27725,40373,32639,74400,86184,39552,57880,66068,65809,58800,57294,74580,91308,79535,39265,43336,87671,84531,96897,81728,80589,76549,105832
-2019F,WA,NGICP,50043,54447,63105,65921,75555,79377,82271,86472,93370,92335,93147,95974,101169,121697,108464,92142,78806,75993,68108,82860,63678,66691,47119,50883,62790,63176,54027,65706,69418,73239,78424,79735,79766,92274,107603,109997,114236,111159,133106,124371,83748,75017,67717,65884,67812,66874,70758,73572,75748,71271,71280,76289,78196,80889,79439,76527,79275,80656,77303,78490
-2019F,WA,NGRCP,8001,8500,9935,12573,17272,17385,20469,23160,26342,30479,31929,33934,38631,36468,35525,34349,32348,30533,27437,32850,29734,26847,29143,25998,29242,33000,30217,29799,34981,38358,40346,46222,43048,53258,53144,52763,62689,61813,61936,71704,71779,84416,73347,71110,70932,73626,75491,80152,84509,84143,75554,85393,79892,83365,78750,71907,76321,91028,83567,89967
-2019F,WA,NGTCP,64934,70343,81431,86834,105789,108108,116879,127230,139421,144521,149992,156663,170448,197861,182723,164334,148781,142657,127280,158515,128770,124942,108653,107193,126287,134599,118361,131745,146779,162779,162734,174001,174994,221424,252811,254302,273779,256349,290246,287322,286676,312114,233716,249599,262485,264754,263395,272613,298140,310426,285727,264588,264540,318292,306674,307735,301418,324882,307985,348250
-2019F,WA,NGTPP,22.7,24.4,27.7,29.4,35.7,36.4,38.2,40.1,42.6,43.2,43.9,45.4,49.4,56.9,51.5,45.4,40.3,37.8,32.7,39.5,31,29.5,25.4,24.9,29.1,30.6,26.6,29.1,31.6,34.3,33.2,34.6,33.9,41.9,47,46.4,49.2,45.2,50.3,49.2,48.5,52.1,38.6,40.9,42.5,42.3,41.3,42.2,45.4,46.6,42.4,38.8,38.3,45.7,43.5,42.9,41.3,43.7,40.9,45.7
-2019F,WA,NGTXP,64934,70343,81431,86834,105789,108108,116879,127230,139421,144521,149992,156663,170448,197861,182723,164334,148781,142657,127224,156415,127829,124451,108532,107163,126255,134522,118237,131652,145026,154459,162544,172856,163728,193438,210227,214050,232049,228624,249874,254683,212276,225930,194164,191719,196417,198945,204596,215320,223560,219118,206192,225323,221204,230621,222143,210838,219690,244293,231436,242418
-2019F,WA,NUEGP,0,0,0,0,0,0,989,2015,3903,3667,2614,2553,2919,4432,3889,3308,2405,4315,4140,3613,2041,2042,3631,3494,5313,8038,8439,5528,6000,6118,5742,4230,5692,7135,6740,6942,5588,6244,6916,6086,8605,8250,9048,7615,8982,8242,9328,8109,9270,6634,9241,4806,9334,8461,9497,8161,9626,8128,9708,8866
-2019F,WA,NUETP,0,0,0,0,0,0,989,2015,3903,3667,2614,2553,2919,4432,3889,3308,2405,4315,4140,3613,2041,2042,3631,3494,5313,8038,8439,5528,6000,6118,5742,4230,5692,7135,6740,6942,5588,6244,6916,6086,8605,8250,9048,7615,8982,8242,9328,8109,9270,6634,9241,4806,9334,8461,9497,8161,9626,8128,9708,8866
-2019F,WA,OPICP,2128,1992,2080,2328,2545,2825,2973,3014,3296,3447,3446,4562,4919,4872,4963,4993,4911,5137,5350,5114,4954,2883,3140,4069,4302,3673,3637,4697,5832,6499,6578,5809,7433,6419,7404,7141,8628,8551,7064,7311,6655,8972,8542,9270,9200,9840,10245,9984,8844,8735,9477,9690,9922,9545,8780,8897,9110,9375,9392,9540
-2019F,WA,OPTCP,2128,1992,2080,2328,2545,2825,2973,3014,3296,3447,3446,4562,4919,4872,4963,4993,4911,5137,5350,5114,4954,2883,3140,4069,4302,3673,3637,4697,5832,6499,6578,5809,7433,6419,7404,7141,8628,8551,7064,7311,6655,8972,8542,9270,9200,9840,10245,9984,8844,8735,9477,9690,9922,9545,8780,8897,9110,9375,9392,9540
-2019F,WA,OPTXP,2128,1992,2080,2328,2545,2825,2973,3014,3296,3447,3446,4562,4919,4872,4963,4993,4911,5137,5350,5114,4954,2883,3140,4069,4302,3673,3637,4697,5832,6499,6578,5809,7433,6419,7404,7141,8628,8551,7064,7311,6655,8972,8542,9270,9200,9840,10245,9984,8844,8735,9477,9690,9922,9545,8780,8897,9110,9375,9392,9540
-2019F,WA,P1ICP,5134,7475,8261,9248,8382,9804,10428,11121,12392,14003,12331,13573,16273,16244,14611,15456,15267,17261,16456,15097,12506,14344,13286,12809,14243,14164,13910,17375,18383,20143,20233,19287,24390,19263,22263,21708,23928,21392,27588,30071,23985,17311,16737,16564,18536,20528,21582,20342,20230,19164,17863,16347,17730,16092,15660,17599,16605,16087,15934,15794
-2019F,WA,P1TCP,7709,10077,9577,10534,9523,10629,11373,11967,13287,14770,13212,14337,17093,17065,15589,16386,16320,18433,17708,16111,13446,15682,14044,13883,15193,15114,14686,19000,20012,21535,21122,20077,25188,19994,23160,22527,24814,22242,28616,30984,24916,18061,17526,17357,19280,21333,22249,20985,20792,19670,18564,17046,18419,16795,16286,18312,17342,16723,16562,16436
-2019F,WA,P1TXP,7709,10077,9577,10534,9523,10629,11373,11967,13287,14770,13212,14337,17093,17065,15589,16386,16320,18433,17708,16111,13446,15682,14044,13883,15193,15114,14686,19000,20012,21535,21122,20077,25188,19994,23160,22527,24814,22242,28616,30984,24916,18061,17526,17357,19280,21333,22249,20985,20792,19670,18564,17046,18419,16795,16286,18312,17342,16723,16562,16436
-2019F,WA,PAACP,33415,34305,35564,36013,37043,38104,41345,45408,51346,52601,52620,54017,54729,59421,59747,63696,66604,68545,73326,77945,74589,73231,69213,67290,72100,75005,86932,89609,93401,100336,101823,103160,114056,106417,108977,112793,111734,114068,108347,110771,113227,107968,105918,106033,108844,110556,113833,120562,111068,109336,101432,104111,103729,106165,104692,110876,121935,118081,118364,121891
-2019F,WA,PACCP,3057,2937,2873,2862,3102,2944,3043,2789,3084,3157,3308,3308,3253,3083,2655,2374,2355,2606,2618,2211,2150,2123,3573,3431,4218,5602,3062,3315,3959,2860,2376,2130,1348,1350,1461,1754,1537,1802,1518,1809,1729,1938,2133,1697,1231,1624,1649,1436,2275,1840,2350,1960,2385,2265,2417,3617,3997,3418,4265,3581
-2019F,WA,PAEIP,16,9,12,5,4,3,210,14,12,14,4,3,191,482,55,75,43,49,44,544,232,37,23,23,17,17,20,18,16,192,31,17,15,64,19,234,364,488,83,21,783,519,39,30,54,21,39,27,45,71,37,31,27,25,29,21,24,28,26,23
-2019F,WA,PAICP,19144,19737,20581,21295,21771,23551,24397,24431,26265,27939,26015,27120,32631,31365,27624,26094,24905,29343,28438,24115,24331,26763,26656,20129,27180,24199,26503,29176,30104,29028,28084,26681,31371,25882,29301,27910,30084,27928,34682,36622,32362,26480,22371,21272,22830,24938,26891,25620,27347,24055,23316,22087,22914,21471,20626,23198,22341,21047,21909,21798
-2019F,WA,PARCP,7625,7474,7286,7269,7852,7335,7576,6896,7652,7852,8214,8180,7571,7049,5757,5384,5618,6255,6197,5504,4068,4166,3962,3497,3668,3609,3564,3225,3367,3395,3334,3344,2930,3149,3298,3238,3480,4216,3906,3839,3723,4090,4788,3205,3133,3207,3034,2805,3259,3479,3321,3251,2443,2431,2414,2143,2520,3129,2864,3471
-2019F,WA,PATCP,63257,64463,66315,67444,69772,71937,76571,79538,88358,91563,90161,92628,98375,101399,95839,97622,99524,106797,110624,110319,105370,106320,103427,94370,107184,108432,120081,125343,130847,135811,135649,135333,149720,136862,143057,145928,147198,148502,148536,153062,151824,140994,135249,132237,136092,140346,145446,150450,143994,138781,130455,131439,131498,132356,130177,139855,150816,145704,147428,150764
-2019F,WA,PATPP,22.2,22.4,22.5,22.8,23.6,24.2,25,25.1,27,27.4,26.4,26.9,28.5,29.1,27,27,26.9,28.3,28.4,27.5,25.4,25.1,24.2,21.9,24.7,24.6,27,27.7,28.2,28.6,27.7,26.9,29,25.9,26.6,26.6,26.4,26.2,25.7,26.2,25.7,23.6,22.3,21.7,22,22.4,22.8,23.3,21.9,20.8,19.3,19.3,19.1,19,18.4,19.5,20.7,19.6,19.6,19.8
-2019F,WA,PATXP,63241,64454,66303,67439,69769,71933,76361,79525,88346,91549,90157,92625,98184,100917,95783,97548,99482,106749,110580,109775,105138,106283,103404,94347,107166,108415,120060,125325,130830,135619,135617,135315,149705,136798,143037,145694,146835,148014,148452,153041,151041,140476,135209,132207,136038,140325,145407,150423,143948,138710,130419,131408,131471,132332,130149,139834,150793,145676,147402,150741
-2019F,WA,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,PCICP,1435,3893,4457,5054,4118,5056,4987,5776,6584,7953,6173,6431,8186,7822,6624,7243,6747,8657,7493,6454,5263,9273,8076,5059,6408,7348,7040,10194,10418,10825,10956,10319,13740,9705,11124,10791,11390,8570,16193,18417,12142,4694,4258,4228,5817,7044,7763,7250,8262,8221,5924,4825,6001,4791,4994,6627,5307,4384,4488,4098
-2019F,WA,PCTCP,1435,3893,4457,5054,4118,5056,4987,5776,6584,7953,6173,6431,8186,7822,6624,7243,6747,8657,7493,6454,5263,9273,8076,5059,6408,7348,7040,10194,10418,10825,10956,10319,13740,9705,11124,10791,11390,8570,16193,18417,12143,4694,4258,4228,5817,7044,7763,7250,8262,8221,5924,4825,6001,4791,4994,6627,5307,4384,4488,4098
-2019F,WA,PCTXP,1435,3893,4457,5054,4118,5056,4987,5776,6584,7953,6173,6431,8186,7822,6624,7243,6747,8657,7493,6454,5263,9273,8076,5059,6408,7348,7040,10194,10418,10825,10956,10319,13740,9705,11124,10791,11390,8570,16193,18417,12142,4694,4258,4228,5817,7044,7763,7250,8262,8221,5924,4825,6001,4791,4994,6627,5307,4384,4488,4098
-2019F,WA,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,33,29,26,24,24,35,36,27,67
-2019F,WA,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,722,682,1068,922,975,728,864,1119,1297,1236
-2019F,WA,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1098,1421,1350,1477,1458,1485,1497,844,1046,658
-2019F,WA,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2353,2367,1806,1820,1754,1527,1899,2290,2254,2836
-2019F,WA,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4206,4502,4254,4246,4211,3765,4295,4289,4624,4798
-2019F,WA,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4206,4502,4254,4246,4211,3765,4295,4289,4624,4798
-2019F,WA,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WA,RFACP,1707,1222,1143,1268,1259,1443,1866,2311,3750,2807,2025,1197,968,1155,1260,2109,2333,2602,5066,9448,10112,8164,4713,1642,1661,5492,8931,8131,9688,13439,14229,15864,22136,14812,14589,16551,12277,12576,9345,7610,6635,6271,5288,5987,6515,7773,6199,9979,4502,6988,6466,7767,9893,9577,6491,8741,17901,13674,10307,12181
-2019F,WA,RFCCP,441,364,362,350,408,412,419,385,426,435,481,485,599,574,540,355,249,334,330,159,426,762,921,623,1570,748,140,55,220,70,53,100,56,59,47,110,168,45,33,28,27,7,3,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,RFEIP,14,8,11,5,3,3,188,12,11,13,3,3,191,452,51,71,40,34,31,505,201,4,0,0,0,0,1,1,1,150,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,RFICP,7137,5972,6097,6045,7103,7281,7393,6988,7764,8009,7874,7796,10066,9125,8329,5924,4789,6651,6028,2744,6538,7416,7887,2672,6736,5167,6480,5584,6431,2026,1989,1332,985,848,894,644,323,303,255,351,888,138,156,83,19,12,7,3,7,265,249,262,176,154,0,0,0,10,5,0
-2019F,WA,RFTCP,9300,7567,7612,7668,8774,9140,9867,9696,11950,11264,10384,9482,11824,11306,10180,8459,7411,9622,11455,12856,17277,16346,13521,4936,9967,11406,15553,13771,16339,15685,16272,17297,23178,15720,15530,17305,12768,12924,9632,7989,7551,6415,5447,6071,6535,7785,6207,9983,4509,7253,6715,8029,10069,9731,6491,8741,17901,13684,10312,12181
-2019F,WA,RFTXP,9285,7558,7601,7663,8770,9136,9678,9684,11940,11251,10381,9479,11633,10854,10129,8388,7371,9587,11424,12351,17076,16342,13521,4936,9967,11406,15551,13770,16338,15535,16271,17296,23177,15719,15530,17305,12768,12924,9632,7989,7551,6415,5447,6071,6535,7785,6207,9983,4509,7253,6715,8029,10069,9731,6491,8741,17901,13684,10312,12181
-2019F,WA,SGICP,2104,1969,2059,2176,2215,2448,2485,2582,2834,2961,2906,3882,4256,4251,4294,4327,4139,4366,4472,4399,4210,4789,5264,5150,5532,5753,6687,7057,7410,8101,8143,8331,8785,8499,8795,8870,9012,8858,8650,8684,8872,9076,8981,9210,9336,9479,9502,9275,8886,9036,9107,9152,9362,9129,8946,8702,8763,8647,8934,8478
-2019F,WA,SNICP,0,0,0,0,181,196,278,231,248,272,288,203,217,219,218,187,281,293,352,356,343,237,220,259,346,266,185,206,162,153,153,122,145,145,112,98,116,113,167,227,152,140,182,143,91,111,115,129,140,76,43,37,24,164,174,163,154,29,26,27
-2019F,WA,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,5,6,8,10,13,19,24,30
-2019F,WA,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,2,44
-2019F,WA,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-2019F,WA,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,5,10,16,28,46,76,97,126,175
-2019F,WA,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,5,9,16,23,37,56,90,116,151,248
-2019F,WA,TPOPP,2855,2882,2942,2955,2961,2967,3057,3174,3270,3343,3413,3448,3448,3479,3550,3621,3694,3776,3889,4018,4155,4236,4277,4300,4344,4400,4453,4532,4640,4746,4903,5026,5161,5279,5375,5481,5570,5675,5770,5843,5911,5986,6052,6104,6179,6257,6371,6462,6562,6667,6743,6827,6899,6966,7058,7167,7300,7428,7527,7614
-2019F,WA,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1228,-1560,-892,-1579,-1666,-1731,-1873,-1439,-2152,-2101,-2708,-2219,-2424,-1757,-2068,-729,-649,-1946,-1792,-2531,-481,-859,-311,-470,18,443,408,-334,-498,178,356,391,102,-490,-107,51,450,185,811
-2019F,WA,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,WXICP,23,23,21,20,19,20,26,25,28,30,30,78,80,103,101,90,91,76,79,77,75,47,36,40,39,40,39,42,43,43,43,98,103,111,113,113,155,139,135,119,105,130,115,111,110,112,115,96,84,54,75,66,67,76,68,57,59,42,52,43
-2019F,WA,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,604,737,498,1038,2438,3657,3572,4745,6262,6600,7004,7268,7075,8042,6925,7900,6677
-2019F,WA,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WA,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,604,737,498,1038,2438,3657,3572,4745,6262,6600,7004,7268,7075,8042,6925,7900,6677
-2019F,WA,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,2,0,0,0,0,0,0,0,0,3,2,3,4,2,3,2,2,3,3,4,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,ARICP,2847,2450,2641,2566,2187,2806,3171,3073,2893,3805,4671,4461,4408,5001,3635,3019,3578,3153,4079,3316,3016,1948,2111,2041,1516,1690,2055,2396,3416,3805,3685,3332,3105,3253,3521,4154,4126,5155,6012,6192,5783,5971,5267,6645,6598,6285,5881,5297,4639,3922,4529,4729,4138,4276,4536,3963,4067,4279,4025,3643
-2019F,WI,ARTCP,2847,2450,2641,2566,2187,2806,3171,3073,2893,3805,4671,4461,4408,5001,3635,3019,3578,3153,4079,3316,3016,1948,2111,2041,1516,1690,2055,2396,3416,3805,3685,3332,3105,3253,3521,4154,4126,5155,6012,6192,5783,5971,5267,6645,6598,6285,5881,5297,4639,3922,4529,4729,4138,4276,4536,3963,4067,4279,4025,3643
-2019F,WI,ARTXP,2847,2450,2641,2566,2187,2806,3171,3073,2893,3805,4671,4461,4408,5001,3635,3019,3578,3153,4079,3316,3016,1948,2111,2041,1516,1690,2055,2396,3416,3805,3685,3332,3105,3253,3521,4154,4126,5155,6012,6192,5783,5971,5267,6645,6598,6285,5881,5297,4639,3922,4529,4729,4138,4276,4536,3963,4067,4279,4025,3643
-2019F,WI,AVACP,427,382,679,678,639,636,627,626,548,358,332,274,279,200,198,173,172,182,128,113,124,108,31,113,96,102,108,83,93,129,122,105,121,119,285,374,367,486,454,134,112,236,126,54,162,83,71,61,64,44,54,59,57,52,60,62,60,59,64,66
-2019F,WI,AVTCP,427,382,679,678,639,636,627,626,548,358,332,274,279,200,198,173,172,182,128,113,124,108,31,113,96,102,108,83,93,129,122,105,121,119,285,374,367,486,454,134,112,236,126,54,162,83,71,61,64,44,54,59,57,52,60,62,60,59,64,66
-2019F,WI,AVTXP,427,382,679,678,639,636,627,626,548,358,332,274,279,200,198,173,172,182,128,113,124,108,31,113,96,102,108,83,93,129,122,105,121,119,285,374,367,486,454,134,112,236,126,54,162,83,71,61,64,44,54,59,57,52,60,62,60,59,64,66
-2019F,WI,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,7,14,46,132,179,154,163,132,449,453,715,715,620,880,739,715,571
-2019F,WI,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,7,14,46,132,179,154,163,132,449,453,715,715,620,880,739,715,571
-2019F,WI,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,CLACP,81,22,19,18,20,19,17,13,11,8,8,5,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,CLCCP,1127,1213,1145,952,768,870,908,771,783,746,569,699,428,308,338,404,376,281,220,294,40,34,32,40,101,20,26,72,61,14,4,8,4,30,44,113,92,144,114,138,144,169,112,135,137,384,26,50,179,110,112,99,30,32,27,20,21,20,20,20
-2019F,WI,CLEIP,5195,5070,5332,6106,6606,6697,7605,7923,8221,9381,10450,9814,10420,10080,9531,9716,10868,11492,11415,12297,13229,13841,13470,15094,15804,15876,16601,17579,17861,17876,18158,18771,18257,19073,19778,21072,22293,23568,22925,23468,24072,24081,23331,24319,24777,24615,23702,23780,24725,22199,23833,22812,19283,23674,21235,21559,18972,20918,19480,14694
-2019F,WI,CLICP,4710,4829,4802,4924,5417,5789,5863,5514,5038,4905,5147,3854,3534,3064,2604,2439,2593,2414,2279,2492,2364,2304,2285,2265,2020,2132,2109,1980,2099,2053,1960,1878,1835,1811,1984,1949,1678,1757,1687,1651,1693,1651,1716,1723,1766,1695,1758,1762,1682,1519,1572,1541,1388,1403,1452,1214,881,915,900,812
-2019F,WI,CLKCP,340,352,306,345,414,517,470,487,344,438,356,417,430,249,249,248,267,282,158,156,202,189,107,33,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,CLOCP,4370,4476,4496,4579,5004,5273,5393,5027,4695,4467,4791,3437,3104,2815,2355,2191,2326,2132,2122,2336,2162,2115,2178,2232,2019,2131,2109,1980,2099,2053,1960,1878,1835,1811,1984,1949,1678,1757,1687,1651,1693,1651,1716,1723,1766,1695,1758,1762,1682,1519,1572,1541,1388,1403,1452,1214,881,915,900,812
-2019F,WI,CLRCP,1622,1746,1648,1315,1061,1153,1204,1021,996,949,724,672,323,181,159,173,154,109,66,73,11,7,7,8,24,6,8,21,17,4,1,2,1,7,8,17,13,18,14,19,18,21,15,20,15,33,3,6,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,CLTCP,12735,12880,12946,13316,13873,14528,15598,15242,15050,15989,16898,15044,14709,13636,12632,12733,13991,14297,13980,15156,15644,16186,15794,17407,17949,18034,18743,19652,20038,19947,20122,20659,20096,20922,21813,23151,24076,25487,24740,25276,25928,25921,25174,26197,26696,26727,25488,25597,26586,23829,25516,24453,20701,25109,22713,22793,19875,21853,20400,15526
-2019F,WI,CLTXP,7540,7810,7614,7210,7266,7831,7993,7319,6828,6608,6449,5230,4289,3556,3102,3017,3123,2804,2565,2859,2415,2345,2324,2313,2145,2158,2143,2073,2177,2071,1965,1888,1839,1848,2035,2078,1783,1919,1815,1808,1855,1840,1843,1878,1919,2112,1787,1818,1862,1629,1683,1641,1418,1435,1479,1234,903,935,920,832
-2019F,WI,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,DFACP,1773,1651,2153,2209,2371,2148,2318,2757,3440,3782,4179,4734,5075,5555,5632,6064,6852,7352,8263,9415,8570,8420,8119,8301,8487,9749,9927,10422,12175,12900,12388,11564,11824,12438,13951,14524,15179,15625,16092,16622,16286,16993,16910,16461,18147,17500,19311,19125,18611,17271,18278,17962,18770,18251,20240,20027,19307,18734,20972,20995
-2019F,WI,DFCCP,1817,1849,1931,1906,1878,1911,1927,2096,2036,1950,1900,1909,1925,1906,1863,1786,2031,2032,2072,1988,1682,1152,1278,3759,4617,3294,1818,1978,1900,2349,2128,1955,1539,1552,1189,982,978,1257,1386,1447,1344,1433,1210,1459,1323,1238,895,1010,1264,986,662,834,769,621,702,719,714,786,648,623
-2019F,WI,DFEIP,5,4,4,4,4,6,8,8,22,21,124,118,40,422,491,541,633,653,1268,776,499,351,257,251,181,251,260,173,229,168,114,147,82,125,220,194,161,263,328,351,284,200,135,218,273,286,246,299,164,94,86,84,100,71,124,67,70,73,82,114
-2019F,WI,DFICP,6950,7339,7484,7527,7543,7654,7820,8594,8274,8207,7917,8000,7922,7791,7432,7150,8109,8077,8281,7694,3589,3555,3292,3196,3926,3192,3628,3411,3663,3917,4178,4093,4148,4795,4589,4111,4721,4615,4591,6962,8360,9726,8941,5190,5578,5646,5570,5670,5317,3724,3674,3828,3952,4353,4530,4392,4106,4418,4376,4449
-2019F,WI,DFRCP,11206,11405,11908,11757,11584,11790,11886,12932,12560,12026,11721,11776,11872,11757,11494,11019,12530,12531,12780,12264,8155,7490,7565,4958,6089,6669,6764,6365,6863,6286,5385,5115,4716,5150,4370,3659,3869,3239,2801,3240,3027,3341,2855,3029,2919,2640,2365,1980,2060,1243,1098,943,718,798,926,778,714,706,869,847
-2019F,WI,DFTCP,21750,22249,23480,23404,23380,23508,23958,26387,26333,25985,25841,26538,26833,27430,26913,26561,30155,30646,32663,32137,22495,20968,20511,20465,23301,23154,22396,22348,24829,25621,24192,22873,22310,24061,24319,23471,24908,24999,25199,28622,29301,31694,30051,26357,28240,27309,28387,28085,27415,23317,23799,23650,24310,24094,26521,25982,24911,24716,26947,27028
-2019F,WI,DFTXP,21745,22244,23476,23400,23376,23503,23950,26379,26311,25964,25716,26419,26794,27008,26421,26020,29521,29993,31395,31361,21995,20617,20255,20214,23120,22904,22137,22175,24600,25452,24079,22727,22228,23935,24099,23278,24747,24736,24871,28271,29017,31494,29916,26140,27967,27023,28141,27786,27252,23223,23712,23567,24210,24022,26397,25916,24841,24643,26865,26915
-2019F,WI,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,878,840,403,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7348,7803,8415,9653,9790,11328,11406,15062,12068,12514,13394,13416,16165,14745,15871,16571,16051,16114,14492,13345,11536,12213,12179,10047,15065,8784,11035,9987,11010,12109
-2019F,WI,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,878,807,399,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2,4,27,32,24,48,134,191,477,416,350,385,846,1338,1566,814,687,769,1951,3116,2580,2440,3970,3595,4487,5558,5708,6425,5882,5803,5906,6252,6288,6273,6224,6407,6394
-2019F,WI,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,0,1,1,2,1,1,1,1,3,4,4,4,6,3,4,5,5,6,6,6,6,5,120,120,122,122,124
-2019F,WI,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,10,7,6,7,15,22,26,9,9,10,40,68,57,69,114,119,124,90,95,111,108,101,104,77,107,105,106,108,108
-2019F,WI,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2,4,28,33,25,49,138,196,489,425,356,392,861,1362,1594,824,697,781,1993,3188,2641,2512,4090,3718,4615,5653,5808,6541,5995,5909,6016,6335,6516,6498,6452,6636,6627
-2019F,WI,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-2019F,WI,ESCCP,3059,3232,3430,3604,3812,4160,4526,4821,5253,5683,6180,6579,7115,8265,8177,8342,8815,9236,9663,10013,10019,10228,10216,10345,12955,12087,12329,12174,12931,13122,13408,13997,13929,14373,15037,15642,16188,16480,16934,18381,19055,19430,19890,20056,19349,22501,22756,23491,23473,22476,23001,23055,23233,23658,23757,23514,23884,23641,24093,23546
-2019F,WI,ESICP,4230,4258,4722,5227,5694,6153,6774,7156,7866,8451,8570,8924,9723,10093,10294,10823,11563,12266,13107,13494,13290,14064,13410,14232,15738,17195,17799,17374,18552,18995,19405,19686,20382,21410,22714,23690,23871,25103,26040,25665,26162,25370,25534,25821,27435,25376,25286,25436,24672,22390,23452,23407,23561,23370,23812,23970,24038,24205,24425,23615
-2019F,WI,ESRCP,5298,5574,5870,6143,6498,6963,7395,7898,8516,9190,9825,10343,11055,11449,11513,11782,12133,12618,13046,13285,13597,13735,13978,14440,16025,16307,16557,15429,16383,16259,16385,17349,16615,17373,17660,18635,18685,18510,19087,19502,19929,20418,21575,21364,21192,22458,21779,22374,21976,21421,22299,22150,22026,22096,21926,21215,21814,21233,22441,21995
-2019F,WI,ESRPP,1337,1390,1450,1494,1560,1645,1730,1835,1960,2099,2218,2318,2455,2531,2533,2573,2640,2727,2808,2837,2886,2906,2956,3058,3384,3435,3482,3229,3397,3348,3341,3495,3306,3417,3440,3594,3573,3515,3603,3657,3708,3776,3962,3899,3843,4049,3905,3988,3896,3778,3919,3882,3850,3851,3811,3681,3777,3665,3863,3776
-2019F,WI,ESTCP,12586,13063,14022,14975,16004,17276,18695,19874,21635,23323,24575,25846,27894,29807,29984,30947,32511,34120,35816,36792,36906,38027,37604,39018,44718,45590,46685,44976,47866,48376,49198,51032,50925,53156,55412,57967,58744,60094,62061,63547,65146,65218,66999,67241,67976,70336,69821,71301,70122,66286,68752,68612,68820,69124,69495,68699,69736,69079,70960,69158
-2019F,WI,ESTPP,3177,3258,3463,3642,3842,4082,4374,4619,4979,5327,5549,5792,6195,6588,6596,6758,7074,7375,7709,7857,7832,8046,7952,8264,9443,9602,9817,9413,9926,9961,10031,10280,10134,10454,10794,11180,11232,11411,11715,11917,12123,12062,12304,12272,12328,12682,12518,12708,12431,11692,12082,12025,12030,12047,12079,11921,12075,11924,12215,11873
-2019F,WI,ESTXP,12586,13063,14022,14975,16004,17276,18695,19874,21635,23323,24575,25846,27894,29807,29984,30947,32511,34120,35816,36792,36906,38027,37604,39018,44718,45590,46685,44976,47866,48376,49198,51032,50925,53156,55412,57967,58744,60094,62061,63547,65146,65218,66999,67241,67976,70336,69821,71301,70122,66286,68752,68612,68820,69124,69495,68699,69736,69079,70960,69158
-2019F,WI,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,FSICP,0,0,0,19,19,18,20,18,21,24,34,42,39,32,44,48,50,42,47,29,34,17,19,24,31,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,HLACP,23,28,33,36,30,36,44,58,86,103,74,88,98,106,104,93,103,125,139,132,84,191,164,211,271,184,138,125,135,122,118,139,120,151,294,123,106,99,176,52,45,98,81,136,119,172,176,160,237,167,41,45,39,38,33,35,38,89,76,65
-2019F,WI,HLCCP,346,349,419,469,464,478,635,677,696,714,725,749,821,774,742,699,725,699,675,397,386,350,364,433,423,394,396,439,451,575,542,678,641,721,709,720,966,854,767,905,853,807,964,1157,1022,663,607,655,949,738,891,812,675,843,913,875,852,1021,1435,1366
-2019F,WI,HLICP,1088,995,782,1013,762,866,933,637,695,1008,1009,1037,1206,1592,1627,1996,2774,4231,2827,3151,2444,1558,2444,1806,1426,1611,1625,1516,1791,1577,1619,2166,1836,1916,2217,2089,2253,2077,1312,2727,3332,2662,3462,2428,3579,3549,3379,3234,1217,1459,1321,1513,1507,1858,2160,2161,1722,1338,1773,1709
-2019F,WI,HLRCP,2801,2825,3392,3795,3754,3866,5138,5480,5628,5774,5870,6061,6643,6262,5999,5659,5868,5652,5465,3208,3123,2832,2943,3500,3420,3188,3202,3552,3652,4654,4385,5487,5183,5837,5737,5821,7814,6906,6205,7324,6899,6528,7798,6937,6837,6953,5994,6315,7162,6498,6230,6225,4995,6724,7085,6199,5835,5800,6354,8479
-2019F,WI,HLTCP,4258,4197,4626,5313,5011,5246,6751,6852,7105,7599,7679,7935,8769,8735,8472,8448,9470,10705,9106,6888,6036,4932,5914,5950,5540,5377,5361,5632,6029,6929,6664,8471,7780,8626,8957,8753,11139,9935,8461,11009,11129,10094,12304,10658,11556,11337,10155,10363,9565,8861,8483,8595,7215,9463,10190,9270,8447,8247,9638,11619
-2019F,WI,HLTXP,4258,4197,4626,5313,5011,5246,6751,6852,7105,7599,7679,7935,8769,8735,8472,8448,9470,10705,9106,6888,6036,4932,5914,5950,5540,5377,5361,5632,6029,6929,6664,8471,7780,8626,8957,8753,11139,9935,8461,11009,11129,10094,12304,10658,11556,11337,10155,10363,9565,8861,8483,8595,7215,9463,10190,9270,8447,8247,9638,11619
-2019F,WI,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,4,4,4,10,8,9,5,4,4,0,5,2,7,0,1,0,0,1,0,2,0,0,0,0,0,0,0
-2019F,WI,HYEGP,2061,1706,1829,1307,1267,1825,1724,1739,2049,1825,1597,1883,2109,2108,1706,1719,1375,1550,2061,2025,1857,1884,2164,2298,2080,2288,2161,1319,1230,1330,1802,2280,2134,2203,1926,2109,2414,2195,1518,1734,1754,1900,2297,1653,1783,1530,1475,1336,1453,1281,1976,1994,1411,1824,2314,2178,2619,2489,2251,2527
-2019F,WI,HYICP,338,311,308,244,265,306,328,333,342,333,306,347,304,336,314,318,277,271,310,269,258,258,258,258,258,258,258,258,258,146,201,225,256,280,298,266,272,280,220,246,227,152,218,185,195,203,204,179,163,113,135,153,117,155,158,163,176,168,141,114
-2019F,WI,HYTCP,2399,2017,2137,1551,1532,2131,2052,2072,2391,2158,1904,2230,2413,2444,2020,2037,1652,1821,2371,2294,2115,2142,2422,2556,2338,2546,2419,1576,1488,1476,2014,2517,2402,2487,2228,2378,2696,2483,1747,1985,1986,2056,2515,1843,1981,1740,1679,1516,1616,1394,2112,2147,1530,1979,2472,2341,2795,2657,2392,2641
-2019F,WI,HYTXP,338,311,308,244,265,306,328,333,342,333,306,347,304,336,314,318,277,271,310,269,258,258,258,258,258,258,258,258,258,146,213,237,268,284,302,270,282,289,230,251,231,156,218,190,197,210,204,180,163,113,136,153,119,155,158,163,176,168,141,114
-2019F,WI,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,JFACP,245,258,357,469,513,629,629,938,1346,1687,1603,1872,1910,2208,2085,2169,2168,2248,2370,2591,2397,2282,2097,1843,1605,1663,1562,1448,1344,1343,1424,1352,1721,1912,1975,2044,1530,1950,1866,3407,3139,2590,2293,1336,2641,2858,2748,2227,2638,2493,2937,2802,2196,2235,2219,2289,2357,2473,2599,2859
-2019F,WI,JFTCP,245,258,357,469,513,629,629,938,1346,1687,1603,1872,2014,2283,2146,2206,2243,2291,2370,2591,2397,2282,2097,1843,1605,1663,1562,1448,1344,1343,1424,1352,1721,1912,1975,2044,1530,1950,1866,3407,3139,2590,2293,1336,2641,2858,2748,2227,2638,2493,2937,2802,2196,2235,2219,2289,2357,2473,2599,2859
-2019F,WI,JFTXP,245,258,357,469,513,629,629,938,1346,1687,1603,1872,1910,2208,2085,2169,2168,2248,2370,2591,2397,2282,2097,1843,1605,1663,1562,1448,1344,1343,1424,1352,1721,1912,1975,2044,1530,1950,1866,3407,3139,2590,2293,1336,2641,2858,2748,2227,2638,2493,2937,2802,2196,2235,2219,2289,2357,2473,2599,2859
-2019F,WI,KSCCP,101,137,124,114,97,54,55,154,157,151,132,96,68,68,50,43,33,27,30,10,57,5,130,8,5,18,4,5,7,6,9,9,10,11,8,10,12,7,10,7,10,21,13,27,32,30,25,9,6,5,4,3,2,3,5,2,5,3,3,2
-2019F,WI,KSICP,1636,1227,1133,967,912,535,594,1946,2006,1652,1262,988,633,607,455,401,348,305,299,89,41,48,33,29,18,21,20,10,9,17,11,10,12,19,16,15,20,15,16,49,57,50,31,25,32,36,22,14,7,7,7,6,2,2,4,2,6,3,3,5
-2019F,WI,KSRCP,1227,1669,1507,1396,1189,660,670,1884,1914,1845,1608,1170,831,824,605,530,397,332,363,122,124,72,79,81,111,195,71,101,54,40,29,30,29,47,34,34,41,44,39,61,44,40,30,27,40,28,27,14,9,27,27,37,6,9,16,10,14,9,9,14
-2019F,WI,KSTCP,2964,3033,2764,2477,2198,1249,1319,3985,4077,3648,3002,2254,1533,1499,1110,974,778,665,692,221,222,125,242,118,134,234,95,116,69,63,48,49,51,76,58,59,73,67,65,117,111,112,74,79,104,94,73,36,23,39,38,46,10,14,25,14,25,15,15,20
-2019F,WI,KSTXP,2964,3033,2764,2477,2198,1249,1319,3985,4077,3648,3002,2254,1533,1499,1110,974,778,665,692,221,222,125,242,118,134,234,95,116,69,63,48,49,51,76,58,59,73,67,65,117,111,112,74,79,104,94,73,36,23,39,38,46,10,14,25,14,25,15,15,20
-2019F,WI,LUACP,527,513,530,530,557,493,512,496,545,542,552,590,632,602,576,497,552,522,561,587,523,501,457,479,510,476,465,526,507,520,535,479,488,497,519,511,495,523,548,554,545,500,494,456,462,460,448,463,430,386,458,429,406,413,454,487,451,405,411,388
-2019F,WI,LUICP,345,336,366,366,385,405,421,356,391,432,440,385,412,618,592,426,473,496,533,558,497,476,434,455,485,452,442,500,482,494,508,455,464,472,494,485,471,497,521,526,518,475,469,434,439,437,426,440,408,367,452,425,407,440,448,504,456,433,432,400
-2019F,WI,LUTCP,872,849,896,896,941,898,933,851,935,974,992,975,1044,1220,1168,923,1025,1019,1094,1145,1019,977,891,933,995,927,907,1025,989,1014,1044,934,952,969,1013,996,966,1021,1069,1080,1064,974,963,890,902,897,874,903,838,753,910,854,813,853,902,991,907,837,842,788
-2019F,WI,LUTXP,872,849,896,896,941,898,933,851,935,974,992,975,1044,1220,1168,923,1025,1019,1094,1145,1019,977,891,933,995,927,907,1025,989,1014,1044,934,952,969,1013,996,966,1021,1069,1080,1064,974,963,890,902,897,874,903,838,753,910,854,813,853,902,991,907,837,842,788
-2019F,WI,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-117,-101,-72,-35,-84,-116,-52,-24,24,23,-11,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,MGACP,30056,30023,30742,31660,32237,33446,35500,36151,38369,40800,42956,44490,47212,49020,48761,49469,51484,52985,55137,52266,47897,46797,45007,45424,45188,45136,46074,46205,48367,47983,47890,48655,49257,50759,52045,54068,55313,54731,58019,58138,57334,57605,58986,59496,59364,59571,58533,60542,59198,59506,60540,58297,57979,57772,61163,60349,60540,59799,62075,60850
-2019F,WI,MGCCP,295,313,275,317,293,309,274,289,284,287,56,50,54,53,53,52,51,50,61,60,76,81,86,269,255,283,280,284,286,279,320,247,212,50,89,51,80,51,52,85,79,79,80,83,86,86,56,56,56,55,55,55,55,56,53,1153,1159,1174,1178,1182
-2019F,WI,MGICP,2774,2803,2878,2654,2487,2541,2118,2228,2669,2127,2471,2277,2359,2166,1888,2027,2106,1899,1593,1455,1633,1354,1140,1145,1204,1137,1067,1001,869,868,780,997,816,825,914,934,921,914,669,753,780,1186,1285,1323,1679,1710,1938,1677,958,990,1042,1067,1011,1018,756,1029,1011,1019,1042,1031
-2019F,WI,MGTCP,33125,33140,33894,34631,35017,36295,37892,38668,41322,43215,45483,46818,49625,51239,50702,51548,53642,54934,56790,53781,49606,48233,46233,46837,46648,46557,47421,47490,49522,49130,48989,49898,50285,51634,53048,55053,56313,55696,58740,58976,58194,58870,60351,60902,61130,61367,60526,62275,60212,60551,61638,59419,59044,58846,61973,62532,62710,61991,64295,63063
-2019F,WI,MGTXP,33125,33140,33894,34631,35017,36295,37892,38668,41322,43215,45483,46818,49625,51239,50702,51548,53642,54934,56790,53781,49606,48233,46233,46837,46648,46557,47421,47490,49522,49130,48989,49898,50285,51634,53048,55053,56313,55696,58740,58976,58194,58870,60351,60902,61130,61367,60526,62275,60212,60551,61638,59419,59044,58846,61973,62532,62710,61991,64295,63063
-2019F,WI,MSICP,33,37,41,22,22,21,23,21,23,22,20,49,51,63,80,108,101,115,100,92,88,216,190,170,146,147,76,76,92,85,76,141,92,87,98,90,582,639,778,732,780,163,175,165,148,148,98,97,103,110,115,119,117,267,285,295,299,433,431,392
-2019F,WI,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,NGACP,540,398,392,411,1313,1531,2180,2780,2683,3071,6567,5561,6234,5420,5427,4957,2309,2380,1667,3884,8246,8110,3968,2754,2970,2794,3736,3408,4314,4179,4414,4423,4011,3664,9891,4250,4265,4552,4415,4314,4238,3072,4018,3778,3585,3760,3179,2925,2712,1714,3029,2666,1839,2903,3827,3504,3692,3992,4372,4462
-2019F,WI,NGCCP,10882,12745,17352,16787,19283,23541,28922,33610,36067,52315,54555,47662,43753,55012,65705,67485,57702,61280,77890,80756,77107,68075,69694,68020,70230,72803,55275,57750,66939,70090,66339,71516,71314,77079,78609,84888,93816,88729,81316,81689,81139,76095,85811,87131,82187,86086,86342,89016,97137,91459,82204,87040,76949,99434,107003,90175,88679,90470,100026,101576
-2019F,WI,NGEIP,2068,10687,12302,12468,9457,14406,16068,20170,22340,31359,30604,29153,28110,29667,33815,19935,11985,6365,8312,21213,13739,7427,4318,3514,1942,1317,1783,2176,2739,2377,2682,2706,2885,3599,4390,9929,7373,15776,24377,21261,21222,22358,20541,24130,21291,58618,43977,54157,41135,41006,42639,47727,86975,61188,60285,100502,119613,107337,129495,148245
-2019F,WI,NGICP,29712,37731,47673,58911,71686,81564,93608,100479,117250,128410,140888,155998,138081,167338,159887,152443,120372,159843,153984,136992,129532,129591,115882,112495,116981,115267,107274,112877,121819,127439,121896,128798,130267,134073,135106,146070,149517,155677,141980,145703,151923,132982,137706,137605,141084,130570,118396,121111,127818,119711,121408,126856,124338,136034,141661,136709,144801,154920,164613,162622
-2019F,WI,NGRCP,47418,52118,58797,63777,68463,79442,83897,90994,93425,101124,105208,109758,104648,110524,116314,119981,122786,119292,128873,124672,123233,111408,118145,112316,112952,116184,110780,103154,121335,127009,114050,124081,123405,130134,128175,136012,147893,135819,115946,127607,135095,125277,137234,142067,135169,131215,120567,131160,140576,133176,123618,129445,112554,142985,150409,126854,125449,131018,144521,151591
-2019F,WI,NGTCP,90620,113679,136516,152354,170202,200484,224675,248033,271765,316279,337822,348132,320826,367961,381148,364801,315154,349160,370726,367517,351857,324611,312007,299099,305075,308365,278848,279365,317146,331093,309380,331524,331881,348549,356171,381149,402864,400553,368034,380575,393617,359784,385310,394711,383316,410250,372462,398370,409378,387066,372898,393734,402655,442544,463185,457744,482234,487737,543027,568496
-2019F,WI,NGTPP,22.9,28.4,33.7,37.1,40.9,47.4,52.6,57.6,62.5,72.2,76.3,78,71.3,81.3,83.8,79.7,68.6,75.5,79.8,78.5,74.7,68.7,66,63.3,64.4,64.9,58.6,58.5,65.8,68.2,63.1,66.8,66,68.5,69.4,73.5,77,76.1,69.5,71.4,73.2,66.5,70.8,72,69.5,74,66.8,71,72.6,68.3,65.5,69,70.4,77.1,80.5,79.4,83.5,84.2,93.5,97.6
-2019F,WI,NGTXP,88552,102992,124214,139886,160745,186078,208607,227863,249425,284920,307218,318979,292716,338294,347333,344866,303169,342795,362414,346304,338118,317184,307689,295585,303133,307048,277065,277189,314407,328717,306698,328818,328997,344950,351781,371220,395491,384777,343657,359314,372394,337426,364769,370581,362025,351632,328485,344213,368243,346060,330259,346007,315680,381356,402900,357242,362621,380400,413532,420251
-2019F,WI,NUEGP,0,0,0,0,0,0,0,0,0,0,157,3469,3294,5952,8256,10293,10722,10945,11718,10403,9911,9719,10268,9299,10745,10979,11199,11311,11464,10848,11226,10991,11207,11465,11516,10970,10121,3916,9397,11495,11512,11507,12449,12215,11888,9921,12234,12910,12155,12683,13281,11560,14300,11675,9447,10008,10151,9649,10129,10030
-2019F,WI,NUETP,0,0,0,0,0,0,0,0,0,0,157,3469,3294,5952,8256,10293,10722,10945,11718,10403,9911,9719,10268,9299,10745,10979,11199,11311,11464,10848,11226,10991,11207,11465,11516,10970,10121,3916,9397,11495,11512,11507,12449,12215,11888,9921,12234,12910,12155,12683,13281,11560,14300,11675,9447,10008,10151,9649,10129,10030
-2019F,WI,OPICP,521,500,569,550,1120,1121,854,776,885,996,1075,1245,1326,1427,1523,1444,1435,1334,1428,1392,1347,1201,1115,1287,1466,1171,1056,1192,1160,1147,1140,1269,1426,1390,1309,1217,2008,2011,2273,2493,2103,1361,1462,1356,1148,1267,1252,1244,1205,936,906,941,909,1569,1564,1518,1505,2109,1678,1480
-2019F,WI,OPTCP,521,500,569,550,1120,1121,854,776,885,996,1075,1245,1326,1427,1523,1444,1435,1334,1428,1392,1347,1201,1115,1287,1466,1171,1056,1192,1160,1147,1140,1269,1426,1390,1309,1217,2008,2011,2273,2493,2103,1361,1462,1356,1148,1267,1252,1244,1205,936,906,941,909,1569,1564,1518,1505,2109,1678,1480
-2019F,WI,OPTXP,521,500,569,550,1120,1121,854,776,885,996,1075,1245,1326,1427,1523,1444,1435,1334,1428,1392,1347,1201,1115,1287,1466,1171,1056,1192,1160,1147,1140,1269,1426,1390,1309,1217,2008,2011,2273,2493,2103,1361,1462,1356,1148,1267,1252,1244,1205,936,906,941,909,1569,1564,1518,1505,2109,1678,1480
-2019F,WI,P1ICP,5358,4522,4758,4497,4658,4926,5102,6212,6251,6978,7555,7190,6927,7819,6341,5430,5960,5404,6458,5453,4993,3766,3793,3933,3610,3457,3708,4233,5243,5640,5725,5523,5440,5943,6205,6740,7506,8487,9610,10183,9218,8797,8315,9488,9175,8997,8650,8033,7296,6262,6889,7077,6426,7254,7372,6620,6394,6962,6273,5656
-2019F,WI,P1TCP,7640,7223,7598,7216,7141,6769,6966,9372,9414,9875,10420,9525,8956,9624,7788,6710,7130,6474,7545,6326,5829,4492,4508,4613,4356,4270,4357,4948,5903,6335,6420,6145,6131,6727,7213,7812,8554,9726,10843,11139,10121,9792,9208,10336,10727,10442,10494,9939,9104,7697,8425,8364,7054,7885,8131,7363,7137,7730,7036,6372
-2019F,WI,P1TXP,7640,7223,7598,7216,7141,6769,6966,9372,9414,9875,10179,9320,8738,9512,7770,6673,7114,6468,7540,6284,5820,4453,4489,4613,4333,4247,4357,4948,5903,6335,6420,6145,6089,6617,7052,7668,8422,9548,10661,10938,9929,9594,8977,10052,9871,9598,9221,8579,7804,6725,7432,7604,6897,7731,7906,7181,6924,7437,6761,6125
-2019F,WI,PAACP,33430,33421,34914,36207,36924,37765,40032,41334,44364,47288,49703,52066,55261,57752,57435,58751,61719,63757,67050,65437,59829,58377,55903,56489,56371,57447,58369,58809,62625,63001,62478,62294,63540,65887,69080,71666,73023,73426,77169,78912,77468,78025,78894,77941,80899,80745,81418,82614,81184,79866,82308,79593,79446,78760,84168,83249,82754,81559,86200,85230
-2019F,WI,PACCP,3113,3143,3227,3298,3229,3158,3277,3486,3442,3378,3058,2999,3070,2990,2891,2750,3130,3128,3096,2665,2231,1600,1896,4477,5306,4095,2751,2821,2892,3505,3215,3067,2630,2529,2159,1871,2166,2301,2448,2612,2465,2539,2634,3119,2712,2313,1664,1755,2275,1784,1613,1705,1501,1522,1674,2750,2729,2983,3265,3173
-2019F,WI,PAEIP,50,43,42,43,40,59,78,77,223,212,1497,970,1104,1468,870,1163,1508,1731,2643,1359,576,404,275,251,205,274,260,173,229,168,114,147,125,235,381,337,293,441,511,553,478,400,366,501,1129,1130,1519,1660,1463,1066,1080,843,257,226,348,249,283,366,358,361
-2019F,WI,PAICP,19585,18689,18804,18700,18492,18358,18281,19369,19573,20034,20506,19802,19827,20779,18605,17708,20699,21560,20740,19145,14097,10997,12734,10746,10611,9556,10726,11225,12408,12726,13193,13446,12848,14523,15019,14573,16259,17013,16857,21461,22612,23085,22681,18964,20912,20973,20176,19354,15503,12680,13032,13605,12997,14551,14868,14283,13375,13902,13634,12985
-2019F,WI,PARCP,15233,15899,16808,16949,16527,16315,17694,20296,20101,19644,19198,19006,19347,18843,18099,17208,18794,18516,18608,15594,11402,10394,10586,8539,9620,10052,10037,10018,10568,10980,9798,10633,9928,11034,10140,9515,11724,10189,9046,10625,9970,9909,10682,9993,9796,9621,8386,8308,9231,7768,7355,7204,5719,7532,8026,6986,6563,6514,7232,9340
-2019F,WI,PATCP,71412,71196,73795,75197,75212,75656,79361,84563,87702,90556,93962,94842,98609,101832,97901,97579,105851,108692,112137,104200,88135,81772,81395,80502,82113,81424,82141,83046,88722,90380,88798,89586,89071,94208,96780,97962,103464,103371,106031,114163,112993,113958,115257,110519,115448,114781,113162,113691,109656,103165,105387,102950,99921,102591,109084,107517,105704,105324,110688,111088
-2019F,WI,PATPP,18,17.8,18.2,18.3,18.1,17.9,18.6,19.7,20.2,20.7,21.2,21.3,21.9,22.5,21.5,21.3,23,23.5,24.1,22.3,18.7,17.3,17.2,17.1,17.3,17.1,17.3,17.4,18.4,18.6,18.1,18,17.7,18.5,18.9,18.9,19.8,19.6,20,21.4,21,21.1,21.2,20.2,20.9,20.7,20.3,20.3,19.4,18.2,18.5,18,17.5,17.9,19,18.7,18.3,18.2,19.1,19.1
-2019F,WI,PATXP,71362,71153,73753,75154,75171,75597,79284,84486,87480,90344,92465,93873,97504,100364,97031,96416,104343,106961,109494,102841,87558,81368,81120,80251,81909,81150,81882,82873,88493,90212,88684,89440,88946,93973,96399,97625,103171,102930,105520,113609,112516,113558,114891,110018,114319,113651,111643,112031,108193,102098,104307,102107,99664,102365,108736,107268,105422,104959,110330,110727
-2019F,WI,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,PCEIP,0,0,0,0,0,0,0,0,0,0,240,204,219,112,18,37,16,6,5,41,9,40,18,0,23,24,0,0,0,0,0,0,42,110,161,144,132,178,181,201,192,198,231,284,856,844,1273,1360,1299,972,993,759,157,155,224,182,212,293,276,247
-2019F,WI,PCICP,9,9,48,47,55,59,61,61,76,93,107,110,147,166,136,141,126,115,118,98,92,93,100,121,126,123,135,136,177,178,382,457,434,810,866,869,882,808,789,923,756,940,1086,1028,958,972,1070,1039,1036,1031,995,976,969,967,820,632,360,138,136,128
-2019F,WI,PCTCP,9,9,48,47,55,59,61,61,76,93,347,315,365,277,153,178,142,121,123,139,101,133,118,121,149,147,135,136,177,178,382,457,476,920,1027,1013,1014,986,970,1124,949,1138,1317,1312,1814,1815,2343,2399,2335,2003,1988,1735,1126,1121,1044,814,573,431,412,375
-2019F,WI,PCTXP,9,9,48,47,55,59,61,61,76,93,107,110,147,166,136,141,126,115,118,98,92,93,100,121,126,123,135,136,177,178,382,457,434,810,866,869,882,808,789,923,756,940,1086,1028,958,972,1070,1039,1036,1031,995,976,969,967,820,632,360,138,136,128
-2019F,WI,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,45,39,38,33,35,38,89,76,65
-2019F,WI,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,891,812,675,843,913,875,852,1021,1435,1366
-2019F,WI,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1321,1513,1507,1858,2160,2161,1722,1338,1773,1709
-2019F,WI,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6230,6225,4995,6724,7085,6199,5835,5800,6354,8479
-2019F,WI,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8483,8595,7215,9463,10190,9270,8447,8247,9638,11619
-2019F,WI,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8483,8595,7215,9463,10190,9270,8447,8247,9638,11619
-2019F,WI,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WI,RFACP,378,565,420,625,577,378,402,308,29,15,6,16,53,61,79,285,388,343,453,332,235,77,29,119,214,138,95,0,5,4,2,0,8,11,11,22,32,12,14,7,7,3,4,2,3,101,131,35,6,0,0,0,0,0,0,0,0,0,3,6
-2019F,WI,RFCCP,556,494,479,492,496,407,386,269,269,276,244,195,202,189,184,168,289,320,258,211,30,12,38,8,6,106,252,116,248,296,217,178,229,194,164,108,131,132,234,167,180,199,367,393,250,296,81,25,1,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,RFEIP,45,39,38,39,36,53,70,69,201,191,1132,647,742,859,301,548,784,1029,1370,542,68,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,RFICP,3416,3030,2903,3009,3042,2371,2308,1699,1683,1714,1554,1298,1414,1411,1318,1105,1751,1949,1582,1393,1439,763,2065,666,445,158,697,1064,843,723,891,668,607,1043,1092,699,858,921,674,835,921,714,679,535,901,1071,639,740,715,244,106,121,101,68,50,81,142,167,170,140
-2019F,WI,RFTCP,4394,4129,3840,4165,4152,3209,3166,2345,2182,2196,2936,2155,2411,2520,1881,2106,3211,3641,3663,2478,1772,866,2132,793,664,402,1044,1180,1095,1023,1109,846,844,1247,1268,829,1020,1065,923,1011,1110,918,1050,930,1154,1468,851,800,722,245,106,121,101,68,50,81,142,167,173,147
-2019F,WI,RFTXP,4349,4090,3802,4126,4115,3156,3096,2276,1982,2005,1804,1509,1669,1661,1580,1558,2428,2612,2293,1936,1704,852,2132,793,664,402,1044,1180,1095,1023,1109,846,844,1247,1268,829,1020,1065,921,1009,1108,916,1050,930,1154,1468,851,800,722,245,106,121,101,68,50,81,142,167,173,147
-2019F,WI,SGICP,269,247,333,322,323,266,273,263,324,391,440,409,451,460,538,535,517,456,467,456,437,483,508,503,525,438,501,500,523,545,545,527,542,538,528,520,568,559,492,484,488,496,488,504,500,521,522,507,485,494,497,551,563,549,538,522,525,515,174,0
-2019F,WI,SNICP,0,0,0,0,580,628,374,312,334,366,388,468,502,507,503,433,395,412,495,501,482,548,510,600,802,616,578,644,508,478,477,510,606,606,469,410,577,559,830,1125,753,477,623,490,310,380,398,444,483,262,148,129,84,610,647,605,571,1036,950,987
-2019F,WI,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,4,6,8,16,14,16,17,14,20,35,41
-2019F,WI,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,21,35,36
-2019F,WI,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,11,14,17
-2019F,WI,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,5,6,7,10,16,24,32,45
-2019F,WI,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,4,6,9,12,21,20,25,29,37,77,115,139
-2019F,WI,TPOPP,3962,4009,4049,4112,4165,4232,4274,4303,4345,4378,4429,4462,4502,4524,4546,4579,4596,4627,4646,4683,4712,4726,4729,4721,4736,4748,4756,4778,4822,4857,4905,4964,5025,5085,5134,5185,5230,5266,5298,5333,5374,5407,5445,5479,5514,5546,5578,5611,5641,5669,5691,5706,5721,5738,5753,5763,5775,5793,5809,5825
-2019F,WI,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-124,-150,-87,-150,-127,-130,-133,-102,-145,-141,-171,-137,-153,-106,-121,-46,-41,-111,-100,-139,-26,-47,-17,-25,1,24,22,-18,-27,10,21,24,6,-29,-6,3,27,4,0
-2019F,WI,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WI,WXICP,218,216,195,187,177,189,164,162,183,192,193,276,284,365,358,320,371,310,320,313,306,175,137,149,147,151,147,157,163,161,160,274,291,312,317,317,323,291,282,249,220,248,219,212,210,214,208,174,152,97,136,120,122,137,123,103,107,98,120,101
-2019F,WI,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21
-2019F,WI,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,72,46,98,104,93,101,109,487,1052,1088,1188,1558,1558,1611,1582,1508,1633,1611,1849
-2019F,WI,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,7,7
-2019F,WI,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,72,46,98,104,93,101,109,487,1052,1088,1188,1558,1558,1618,1589,1515,1641,1638,1878
-2019F,WI,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,26,29
-2019F,WV,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,ARICP,918,775,804,711,824,907,746,504,781,678,863,999,1038,911,815,944,1056,890,1155,1163,717,740,663,408,478,430,565,537,879,812,728,528,550,427,692,639,944,1157,1227,762,786,722,1271,716,621,596,879,880,1539,1145,1192,1457,1328,1090,942,1292,1523,890,1094,1342
-2019F,WV,ARTCP,918,775,804,711,824,907,746,504,781,678,863,999,1038,911,815,944,1056,890,1155,1163,717,740,663,408,478,430,565,537,879,812,728,528,550,427,692,639,944,1157,1227,762,786,722,1271,716,621,596,879,880,1539,1145,1192,1457,1328,1090,942,1292,1523,890,1094,1342
-2019F,WV,ARTXP,918,775,804,711,824,907,746,504,781,678,863,999,1038,911,815,944,1056,890,1155,1163,717,740,663,408,478,430,565,537,879,812,728,528,550,427,692,639,944,1157,1227,762,786,722,1271,716,621,596,879,880,1539,1145,1192,1457,1328,1090,942,1292,1523,890,1094,1342
-2019F,WV,AVACP,119,35,13,257,214,201,231,173,157,99,78,67,60,61,62,58,58,61,59,59,65,32,23,44,39,39,50,35,38,38,36,33,0,26,26,27,32,22,30,22,20,35,27,24,29,89,37,36,21,30,24,23,22,19,13,12,9,11,14,15
-2019F,WV,AVTCP,119,35,13,257,214,201,231,173,157,99,78,67,60,61,62,58,58,61,59,59,65,32,23,44,39,39,50,35,38,38,36,33,0,26,26,27,32,22,30,22,20,35,27,24,29,89,37,36,21,30,24,23,22,19,13,12,9,11,14,15
-2019F,WV,AVTXP,119,35,13,257,214,201,231,173,157,99,78,67,60,61,62,58,58,61,59,59,65,32,23,44,39,39,50,35,38,38,36,33,0,26,26,27,32,22,30,22,20,35,27,24,29,89,37,36,21,30,24,23,22,19,13,12,9,11,14,15
-2019F,WV,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,12,17,14,15,12,42,36,177,155,167,335,353,232,163
-2019F,WV,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,12,17,14,15,12,42,36,177,155,167,335,353,232,163
-2019F,WV,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,CLACP,134,38,33,36,39,35,32,25,24,18,16,12,10,7,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,CLCCP,100,99,141,112,95,104,132,158,166,113,84,128,148,163,300,167,134,166,204,242,123,171,158,197,174,63,86,108,86,117,143,79,71,84,73,57,96,93,144,148,193,43,30,37,50,74,22,59,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,CLEIP,5879,6841,7000,7528,7788,8025,9678,11329,13120,14559,14889,16338,19805,23206,25501,25805,27433,27842,25608,27373,28499,30139,27796,28970,31058,31367,30790,30605,31704,32391,29873,27742,28710,29311,31813,31549,33739,35424,36060,37027,36625,32694,37828,37468,35956,37875,37863,38056,37706,29255,32752,31917,29571,30093,31883,28223,29549,27988,25811,23897
-2019F,WV,CLICP,7802,8301,8283,9648,10560,10747,10884,10342,10858,10558,10279,9408,9760,10115,9747,8424,8691,7546,6980,6500,6284,5546,4812,4065,4980,3551,4195,4145,4713,4750,4845,4189,3882,4162,4363,3768,3256,2569,3654,3156,3051,2880,2918,2712,2735,2351,2200,2586,2493,1848,2491,2475,1893,1757,1678,1526,1100,932,1010,1010
-2019F,WV,CLKCP,4126,4148,3949,4617,5055,5417,5275,4789,4992,5162,5138,4453,5016,5412,5302,4392,5270,4477,4168,3804,3822,3295,2499,1852,1996,1402,1894,1760,2036,1947,1927,1880,1616,1755,1726,1784,1626,879,1741,1558,1487,1269,1382,1310,1234,1200,1104,1493,1559,1084,1561,1572,896,752,764,677,574,569,639,673
-2019F,WV,CLOCP,3676,4153,4335,5032,5505,5329,5609,5553,5867,5396,5141,4955,4744,4703,4445,4032,3421,3070,2812,2696,2462,2251,2313,2213,2984,2149,2301,2385,2677,2803,2918,2310,2266,2406,2637,1984,1630,1690,1913,1598,1564,1611,1536,1402,1501,1151,1096,1093,934,764,930,902,998,1006,914,849,526,363,371,337
-2019F,WV,CLRCP,144,143,203,154,131,138,174,209,212,144,107,123,111,96,141,71,55,65,61,61,33,37,32,37,41,18,26,32,24,31,36,17,16,18,13,8,13,12,18,20,24,5,4,6,6,6,2,7,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,CLTCP,14058,15421,15661,17478,18613,19049,20900,22063,24380,25393,25376,26010,29834,33587,35693,34469,36314,35620,32852,34176,34939,35893,32798,33269,36253,34999,35097,34890,36527,37289,34896,32028,32678,33574,36262,35381,37104,38098,39877,40351,39892,35622,40779,40223,38747,40306,40087,40708,40199,31103,35243,34392,31464,31851,33561,29750,30650,28919,26821,24907
-2019F,WV,CLTXP,8179,8581,8660,9950,10826,11023,11222,10733,11260,10833,10487,9672,10029,10381,10192,8664,8881,7778,7245,6803,6440,5754,5002,4299,5195,3632,4307,4285,4823,4898,5023,4285,3969,4264,4449,3833,3365,2674,3816,3324,3268,2928,2952,2755,2790,2431,2225,2652,2493,1848,2491,2475,1893,1757,1678,1526,1100,932,1010,1010
-2019F,WV,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,DFACP,1742,1482,1345,1350,1331,1530,1625,1601,1960,2028,2485,3056,3470,3977,3687,3589,3032,3700,4092,4228,4846,4500,3734,6522,7114,6736,4115,5206,5364,5971,5850,5847,6285,6592,6679,6781,4840,6472,8089,7694,8269,8039,7637,8192,9030,9178,8970,8631,7709,6929,7479,7348,7344,7156,6658,7837,10675,9633,12427,10256
-2019F,WV,DFCCP,75,110,117,125,99,111,134,142,122,111,92,131,198,191,176,213,290,343,247,477,262,710,302,532,626,674,836,515,409,550,526,599,374,466,454,357,264,316,370,318,360,406,325,233,235,230,164,162,137,270,223,416,378,384,436,461,415,362,429,451
-2019F,WV,DFEIP,0,0,0,0,0,0,1,1,1,1,3,4,-4,2,-2,7,0,-2,0,0,679,812,518,418,383,369,381,383,356,402,368,340,307,357,423,338,353,292,324,321,448,422,451,424,460,349,237,324,237,304,271,327,250,269,283,247,215,208,289,230
-2019F,WV,DFICP,452,645,720,803,625,890,995,1109,1307,1304,1087,1113,1396,1388,1308,1533,2031,3315,2488,4091,3585,2517,2283,2147,2525,2119,2094,2891,2961,2879,3173,2986,2548,2910,3295,3315,3142,2842,3048,3040,2937,3168,6142,3372,3606,4267,5201,5298,6031,4855,4986,4877,4664,5139,5131,3060,1770,2887,3410,3613
-2019F,WV,DFRCP,204,301,320,341,270,304,365,388,332,302,250,358,539,522,482,581,792,936,675,1301,1169,892,863,494,580,516,622,724,657,716,682,622,537,606,650,496,599,603,547,481,524,520,504,486,430,382,380,330,340,234,276,241,190,263,239,290,269,200,246,276
-2019F,WV,DFTCP,2473,2540,2502,2619,2326,2837,3118,3241,3722,3746,3917,4663,5598,6080,5651,5922,6146,8292,7502,10097,10541,9432,7701,10113,11228,10414,8049,9718,9747,10518,10597,10393,10051,10930,11501,11287,9197,10526,12378,11854,12539,12554,15060,12708,13761,14406,14953,14744,14453,12591,13235,13208,12826,13211,12747,11895,13345,13290,16801,14826
-2019F,WV,DFTXP,2472,2539,2502,2619,2326,2837,3118,3241,3722,3745,3914,4659,5602,6078,5653,5915,6146,8294,7502,10097,9862,8619,7183,9695,10845,10045,7667,9335,9391,10116,10230,10054,9744,10573,11078,10949,8844,10233,12054,11533,12090,12133,14608,12284,13301,14057,14716,14420,14216,12287,12964,12881,12576,12942,12464,11649,13130,13082,16512,14596
-2019F,WV,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0
-2019F,WV,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-53623,-46961,-48341,-47210,-53640,-51296,-57895,-62110,-63209,-64172,-61817,-51213,-63078,-63204,-57282,-60019,-57862,-56496,-53754,-37940,-46052,-45121,-39905,-41746,-45541,-37228,-41332,-39071,-31217,-28050
-2019F,WV,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0
-2019F,WV,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,64,47,32,5,5,1,0,8,124,307,403,432,110,155,220,1208,1642,1762,1739,1803,1783,1804,1715,1795,1786,1925,1903
-2019F,WV,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,2,2,2,2,3,2,34,35,35,37,37
-2019F,WV,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,2,5,7,9,2,3,4,19,23,17,17,18,19,15,26,27,28,28,28
-2019F,WV,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,65,48,33,5,5,1,0,8,126,312,411,441,112,159,224,1229,1667,1781,1759,1824,1805,1821,1774,1857,1849,1990,1969
-2019F,WV,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0
-2019F,WV,ESCCP,1134,1203,1305,1392,1509,1620,1753,1902,2163,2401,2238,2390,2590,2814,2822,2858,3035,3271,3322,3460,3658,4081,4219,4289,4316,4462,4617,4757,4914,5019,5085,5313,5323,5572,5631,5944,6030,6040,6297,6565,6872,6863,7117,7136,7217,7452,7377,7769,7716,7694,7962,7768,7763,7794,7876,7801,7826,7549,7774,7567
-2019F,WV,ESICP,5915,6108,6577,6934,7357,7984,8279,8158,8915,9455,9426,9260,9492,9977,10271,9102,9816,9987,10077,11017,10567,11083,9913,9669,10017,9673,9003,9067,9925,10195,10469,10206,10370,10187,10482,10867,10820,11180,11161,11126,11083,10978,10902,10687,10942,11312,13916,14661,14738,10985,11623,11720,11856,12021,12829,13065,12875,13586,14193,14527
-2019F,WV,ESRCP,1714,1809,1932,2049,2222,2365,2600,2808,3112,3452,3459,3723,4041,4457,4656,4979,5285,5816,6114,6248,6606,6705,6625,6754,6769,6712,6983,7250,7549,7634,7578,8106,8138,8682,8663,9166,9277,9027,9053,9452,9738,9828,10444,10473,10756,11384,11014,11749,11763,11588,12443,11746,11195,11582,11991,11437,11376,10573,11679,11153
-2019F,WV,ESRPP,925,990,1068,1141,1236,1324,1465,1588,1765,1977,1976,2103,2248,2467,2564,2703,2812,3048,3179,3217,3385,3431,3398,3472,3511,3520,3710,3903,4125,4226,4227,4507,4505,4777,4759,5026,5089,4962,4986,5217,5389,5456,5785,5779,5921,6253,6026,6406,6392,6271,6710,6327,6027,6244,6479,6205,6208,5814,6467,6213
-2019F,WV,ESTCP,8763,9119,9814,10376,11087,11970,12632,12868,14190,15308,15122,15373,16123,17247,17749,16939,18136,19075,19513,20725,20831,21869,20756,20712,21102,20847,20603,21075,22388,22847,23132,23625,23831,24442,24776,25977,26127,26247,26511,27144,27693,27669,28463,28297,28919,30152,32312,34184,34221,30271,32032,31239,30817,31400,32696,32303,32076,31709,33647,33247
-2019F,WV,ESTPP,4729,4989,5425,5777,6170,6702,7117,7274,8049,8768,8636,8682,8969,9548,9776,9195,9649,9997,10145,10671,10675,11191,10646,10648,10947,10933,10945,11345,12232,12647,12905,13134,13192,13448,13610,14244,14333,14429,14602,14982,15325,15359,15765,15614,15921,16563,17677,18638,18595,16383,17275,16826,16591,16929,17668,17524,17505,17435,18631,18519
-2019F,WV,ESTXP,8763,9119,9814,10376,11087,11970,12632,12868,14190,15308,15122,15373,16123,17247,17749,16939,18136,19075,19513,20725,20831,21869,20756,20712,21102,20847,20603,21075,22388,22847,23132,23625,23831,24442,24776,25977,26127,26247,26511,27144,27693,27669,28463,28297,28919,30152,32312,34184,34221,30271,32032,31239,30817,31400,32696,32303,32076,31709,33647,33247
-2019F,WV,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,FSICP,0,0,0,5,5,6,6,8,8,8,9,11,21,17,20,21,22,21,23,15,19,10,7,9,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,HLACP,2,2,9,7,5,4,2,2,1,5,10,11,16,15,14,14,16,18,25,20,14,32,20,24,21,22,20,14,22,20,19,17,21,21,26,12,10,0,0,1,2,0,2,16,13,13,18,11,23,15,9,9,7,6,5,5,4,8,10,11
-2019F,WV,HLCCP,49,64,102,79,67,61,50,40,55,62,58,64,78,70,68,72,72,77,80,91,87,86,56,66,44,49,50,59,73,87,91,86,99,106,107,91,105,148,112,156,164,216,138,235,224,119,183,160,209,203,216,206,207,304,180,157,173,189,209,409
-2019F,WV,HLICP,290,300,370,374,412,627,584,615,729,836,907,969,1076,1217,1386,1095,1049,1084,934,2607,2955,2753,2363,2318,134,871,860,870,814,1049,1103,1340,1136,1232,1373,1443,1625,2077,1555,237,692,223,248,250,274,239,418,261,228,136,2687,2682,2697,2723,2762,2676,2667,2654,2604,2635
-2019F,WV,HLRCP,217,282,449,344,293,269,221,176,241,270,254,280,343,308,296,317,317,339,351,400,379,377,245,291,193,215,219,259,321,380,399,377,435,463,466,398,459,649,490,682,720,946,604,690,1127,677,872,743,847,812,844,794,672,1020,713,790,584,511,643,753
-2019F,WV,HLTCP,558,648,930,803,777,961,857,833,1026,1172,1230,1324,1514,1610,1763,1498,1454,1519,1390,3118,3435,3249,2683,2698,392,1157,1148,1202,1231,1535,1612,1821,1692,1821,1972,1944,2199,2874,2157,1076,1578,1386,992,1192,1638,1048,1491,1176,1307,1165,3755,3691,3583,4053,3660,3627,3427,3361,3465,3809
-2019F,WV,HLTXP,558,648,930,803,777,961,857,833,1026,1172,1230,1324,1514,1610,1763,1498,1454,1519,1390,3118,3435,3249,2683,2698,392,1157,1148,1202,1231,1535,1612,1821,1692,1821,1972,1944,2199,2874,2157,1076,1578,1386,992,1192,1638,1048,1491,1176,1307,1165,3755,3691,3583,4053,3660,3627,3427,3361,3465,3809
-2019F,WV,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,HYEGP,398,475,435,351,387,336,392,465,418,417,437,486,534,497,477,467,420,417,420,513,424,400,428,419,448,368,361,315,297,715,685,531,693,573,602,637,764,630,565,497,698,513,599,630,608,892,1048,806,821,1027,869,894,884,1080,713,832,1143,1125,1160,1143
-2019F,WV,HYICP,540,567,604,450,517,493,375,585,538,535,558,661,712,679,671,595,606,526,504,719,690,690,690,690,690,690,690,690,690,591,610,534,578,541,543,556,661,509,521,433,453,439,467,726,711,556,524,449,427,619,498,559,547,659,529,553,496,534,688,563
-2019F,WV,HYTCP,938,1042,1039,801,904,828,767,1050,957,952,996,1146,1246,1176,1148,1063,1026,943,925,1232,1114,1090,1118,1109,1138,1058,1051,1005,988,1307,1295,1065,1271,1114,1146,1193,1425,1139,1086,930,1151,952,1066,1356,1318,1448,1572,1254,1248,1646,1367,1453,1431,1739,1242,1385,1638,1658,1848,1706
-2019F,WV,HYTXP,540,567,604,450,517,493,375,585,538,535,558,661,712,679,671,595,606,526,504,719,690,690,690,690,690,690,690,690,690,591,610,534,578,541,543,556,661,509,521,433,453,439,467,726,711,556,524,449,427,619,498,559,547,659,529,553,496,534,688,563
-2019F,WV,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WV,JFACP,169,147,153,138,148,130,178,198,250,298,290,231,181,179,195,242,254,282,283,322,353,325,293,277,242,235,219,211,248,380,273,237,271,257,225,174,170,172,175,184,189,191,249,262,252,238,231,236,227,198,162,166,154,129,125,126,127,132,119,124
-2019F,WV,JFTCP,169,147,153,138,148,130,178,198,250,298,290,231,200,193,206,249,285,299,285,324,357,339,297,277,242,235,219,211,248,380,273,237,271,257,225,174,170,172,175,184,189,191,249,262,252,238,231,236,227,198,162,166,154,129,125,126,127,132,119,124
-2019F,WV,JFTXP,169,147,153,138,148,130,178,198,250,298,290,231,181,179,195,242,254,282,283,322,353,325,293,277,242,235,219,211,248,380,273,237,271,257,225,174,170,172,175,184,189,191,249,262,252,238,231,236,227,198,162,166,154,129,125,126,127,132,119,124
-2019F,WV,KSCCP,8,10,10,10,7,9,11,33,15,15,14,16,16,13,10,9,7,9,8,34,37,16,16,61,71,129,55,60,79,76,46,64,32,36,38,37,37,51,57,64,73,63,64,92,81,63,41,25,13,9,8,3,1,3,3,4,2,2,3,4
-2019F,WV,KSICP,120,73,48,24,46,60,69,89,39,65,39,39,54,39,129,144,144,70,66,103,51,71,115,97,126,177,77,118,105,88,39,39,60,65,70,71,77,63,53,18,23,12,7,11,17,21,20,6,2,13,19,7,4,4,7,4,3,1,3,3
-2019F,WV,KSRCP,148,193,192,202,134,184,211,643,297,299,267,313,313,245,186,172,145,175,154,664,408,275,312,257,400,390,455,343,398,345,210,197,245,323,304,287,377,399,473,551,340,354,262,219,255,250,188,123,47,68,67,33,16,18,36,26,37,20,21,25
-2019F,WV,KSTCP,276,277,250,236,187,253,292,765,350,379,320,368,383,296,324,325,297,254,228,801,496,362,443,414,597,696,587,520,582,509,295,300,337,424,412,394,490,513,583,633,436,429,333,322,353,334,249,154,62,91,94,43,20,24,45,34,42,22,27,31
-2019F,WV,KSTXP,276,277,250,236,187,253,292,765,350,379,320,368,383,296,324,325,297,254,228,801,496,362,443,414,597,696,587,520,582,509,295,300,337,424,412,394,490,513,583,633,436,429,333,322,353,334,249,154,62,91,94,43,20,24,45,34,42,22,27,31
-2019F,WV,LUACP,199,193,168,168,176,198,205,170,186,181,185,215,230,222,213,239,266,250,268,281,250,240,219,229,244,228,223,252,243,249,256,229,234,238,249,244,237,250,262,265,261,239,236,218,221,220,214,221,206,185,169,157,145,147,147,170,193,163,184,155
-2019F,WV,LUICP,372,362,363,363,381,438,455,446,490,491,500,546,584,563,539,447,496,420,451,472,420,403,368,385,411,383,374,423,408,418,430,385,393,400,418,411,399,421,441,445,439,402,397,367,372,370,361,372,346,311,234,230,196,219,223,241,220,201,194,193
-2019F,WV,LUTCP,570,555,531,531,558,636,661,616,676,672,684,761,815,785,752,686,762,670,720,753,671,643,586,614,655,610,597,674,650,667,687,614,626,638,666,655,636,672,703,710,700,641,633,586,593,590,575,594,551,496,403,386,340,366,370,411,413,365,378,349
-2019F,WV,LUTXP,570,555,531,531,558,636,661,616,676,672,684,761,815,785,752,686,762,670,720,753,671,643,586,614,655,610,597,674,650,667,687,614,626,638,666,655,636,672,703,710,700,641,633,586,593,590,575,594,551,496,403,386,340,366,370,411,413,365,378,349
-2019F,WV,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-66,-36,-26,-15,-44,-61,-27,-13,23,9,-5,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,MGACP,11340,11413,11691,12289,12087,12541,13179,13509,14333,14737,15660,16275,16760,18056,18173,19176,20404,21063,21142,20370,19199,18603,18764,18367,18163,17977,18098,18778,19200,18927,19063,18821,19392,19457,19759,20678,18691,19533,19479,19284,19205,19381,18946,19224,19900,19783,19873,19839,18257,19736,20240,19264,18835,18567,19271,18622,19030,18453,19330,19203
-2019F,WV,MGCCP,65,69,71,66,57,66,61,55,56,56,56,57,58,59,59,59,60,61,61,62,110,126,126,263,257,307,325,324,308,309,330,262,219,20,20,20,20,19,19,19,19,20,20,20,28,28,29,30,29,27,27,28,25,26,25,364,376,366,372,374
-2019F,WV,MGICP,204,178,184,178,160,155,147,144,137,128,114,96,87,85,94,78,74,81,64,65,81,73,65,56,118,229,229,237,235,248,249,259,250,161,181,194,189,199,226,187,200,316,322,349,413,393,424,349,283,278,194,191,191,198,158,282,285,287,284,285
-2019F,WV,MGTCP,11609,11660,11945,12533,12304,12762,13387,13708,14525,14921,15831,16428,16904,18200,18326,19314,20538,21205,21267,20498,19390,18802,18956,18686,18537,18513,18652,19338,19744,19484,19643,19342,19860,19638,19960,20891,18899,19752,19724,19491,19424,19717,19288,19592,20341,20203,20326,20217,18569,20042,20460,19483,19051,18791,19454,19269,19691,19106,19986,19862
-2019F,WV,MGTXP,11609,11660,11945,12533,12304,12762,13387,13708,14525,14921,15831,16428,16904,18200,18326,19314,20538,21205,21267,20498,19390,18802,18956,18686,18537,18513,18652,19338,19744,19484,19643,19342,19860,19638,19960,20891,18899,19752,19724,19491,19424,19717,19288,19592,20341,20203,20326,20217,18569,20042,20460,19483,19051,18791,19454,19269,19691,19106,19986,19862
-2019F,WV,MSICP,4349,4855,5329,2821,2821,2752,2238,2091,2332,2172,1940,1643,1684,2086,2673,3600,2887,3265,2840,2629,2492,2350,2060,1846,1585,1597,1531,1538,1865,1715,1543,1067,700,662,740,679,71,78,95,90,96,516,554,520,468,466,232,228,243,259,271,281,276,404,431,446,452,468,466,424
-2019F,WV,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,NGACP,8440,7514,7796,9099,13828,17995,17815,16710,16800,0,7897,10064,14792,17532,15684,14059,13855,14769,15236,16944,13222,15299,13383,9272,16113,17760,16382,12309,13202,11250,8698,8305,16711,21261,30192,26479,32556,32435,31008,30002,32763,30470,33950,18446,19044,19697,18931,20869,18291,22132,21589,21447,31913,29585,29273,29101,20355,19301,19285,23950
-2019F,WV,NGCCP,15499,15650,16750,17081,14952,14524,15895,18511,20402,21534,21678,23106,26654,25854,24586,24776,20462,19556,22501,22337,21980,22191,20548,18771,18780,17224,15995,16792,22416,23258,21391,21043,24419,24381,24979,25872,28025,25913,24986,27301,26167,27737,24729,26681,25177,25084,23477,22633,25299,23761,24907,24094,22634,24252,24101,23026,22698,22421,25059,23599
-2019F,WV,NGEIP,941,738,759,632,887,932,892,618,791,759,705,385,457,393,376,358,290,31,14,69,62,198,131,115,116,122,298,239,73,124,139,171,569,367,536,729,319,569,515,499,516,2620,1885,2084,1406,2287,3664,3849,1889,1109,1480,2579,2361,2840,6711,13221,10167,10426,10725,16451
-2019F,WV,NGICP,75710,89524,78880,75625,82035,81340,84039,65037,90345,91182,93025,89196,97715,86851,87931,67946,64682,58570,60693,61224,59499,63725,52965,47688,49652,45312,43675,50234,48758,57698,57624,48633,52275,54226,54861,60284,56551,64590,56700,50771,56823,48324,55098,47567,46308,40273,40928,42094,38483,36478,38181,42167,50307,58891,76999,84010,95394,109491,121610,131731
-2019F,WV,NGRCP,49704,49174,49638,52209,51841,49645,52837,50202,54665,56366,57973,55629,59523,55686,53793,51296,51434,51609,53395,47964,48284,47114,43002,39967,39707,36750,36222,35634,37690,37128,32600,32587,35291,35208,35201,35379,37390,35996,29664,31403,31602,31939,30793,32209,30331,29795,26085,26528,27517,26172,27021,25073,22538,26514,28257,24807,23210,22385,26256,23850
-2019F,WV,NGTCP,150294,162600,153823,154646,163543,164436,171478,151078,183003,169841,181278,178380,199141,186316,182370,158435,150723,144535,151839,148538,143047,148527,130029,115813,124368,117168,112572,115208,122139,129459,120453,110739,129264,135442,145768,148743,154841,159502,142872,139977,147871,141090,146456,126986,122267,117136,113085,115973,111479,109652,113179,115360,129753,142082,165341,174165,171824,184024,202935,219581
-2019F,WV,NGTPP,81.1,88.9,85,86.1,91,92.1,96.6,85.4,103.8,97.3,103.5,100.7,110.8,103.1,100.5,86,80.2,75.7,78.9,76.5,73.3,76,66.7,59.5,64.5,61.4,59.8,62,66.7,71.7,67.2,61.6,71.6,74.5,80.1,81.6,84.9,87.7,78.7,77.3,81.8,78.3,81.1,70.1,67.3,64.3,61.9,63.2,60.6,59.3,61,62.1,69.9,76.6,89.3,94.5,93.8,101.2,112.4,122.3
-2019F,WV,NGTXP,149353,161862,153064,154014,162656,163504,170586,150460,182212,169082,180573,177995,198684,185923,181994,158077,150433,144504,151825,148469,142985,148329,129898,115698,124252,117046,112274,114969,122066,129335,120313,110569,128695,135075,145233,148014,154522,158933,142357,139477,147354,138470,144570,124903,120861,114849,109421,112124,109590,108543,111698,112781,127392,139242,158630,160944,161657,173598,192210,203130
-2019F,WV,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,OPICP,4443,4946,5422,2916,2917,2852,2329,2212,2459,2301,2069,1766,1956,2338,2935,3852,3139,3509,3092,2872,2755,2498,2160,1980,1744,1730,1666,1703,2073,2123,1704,1242,913,805,897,828,279,289,281,306,306,830,873,855,783,811,551,537,515,531,566,583,585,730,730,748,762,794,785,749
-2019F,WV,OPTCP,4443,4946,5422,2916,2917,2852,2329,2212,2459,2301,2069,1766,1956,2338,2935,3852,3139,3509,3092,2872,2755,2498,2160,1980,1744,1730,1666,1703,2073,2123,1704,1242,913,805,897,828,279,289,281,306,306,830,873,855,783,811,551,537,515,531,566,583,585,730,730,748,762,794,785,749
-2019F,WV,OPTXP,4443,4946,5422,2916,2917,2852,2329,2212,2459,2301,2069,1766,1956,2338,2935,3852,3139,3509,3092,2872,2755,2498,2160,1980,1744,1730,1666,1703,2073,2123,1704,1242,913,805,897,828,279,289,281,306,306,830,873,855,783,811,551,537,515,531,566,583,585,730,730,748,762,794,785,749
-2019F,WV,P1ICP,6101,7143,7768,5278,5210,5353,4640,4371,4750,4704,4340,4243,4635,4729,5130,6180,5550,5840,5561,5184,4428,4739,4118,3294,3403,3418,3439,3688,4382,4559,4018,3240,3430,2819,3434,3233,3051,2873,3974,3726,3216,5106,5312,4552,5625,5350,5584,5505,5991,2428,2011,2276,2113,2042,1902,2286,2507,1886,2076,2287
-2019F,WV,P1TCP,6574,7574,8150,5914,5741,5944,5298,5390,5406,5298,4883,4854,5254,5269,5600,6658,6026,6335,6050,6221,5188,5302,4688,3885,4157,4203,4222,4377,5140,5267,4566,3764,3940,3442,4050,3828,3734,3596,4796,4628,3910,5797,5902,5105,6212,5973,6064,5911,6278,2720,2280,2492,2296,2228,2101,2498,2749,2082,2298,2485
-2019F,WV,P1TXP,6574,7574,8150,5914,5741,5944,5298,5390,5406,5298,4883,4854,5254,5269,5600,6658,6026,6335,6050,6221,5188,5302,4688,3885,4157,4203,4222,4377,5140,5267,4566,3764,3940,3442,4050,3828,3734,3596,4796,4628,3910,5797,5902,5105,6212,5973,6064,5911,6278,2720,2280,2492,2296,2228,2101,2498,2749,2082,2298,2485
-2019F,WV,PAACP,13573,13275,13378,14215,13965,14603,15421,15727,16969,17374,18713,19856,20717,22509,22343,23318,24031,25375,25870,25282,24728,23732,23054,25462,25822,25236,22723,24495,25116,25584,25497,25184,26202,26590,26963,27916,23984,26451,28035,27451,27945,27884,27098,27937,29446,29522,29343,28974,26442,27094,28084,26966,26507,26024,26220,26773,30039,28400,32084,29764
-2019F,WV,PACCP,205,260,308,288,242,260,270,282,257,253,229,276,355,337,316,363,450,510,409,673,500,941,503,923,998,1164,1276,961,1043,1109,1058,1062,779,647,623,504,425,534,559,557,616,705,547,579,568,441,417,376,387,509,472,653,611,718,644,986,966,919,1013,1239
-2019F,WV,PAEIP,33,27,30,33,36,62,101,104,130,196,433,411,672,535,1181,722,768,917,1503,787,683,826,522,418,383,369,381,383,356,402,368,340,307,357,423,338,353,292,324,321,448,422,451,424,460,349,237,324,237,304,271,327,250,269,283,247,215,208,289,230
-2019F,WV,PAICP,8485,9467,10483,8169,8647,9106,8874,8237,8705,8757,8070,7887,8282,8273,8479,10672,12666,14299,11768,13897,12508,11071,10217,8911,7676,7601,7795,8223,8851,9695,9746,8839,7883,7612,8772,8381,8354,8223,8874,7282,7338,9041,12137,8574,10262,10689,11964,12413,13139,7783,9918,10072,9896,10269,10025,8403,7284,7714,8377,8837
-2019F,WV,PARCP,568,776,961,887,697,756,797,1207,870,871,772,951,1195,1074,963,1070,1254,1451,1179,2365,1956,1544,1420,1041,1174,1122,1296,1325,1375,1441,1291,1196,1218,1392,1420,1181,1435,1651,1510,1714,1584,1821,1369,1395,1812,1308,1441,1196,1234,1114,1187,1068,877,1301,988,1106,889,730,911,1054
-2019F,WV,PATCP,22864,23805,25159,23592,23588,24788,25462,25557,26931,27451,28216,29382,31221,32729,33282,36145,39168,42551,40730,43004,40375,38114,35716,36755,36053,35492,33471,35386,36741,38232,37959,36621,36389,36596,38202,38321,34551,37151,39302,37325,37933,39873,41603,38910,42548,42308,43402,43284,41439,36803,39932,39085,38141,38580,38160,37514,39394,37970,42674,41124
-2019F,WV,PATPP,12.3,13,13.9,13.1,13.1,13.9,14.3,14.4,15.3,15.7,16.1,16.6,17.4,18.1,18.3,19.6,20.8,22.3,21.2,22.1,20.7,19.5,18.3,18.9,18.7,18.6,17.8,19,20.1,21.2,21.2,20.4,20.1,20.1,21,21,19,20.4,21.6,20.6,21,22.1,23,21.5,23.4,23.2,23.7,23.6,22.5,19.9,21.5,21.1,20.5,20.8,20.6,20.4,21.5,20.9,23.6,22.9
-2019F,WV,PATXP,22830,23779,25129,23559,23552,24726,25361,25453,26801,27255,27784,28971,30549,32193,32101,35423,38400,41635,39227,42217,39692,37288,35194,36337,35670,35123,33090,35004,36385,37830,37591,36281,36082,36240,37779,37983,34198,36859,38978,37004,37484,39451,41152,38485,42088,41960,43165,42960,41202,36499,39661,38758,37892,38311,37876,37268,39179,37763,42385,40894
-2019F,WV,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,PCICP,249,986,1130,1263,1043,1097,1039,1121,982,1169,869,894,1002,878,712,793,714,951,797,573,485,1027,813,424,645,698,757,907,917,1118,1117,1046,1515,1123,1357,1284,1353,942,1972,2195,1663,3139,2765,2602,3832,3551,3773,3711,3589,428,0,0,0,0,0,0,0,0,0,0
-2019F,WV,PCTCP,249,986,1130,1263,1043,1097,1039,1121,982,1169,869,894,1002,878,712,793,714,951,797,573,485,1027,813,424,645,698,757,907,917,1118,1117,1046,1515,1123,1357,1284,1353,942,1972,2195,1663,3139,2765,2602,3832,3551,3773,3711,3589,428,0,0,0,0,0,0,0,0,0,0
-2019F,WV,PCTXP,249,986,1130,1263,1043,1097,1039,1121,982,1169,869,894,1002,878,712,793,714,951,797,573,485,1027,813,424,645,698,757,907,917,1118,1117,1046,1515,1123,1357,1284,1353,942,1972,2195,1663,3139,2765,2602,3832,3551,3773,3711,3589,428,0,0,0,0,0,0,0,0,0,0
-2019F,WV,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,9,7,6,5,5,4,8,10,11
-2019F,WV,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,216,206,207,304,180,157,173,189,209,409
-2019F,WV,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,151,147,162,188,227,140,131,119,68,100
-2019F,WV,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,844,794,672,1020,713,790,584,511,643,753
-2019F,WV,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1220,1155,1047,1518,1125,1092,892,826,930,1273
-2019F,WV,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1220,1155,1047,1518,1125,1092,892,826,930,1273
-2019F,WV,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2535,2535,2535,2535,2535,2535,2535,2535,2535,2535
-2019F,WV,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2535,2535,2535,2535,2535,2535,2535,2535,2535,2535
-2019F,WV,RFACP,3,3,0,7,4,0,0,75,81,26,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,RFCCP,8,6,8,8,12,12,14,11,10,10,9,8,6,4,3,9,20,20,13,9,5,2,3,1,1,5,9,4,173,87,65,51,55,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,RFEIP,33,26,30,33,36,61,101,103,129,194,430,408,658,519,1172,708,736,902,1501,785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,RFICP,1437,1201,1441,1537,2239,2080,2509,1998,1781,1786,1621,1467,1088,854,561,1787,3961,3979,2722,1950,1458,989,1388,1096,1497,964,1173,537,459,960,1203,1013,520,490,488,197,348,231,72,93,293,228,113,50,344,440,336,999,606,86,39,45,231,166,72,99,55,0,4,17
-2019F,WV,RFTCP,1481,1237,1479,1585,2291,2153,2623,2187,2001,2015,2065,1882,1751,1377,1736,2504,4718,4901,4236,2745,1463,991,1391,1097,1497,970,1182,541,631,1047,1268,1064,575,509,493,197,352,231,72,93,293,228,113,50,344,440,336,999,606,86,39,45,231,166,72,99,55,0,4,17
-2019F,WV,RFTXP,1448,1211,1449,1552,2256,2092,2523,2084,1872,1821,1635,1475,1094,858,564,1796,3982,3999,2735,1960,1463,991,1391,1097,1497,970,1182,541,631,1047,1268,1064,575,509,493,197,352,231,72,93,293,228,113,50,344,440,336,999,606,86,39,45,231,166,72,99,55,0,4,17
-2019F,WV,SGICP,94,91,93,90,90,93,85,113,119,121,119,111,250,235,242,231,230,223,229,229,244,273,182,183,224,228,263,262,275,523,205,254,253,186,183,180,182,186,176,195,234,280,287,296,294,304,305,295,283,288,290,290,296,322,316,306,308,302,306,290
-2019F,WV,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,24,36,49,33,36,47,37,24,29,0,0,0,0,0,0,0,0,0,0,0,8,7,7
-2019F,WV,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,4
-2019F,WV,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,4,6,7,8
-2019F,WV,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,4,4,6,8,10,12
-2019F,WV,TPOPP,1853,1828,1809,1796,1797,1786,1775,1769,1763,1746,1751,1771,1798,1806,1815,1842,1880,1908,1923,1942,1951,1954,1950,1945,1928,1907,1882,1858,1830,1807,1793,1799,1806,1818,1820,1824,1823,1819,1816,1812,1807,1801,1805,1812,1816,1820,1828,1834,1840,1848,1854,1857,1857,1855,1851,1843,1832,1819,1806,1795
-2019F,WV,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-70,-54,-32,-64,-66,-68,-70,-53,-139,-53,-83,-64,-53,-37,-42,-15,-14,-40,-40,-67,-15,-27,-10,-15,1,14,13,-11,-16,6,11,12,4,-17,-4,2,16,6,28
-2019F,WV,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,9,9,9,14,13,12,11,10,12,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,170,161,154,174,168,392,742,939,1103,1286,1387,1451,1376,1432,1682,1770,1631
-2019F,WV,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WV,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,170,161,154,174,168,392,742,939,1103,1286,1387,1451,1376,1432,1682,1770,1631
-2019F,WV,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,ABICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,11,2,0,8,1,0,-2,0,1,0,0,0,10,9,12,15,7,10,7,10,13,13,19,15,1,3,0,-2,0,0,0,-1,0,-1,-1,0,-3,-2
-2019F,WY,ARICP,734,647,635,646,705,743,612,572,1016,821,1099,1245,1064,982,657,606,773,1297,1646,1049,1160,976,908,396,1223,1676,1604,1469,1046,924,955,1016,772,756,902,665,835,972,857,1227,1467,1096,438,907,571,528,217,392,695,1145,1199,1394,1400,1156,1155,1098,874,932,818,731
-2019F,WY,ARTCP,734,647,635,646,705,743,612,572,1016,821,1099,1245,1064,982,657,606,773,1297,1646,1049,1160,976,908,396,1223,1676,1604,1469,1046,924,955,1016,772,756,902,665,835,972,857,1227,1467,1096,438,907,571,528,217,392,695,1145,1199,1394,1400,1156,1155,1098,874,932,818,731
-2019F,WY,ARTXP,734,647,635,646,705,743,612,572,1016,821,1099,1245,1064,982,657,606,773,1297,1646,1049,1160,976,908,396,1223,1676,1604,1469,1046,924,955,1016,772,756,902,665,835,972,857,1227,1467,1096,438,907,571,528,217,392,695,1145,1199,1394,1400,1156,1155,1098,874,932,818,731
-2019F,WY,AVACP,132,92,159,241,237,217,289,260,296,301,256,258,262,257,245,218,222,250,296,318,108,85,60,55,57,51,50,51,53,39,35,28,25,20,33,179,213,151,151,234,277,209,241,216,215,248,250,190,246,231,30,28,24,21,31,20,19,17,19,22
-2019F,WY,AVTCP,132,92,159,241,237,217,289,260,296,301,256,258,262,257,245,218,222,250,296,318,108,85,60,55,57,51,50,51,53,39,35,28,25,20,33,179,213,151,151,234,277,209,241,216,215,248,250,190,246,231,30,28,24,21,31,20,19,17,19,22
-2019F,WY,AVTXP,132,92,159,241,237,217,289,260,296,301,256,258,262,257,245,218,222,250,296,318,108,85,60,55,57,51,50,51,53,39,35,28,25,20,33,179,213,151,151,234,277,209,241,216,215,248,250,190,246,231,30,28,24,21,31,20,19,17,19,22
-2019F,WY,BDACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,10,14,12,13,10,35,70,43,95,40,144,94,115,191
-2019F,WY,BDTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,10,14,12,13,10,35,70,43,95,40,144,94,115,191
-2019F,WY,BQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,BQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,BYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,BYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,CLACP,2,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,CLCCP,23,22,25,21,18,19,17,11,12,11,9,14,22,15,22,35,46,92,177,290,83,93,122,123,132,83,76,79,109,107,104,113,82,153,206,127,336,125,142,92,123,124,83,87,92,64,47,53,25,25,26,28,24,27,21,8,7,12,8,6
-2019F,WY,CLEIP,815,1054,1104,1672,1752,1941,2431,2276,2390,3068,3571,3400,4554,5797,5846,6938,9000,11371,11147,13258,13498,16559,17529,16135,18805,21173,17452,22408,23563,21908,23526,23115,25114,24111,25350,23850,24430,23996,26674,25639,26365,26184,25675,25861,26428,26086,26170,26585,26885,25501,26102,25114,26265,27916,26289,26313,24434,24679,24378,21818
-2019F,WY,CLICP,119,139,279,164,130,124,138,183,248,231,210,172,225,265,487,640,1090,1535,1571,1690,1605,1682,1521,1688,1788,1875,1786,1887,1722,1908,1857,1896,2126,1873,1867,1937,1835,1959,1939,1934,1913,1660,1535,1614,1627,1597,1685,1738,1762,1553,1579,1675,1581,1588,1632,1496,1614,1611,1583,1559
-2019F,WY,CLKCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,CLOCP,119,139,279,164,130,124,138,183,248,231,210,172,225,265,487,640,1090,1535,1571,1690,1605,1682,1521,1688,1788,1875,1786,1887,1722,1908,1857,1896,2126,1873,1867,1937,1835,1959,1939,1934,1913,1660,1535,1614,1627,1597,1685,1738,1762,1553,1579,1675,1581,1588,1632,1496,1614,1611,1583,1559
-2019F,WY,CLRCP,34,32,36,29,25,25,22,15,15,14,12,13,16,9,10,15,19,36,53,73,22,20,25,24,31,24,23,24,31,29,26,25,18,34,36,19,46,15,17,12,15,15,11,13,10,6,5,6,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,CLTCP,993,1248,1445,1886,1926,2109,2608,2485,2666,3325,3802,3600,4818,6085,6365,7628,10155,13033,12947,15311,15208,18354,19197,17970,20756,23155,19338,24399,25424,23952,25514,25150,27339,26171,27459,25933,26647,26096,28773,27677,28416,27984,27305,27575,28156,27752,27906,28382,28672,27080,27707,26818,27870,29531,27941,27817,26055,26303,25969,23384
-2019F,WY,CLTXP,178,194,341,214,174,167,177,209,276,257,231,200,264,288,519,690,1155,1662,1801,2053,1710,1795,1668,1835,1951,1982,1885,1990,1861,2044,1987,2034,2225,2060,2108,2083,2216,2099,2098,2038,2050,1799,1629,1715,1728,1666,1736,1796,1787,1578,1605,1704,1605,1615,1653,1504,1621,1624,1591,1566
-2019F,WY,COICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,DFACP,1801,1646,1949,1736,1654,1864,1714,2262,3137,3090,3072,3626,3421,3676,4286,3965,4092,4564,5258,5743,6419,6223,5049,3478,3229,4172,3747,5672,6679,6835,6671,5284,5700,6532,6304,7985,7869,8126,8010,9971,8737,9173,9287,11150,10524,10776,11283,11518,10902,9527,9710,9067,9755,9325,10232,9395,9551,9477,10202,10609
-2019F,WY,DFCCP,9,20,18,24,19,16,10,24,24,31,30,30,32,42,44,63,63,73,85,94,428,125,351,222,188,394,362,244,245,235,218,194,183,188,196,265,264,219,148,364,401,415,283,157,102,95,93,87,113,150,246,380,424,340,318,268,289,268,175,181
-2019F,WY,DFEIP,6,10,2,14,7,19,8,14,16,15,13,19,12,8,3,6,10,7,14,6,123,147,115,81,121,143,123,115,121,118,99,122,100,104,86,128,110,105,80,85,66,66,76,81,92,77,88,84,79,91,104,98,79,71,67,75,75,74,64,73
-2019F,WY,DFICP,1458,1593,1881,2032,1977,1790,1244,1639,1967,2080,1931,2044,2021,2552,2742,3596,3970,4665,5160,6166,6255,5913,5545,3133,2651,2463,2273,2365,2020,2162,2296,2143,2246,2405,2330,1898,2281,2811,2840,3219,3370,4341,4138,3315,3360,3133,4736,4609,5412,4930,5019,5825,5699,4891,5918,4663,3802,4202,4989,3938
-2019F,WY,DFRCP,4,8,8,10,8,7,4,10,10,13,12,12,13,17,18,26,26,30,35,39,23,26,30,317,268,45,25,30,28,31,24,70,48,45,58,47,27,45,25,28,26,25,30,29,34,31,38,31,16,23,25,22,23,31,21,25,20,20,20,19
-2019F,WY,DFTCP,3278,3278,3859,3815,3666,3696,2982,3949,5154,5229,5059,5731,5499,6295,7094,7656,8161,9340,10553,12047,13247,12433,11090,7231,6457,7216,6531,8426,9093,9382,9308,7813,8278,9273,8974,10323,10552,11306,11103,13668,12600,14020,13814,14733,14112,14112,16238,16328,16522,14722,15104,15392,15979,14659,16556,14426,13737,14042,15450,14819
-2019F,WY,DFTXP,3272,3268,3857,3801,3659,3677,2973,3934,5138,5214,5045,5712,5487,6288,7090,7650,8151,9332,10538,12040,13124,12287,10975,7150,6336,7073,6408,8311,8972,9264,9209,7691,8178,9170,8888,10195,10442,11201,11022,13583,12534,13954,13738,14652,14021,14035,16150,16244,16443,14631,15000,15295,15901,14588,16489,14351,13662,13968,15385,14746
-2019F,WY,ELEXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,145,75,87,64,45,33,9,4,5,17,1,0,0,5,0
-2019F,WY,ELIMP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,29,19,48,28,32,23,9,7,11,1,4,12,3,0,1,1,0
-2019F,WY,ELISP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-26790,-26130,-29307,-27380,-29884,-27646,-28582,-28199,-32345,-30384,-31628,-30445,-29475,-28898,-29550,-29712,-28721,-27779,-27486,-27257,-28773,-27775,-30122,-32936,-30055,-29420,-27572,-27469,-26689,-23073
-2019F,WY,ELNIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,29,-56,-98,-47,-55,-42,-36,-26,2,-3,-2,-5,2,0,0,-3,0
-2019F,WY,ENACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,7,21,76,127,148,167,127,46,3,0,0,0,0,0,0,0,144,144,258,328,403,472,572,652,688,659,802,851,839,784,790
-2019F,WY,ENCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,6,7,14,15,15,17,46,29,32,26,43,40,9,10,10
-2019F,WY,ENICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,9,8,10,8,3,0,0,0,0,0,0,0,0,10,10,10,12,14,13,15,17,18,11,24,24,24,25,26
-2019F,WY,ENTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,1,0,0,0,8,22,82,137,156,177,135,49,3,0,0,0,0,0,0,0,159,160,283,354,431,501,634,698,738,697,869,914,872,819,826
-2019F,WY,EQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,EQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,ESACP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,ESCCP,174,177,228,268,314,594,637,652,671,718,657,707,745,829,961,775,824,1008,980,1065,1138,1434,1523,1583,2056,2321,2248,2177,2220,2219,2319,2439,2496,2616,2572,2443,2562,2568,2678,2693,2945,3104,3189,3282,3393,3754,4117,4214,4411,4288,4317,4353,4245,4067,4000,3925,3762,3762,3757,3575
-2019F,WY,ESICP,270,312,595,742,780,1285,1558,1939,2123,2361,1896,1951,2121,2313,2428,2918,3127,3390,4003,4333,4621,4402,4730,4801,5882,6212,6047,6699,6980,7293,7729,7498,7442,7363,7260,6817,6891,7211,6950,7065,7321,7700,7453,7685,7884,8007,8362,8730,9560,9554,10069,10262,10009,10157,10381,10323,10041,10244,10359,10339
-2019F,WY,ESRCP,275,294,367,397,448,442,437,446,468,503,604,654,701,785,812,891,957,1020,1167,1318,1410,1633,1820,1816,1800,1815,1678,1635,1764,1721,1720,1819,1763,1906,1865,1939,2022,2007,2013,2025,2103,2146,2232,2286,2262,2377,2468,2592,2719,2720,2727,2803,2717,2829,2752,2677,2751,2772,2748,2849
-2019F,WY,ESRPP,831,872,1101,1180,1322,1331,1352,1384,1445,1529,1807,1921,2017,2216,2222,2334,2411,2467,2696,2901,2974,3321,3594,3558,3565,3631,3385,3427,3793,3755,3791,3962,3780,4029,3883,3997,4142,4101,4101,4118,4254,4337,4464,4541,4443,4622,4722,4846,4979,4858,4831,4939,4711,4857,4720,4565,4701,4780,4746,4912
-2019F,WY,ESTCP,719,782,1190,1407,1542,2321,2632,3036,3262,3582,3156,3312,3567,3927,4201,4584,4908,5418,6150,6716,7169,7468,8073,8200,9738,10348,9973,10510,10964,11234,11769,11757,11700,11885,11696,11199,11475,11786,11641,11782,12368,12950,12874,13254,13540,14138,14947,15536,16690,16562,17113,17418,16971,17054,17134,16925,16555,16778,16865,16763
-2019F,WY,ESTPP,2171,2322,3573,4186,4548,6990,8149,9430,10067,10887,9450,9732,10270,11091,11494,12009,12363,13106,14207,14781,15119,15188,15942,16067,19288,20709,20122,22036,23574,24508,25940,25600,25094,25123,24353,23082,23506,24080,23718,23959,25021,26179,25747,26326,26595,27497,28597,29045,30566,29583,30314,30693,29431,29270,29381,28863,28287,28928,29125,28897
-2019F,WY,ESTXP,719,782,1190,1407,1542,2321,2632,3036,3262,3582,3156,3312,3567,3927,4201,4584,4908,5418,6150,6716,7169,7468,8073,8200,9738,10348,9973,10510,10964,11234,11769,11757,11700,11885,11696,11199,11475,11786,11641,11782,12368,12950,12874,13254,13540,14138,14947,15536,16690,16562,17113,17418,16971,17054,17134,16925,16555,16778,16865,16763
-2019F,WY,EYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,EYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,FNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,FOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,FSICP,0,0,0,99,97,111,114,105,121,115,136,163,152,148,180,196,203,224,256,182,197,93,84,103,139,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,GEEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,HLACP,70,76,82,64,71,49,51,45,70,114,91,123,156,128,117,116,136,136,185,66,73,118,129,158,64,45,53,50,51,35,27,49,27,29,38,17,16,8,25,4,10,4,3,7,21,7,6,7,37,6,7,7,5,5,4,4,3,3,1,4
-2019F,WY,HLCCP,199,209,196,182,199,189,219,286,331,335,356,391,460,384,325,341,350,344,385,242,229,256,292,358,183,176,277,470,314,210,173,211,180,161,149,210,163,42,23,85,180,252,248,286,275,338,222,216,387,411,371,380,441,425,571,387,290,287,245,493
-2019F,WY,HLICP,384,372,391,352,422,496,545,554,655,744,578,660,796,718,596,569,537,521,563,1199,1199,1063,1454,1299,1524,1312,1199,1148,992,1731,663,479,561,1192,1047,1265,1095,160,154,195,611,400,291,272,149,291,438,305,238,94,123,138,108,147,141,118,95,80,287,141
-2019F,WY,HLRCP,461,482,454,420,461,437,506,661,766,774,822,904,1063,889,751,788,808,795,890,560,529,591,675,826,423,408,640,1087,725,485,400,489,416,372,345,486,376,98,52,196,416,582,573,528,548,604,545,941,933,1027,869,937,690,747,798,567,676,913,853,915
-2019F,WY,HLTCP,1114,1139,1124,1018,1153,1171,1321,1546,1822,1967,1848,2078,2475,2120,1789,1815,1832,1795,2022,2068,2030,2028,2551,2641,2194,1942,2169,2756,2083,2462,1263,1228,1184,1752,1580,1979,1651,308,253,480,1217,1238,1114,1093,993,1241,1212,1469,1595,1539,1371,1461,1245,1324,1514,1076,1065,1284,1386,1553
-2019F,WY,HLTXP,1114,1139,1124,1018,1153,1171,1321,1546,1822,1967,1848,2078,2475,2120,1789,1815,1832,1795,2022,2068,2030,2028,2551,2641,2194,1942,2169,2756,2083,2462,1263,1228,1184,1752,1580,1979,1651,308,253,480,1217,1238,1114,1093,993,1241,1212,1469,1595,1539,1371,1461,1245,1324,1514,1076,1065,1284,1386,1553
-2019F,WY,HYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,HYEGP,609,633,975,879,874,884,923,789,959,1097,1006,1312,1172,1209,1411,1120,1043,762,982,1053,1108,841,850,1150,1286,1068,1140,768,789,680,645,736,636,787,897,799,1232,1381,1342,1170,1011,879,584,594,593,808,843,729,835,967,1024,1224,893,711,869,868,973,1124,976,992
-2019F,WY,HYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,HYTCP,609,633,975,879,874,884,923,789,959,1097,1006,1312,1172,1209,1411,1120,1043,762,982,1053,1108,841,850,1150,1286,1068,1140,768,789,680,645,736,636,787,897,799,1232,1381,1342,1170,1011,879,584,594,593,808,843,729,835,967,1024,1224,893,711,869,868,973,1124,976,992
-2019F,WY,HYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,IQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,IQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,IYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,IYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,JFACP,56,55,57,61,66,74,98,119,151,157,128,129,163,163,165,124,130,150,176,189,162,249,214,155,159,154,144,202,193,160,143,119,153,140,152,160,151,121,116,174,286,331,210,166,242,204,292,378,393,431,334,324,316,317,262,299,268,311,298,343
-2019F,WY,JFTCP,56,55,57,61,66,74,98,119,151,157,128,129,163,163,165,124,130,150,176,189,162,249,214,155,159,154,144,202,193,160,143,119,153,140,152,160,151,121,116,174,286,331,210,166,242,204,292,378,393,431,334,324,316,317,262,299,268,311,298,343
-2019F,WY,JFTXP,56,55,57,61,66,74,98,119,151,157,128,129,163,163,165,124,130,150,176,189,162,249,214,155,159,154,144,202,193,160,143,119,153,140,152,160,151,121,116,174,286,331,210,166,242,204,292,378,393,431,334,324,316,317,262,299,268,311,298,343
-2019F,WY,KSCCP,29,69,54,61,88,119,261,364,369,291,147,167,158,146,75,43,1,2,2,34,23,0,15,13,3,6,1,2,4,2,1,3,0,0,0,2,1,1,2,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0
-2019F,WY,KSICP,55,30,41,26,35,55,140,164,238,204,155,162,168,164,148,117,77,79,21,50,39,61,124,45,12,7,6,7,5,3,2,4,6,19,22,22,25,22,7,5,4,2,4,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,KSRCP,8,18,14,16,23,32,69,96,98,77,39,44,42,39,20,11,0,1,1,9,0,8,0,3,1,8,1,2,2,1,1,3,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,KSTCP,91,117,109,103,146,206,470,625,705,572,341,373,368,349,242,172,78,81,24,93,62,69,139,61,16,21,8,11,10,6,4,9,7,21,23,24,27,25,10,6,6,4,6,2,2,2,3,2,1,1,1,0,0,0,0,1,1,0,0,0
-2019F,WY,KSTXP,91,117,109,103,146,206,470,625,705,572,341,373,368,349,242,172,78,81,24,93,62,69,139,61,16,21,8,11,10,6,4,9,7,21,23,24,27,25,10,6,6,4,6,2,2,2,3,2,1,1,1,0,0,0,0,1,1,0,0,0
-2019F,WY,LUACP,91,88,86,86,90,81,84,69,76,83,85,90,97,96,92,108,120,151,162,169,151,144,132,138,147,137,134,151,146,150,154,138,141,143,150,147,143,151,158,160,157,144,142,132,133,133,129,133,124,111,143,126,128,127,136,140,132,118,116,115
-2019F,WY,LUICP,2,2,22,22,23,3,3,3,3,29,30,3,3,4,4,45,50,57,62,64,57,55,50,53,56,52,51,58,56,57,59,53,54,55,57,56,54,57,60,61,60,55,54,50,51,51,49,51,47,42,270,246,191,194,192,200,179,166,152,143
-2019F,WY,LUTCP,93,90,108,108,113,84,87,72,79,112,114,93,99,101,96,154,171,208,223,234,208,199,182,190,203,189,185,209,202,207,213,191,194,198,207,203,197,208,218,220,217,199,196,182,184,183,178,184,171,154,413,372,319,321,327,340,311,284,268,257
-2019F,WY,LUTXP,93,90,108,108,113,84,87,72,79,112,114,93,99,101,96,154,171,208,223,234,208,199,182,190,203,189,185,209,202,207,213,191,194,198,207,203,197,208,218,220,217,199,196,182,184,183,178,184,171,154,413,372,319,321,327,340,311,284,268,257
-2019F,WY,MBICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-626,-436,-308,-154,-420,-592,-268,-127,122,116,-43,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,MGACP,4038,4051,4235,4298,4155,4157,4312,4464,4742,5022,5262,5349,5819,6269,6132,6691,7169,7415,8361,8087,8034,8116,7712,7352,7962,7073,6579,6754,6897,7015,6613,6623,6861,7178,7259,7486,7418,7125,7631,7634,7551,7629,7473,7384,7196,7389,7468,7779,7591,7960,8038,7567,8159,8072,7922,8066,8221,8078,7598,7518
-2019F,WY,MGCCP,73,75,76,85,73,73,47,77,80,67,85,78,78,81,68,72,98,94,102,99,103,113,114,65,60,67,121,73,68,64,74,87,78,7,7,8,36,8,8,8,8,47,118,148,240,306,348,429,336,293,284,609,367,379,311,437,383,87,95,95
-2019F,WY,MGICP,320,302,305,303,442,510,477,389,478,484,552,628,655,560,598,591,602,766,370,358,365,269,440,439,173,530,503,451,461,482,417,502,490,387,416,443,451,470,249,237,240,426,451,477,532,492,513,315,282,279,220,202,210,213,136,237,234,235,238,245
-2019F,WY,MGTCP,4431,4427,4616,4686,4670,4739,4836,4929,5300,5572,5900,6055,6552,6910,6798,7354,7869,8275,8833,8544,8501,8498,8266,7856,8196,7671,7203,7277,7427,7561,7105,7212,7429,7572,7683,7936,7905,7603,7888,7879,7799,8102,8041,8009,7968,8187,8329,8523,8208,8533,8541,8378,8735,8663,8369,8740,8838,8400,7932,7858
-2019F,WY,MGTXP,4431,4427,4616,4686,4670,4739,4836,4929,5300,5572,5900,6055,6552,6910,6798,7354,7869,8275,8833,8544,8501,8498,8266,7856,8196,7671,7203,7277,7427,7561,7105,7212,7429,7572,7683,7936,7905,7603,7888,7879,7799,8102,8041,8009,7968,8187,8329,8523,8208,8533,8541,8378,8735,8663,8369,8740,8838,8400,7932,7858
-2019F,WY,MSICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,8,7,8,39,42,40,36,36,43,42,45,48,50,52,51,47,50,52,52,53,53,48
-2019F,WY,NAICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,NGACP,1755,2200,2354,1706,1389,2209,2033,4326,2191,4306,5909,7976,6078,8729,7539,5268,6593,6316,6994,8127,5849,6301,6767,5283,5189,4968,5082,6043,5660,5368,5059,7807,7905,6766,6195,7256,8147,10461,11542,13743,14100,13171,13113,14324,12559,14171,13875,14656,17111,19461,20824,17918,16680,15304,15388,12952,12580,13622,15234,12977
-2019F,WY,NGCCP,4917,6419,6622,7271,8647,8043,9609,10865,11637,14069,14026,14072,17287,13206,13241,10253,9152,8767,8100,8211,4980,4511,10098,9182,9431,9139,8045,8443,8700,8551,8440,9101,8009,10268,9231,9833,9721,10754,10414,9838,9752,9535,10414,9986,9916,9184,9500,9442,10180,10372,11153,11680,10482,12013,12188,12937,13425,13972,13787,12996
-2019F,WY,NGEIP,671,643,706,215,152,163,150,159,459,2475,2373,1161,773,373,660,504,560,754,713,486,222,108,133,136,86,132,138,90,183,85,69,76,83,87,129,128,87,95,271,167,1843,2727,3764,2484,532,576,827,2024,1088,1079,592,418,496,535,831,1233,1514,1307,1873,3271
-2019F,WY,NGICP,34908,38394,39427,41261,39952,38029,42352,45995,51922,62629,69704,72614,79454,72423,62242,59035,58811,56628,57591,62566,48173,49232,58760,52340,56912,53570,49026,56513,56170,56578,67137,68316,96645,74858,79181,68323,69914,66632,74260,60873,63442,62159,72251,76419,71962,72722,72607,102415,101033,99226,104622,113158,114173,108326,95120,80567,83832,107951,121349,111648
-2019F,WY,NGRCP,8791,9664,10011,8987,10183,10741,11504,11939,12592,16592,17984,19463,22242,13868,12064,12128,11703,11158,13894,14407,9751,8904,15165,13930,13806,14363,12738,10616,11650,11780,11485,11992,10895,12661,11564,12152,13534,12999,12702,12106,12177,10977,13330,12144,12091,11660,11673,12375,13293,12656,12915,13283,11502,13640,13269,11576,11999,12553,13142,14057
-2019F,WY,NGTCP,51042,57320,59120,59440,60323,59185,65648,73284,78801,100071,109996,115286,125834,108599,95746,87188,86819,83623,87292,93797,68975,69056,90923,80871,85424,82172,75029,81705,82363,82362,92190,97292,123538,104639,106300,97693,101403,100942,109189,96727,101314,98569,112872,115358,107060,108314,108481,140912,142705,142794,150106,156457,153333,149818,136796,119265,123350,149405,165385,154949
-2019F,WY,NGTPP,154.2,170.1,177.5,176.9,177.9,178.3,203.2,227.6,243.2,304.2,329.3,338.8,362.3,306.7,262,228.4,218.7,202.3,201.7,206.4,145.5,140.4,179.5,158.5,169.2,164.4,151.4,171.3,177.1,179.7,203.2,211.8,265,221.2,221.3,201.4,207.7,206.2,222.5,196.7,205,199.3,225.7,229.1,210.3,210.7,207.6,263.4,261.3,255.1,265.9,275.7,265.9,257.1,234.6,203.4,210.8,257.6,285.6,267.1
-2019F,WY,NGTXP,50371,56677,58414,59225,60171,59022,65498,73125,78342,97596,107623,114125,125061,108226,95086,86684,86259,82869,86579,93311,68753,68948,90790,80735,85338,82040,74891,81615,82180,82277,92121,97216,123455,104553,106170,97564,101316,100847,108918,96560,99471,95842,109108,112873,106528,107738,107654,138888,141617,141715,149514,156039,152837,149283,135965,118032,121836,148098,163512,151678
-2019F,WY,NUEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,NUETP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,OPICP,1481,1646,1672,1741,1749,1792,1651,1651,1969,1963,1917,1749,1918,2250,2385,2377,2307,2659,2814,3022,2729,1408,1198,1577,1638,1283,1307,1620,2106,2180,2184,1348,1709,1503,1662,1567,1900,1887,1548,1557,1498,2054,2033,2297,2242,2380,2507,2428,2259,2257,2450,2547,2619,2476,2423,2459,2521,2456,2408,2448
-2019F,WY,OPTCP,1481,1646,1672,1741,1749,1792,1651,1651,1969,1963,1917,1749,1918,2250,2385,2377,2307,2659,2814,3022,2729,1408,1198,1577,1638,1283,1307,1620,2106,2180,2184,1348,1709,1503,1662,1567,1900,1887,1548,1557,1498,2054,2033,2297,2242,2380,2507,2428,2259,2257,2450,2547,2619,2476,2423,2459,2521,2456,2408,2448
-2019F,WY,OPTXP,1481,1646,1672,1741,1749,1792,1651,1651,1969,1963,1917,1749,1918,2250,2385,2377,2307,2659,2814,3022,2729,1408,1198,1577,1638,1283,1307,1620,2106,2180,2184,1348,1709,1503,1662,1567,1900,1887,1548,1557,1498,2054,2033,2297,2242,2380,2507,2428,2259,2257,2450,2547,2619,2476,2423,2459,2521,2456,2408,2448
-2019F,WY,P1ICP,2615,2667,2766,2836,2977,3102,2883,2870,3720,3537,3610,3824,3838,4461,4104,3915,3942,4752,5229,4705,4566,3197,2889,2832,3765,3884,3752,3928,4033,3918,3977,3078,3173,2991,3295,2946,3497,3629,3215,3574,3708,3906,3211,3906,3553,3669,3474,3633,3723,4282,4775,5087,5082,4817,4688,4682,4431,4490,4313,4218
-2019F,WY,P1TCP,2874,2935,3079,3241,3414,3550,3586,3660,4560,4289,4137,4383,4396,4998,4536,4296,4286,5154,5688,5235,4848,3434,3096,3041,3973,4087,3938,4135,4237,4109,4168,3250,3340,3156,3478,3274,3854,3934,3527,3968,4145,4262,3596,4255,3902,4051,3855,3957,4094,4625,4949,5241,5235,4965,4855,4843,4583,4626,4449,4355
-2019F,WY,P1TXP,2874,2935,3079,3241,3414,3550,3586,3660,4560,4289,4137,4383,4396,4998,4536,4296,4286,5154,5688,5235,4848,3434,3096,3041,3973,4087,3938,4135,4237,4109,4168,3250,3340,3156,3478,3274,3854,3934,3527,3968,4145,4262,3596,4255,3902,4051,3855,3957,4094,4625,4949,5241,5235,4965,4855,4843,4583,4626,4449,4355
-2019F,WY,PAACP,7138,6860,7516,7107,6895,7615,7766,8995,9424,9712,9363,9813,10160,10789,11258,11223,11921,12709,14437,14580,14946,14938,13305,11336,11618,11632,10708,12880,14020,14235,13643,12242,12907,14042,13936,15974,15810,15683,16090,18177,17019,17490,17356,19055,18331,18756,19429,20005,19292,18266,18262,17119,18387,17868,18587,17923,18194,18004,18234,18610
-2019F,WY,PACCP,347,441,461,442,454,437,568,796,848,794,666,713,762,702,576,602,628,620,698,498,809,499,948,691,454,713,870,819,749,511,467,496,442,356,354,485,465,271,180,457,589,715,649,591,617,740,663,732,836,855,902,1369,1233,1144,1200,1093,963,643,515,769
-2019F,WY,PAEIP,12,18,4,26,13,34,15,26,30,28,25,47,47,98,108,118,138,100,169,147,123,147,115,81,121,143,123,115,121,118,99,122,100,104,86,128,110,105,80,85,66,66,76,81,92,77,88,84,79,91,104,98,79,71,67,75,75,74,64,73
-2019F,WY,PAICP,5534,6604,7570,7299,7350,6841,5833,6445,7819,8226,7631,8045,8279,9503,9647,10552,11442,13055,13988,15325,14529,12423,11719,7989,8289,8331,7808,7981,7644,8322,7391,6241,6481,7046,7127,6572,7330,7075,6463,7232,7952,9140,8242,8112,7702,7718,9273,8938,9744,9608,10152,11252,11100,10067,10883,9701,8562,9008,9827,8541
-2019F,WY,PARCP,472,509,476,446,492,475,580,768,873,864,874,960,1118,944,789,826,835,825,925,608,552,625,705,1146,692,461,667,1119,755,518,426,562,465,418,403,534,405,144,79,226,444,609,604,559,583,636,584,972,950,1050,895,959,713,779,819,592,696,933,873,933
-2019F,WY,PATCP,13502,14432,16027,15320,15204,15401,14762,17029,18994,19624,18558,19578,20366,22036,22377,23321,24964,27310,30218,31158,30959,28631,26791,21243,21174,21280,20175,22915,23289,23704,22026,19663,20395,21965,21906,23693,24119,23277,22892,26177,26070,28020,26927,28398,27323,27927,30037,30732,30901,29871,30315,30797,31512,29929,31556,29384,28490,28662,29514,28928
-2019F,WY,PATPP,40.8,42.8,48.1,45.6,44.9,46.4,45.7,52.9,58.6,59.6,55.6,57.5,58.6,62.2,61.2,61.1,62.9,66.1,69.8,68.6,65.3,58.2,52.9,41.6,41.9,42.6,40.7,48,50.1,51.7,48.5,42.8,43.7,46.4,45.6,48.8,49.4,47.6,46.6,53.2,52.7,56.6,53.9,56.4,53.7,54.3,57.5,57.5,56.6,53.4,53.7,54.3,54.6,51.4,54.1,50.1,48.7,49.4,51,49.9
-2019F,WY,PATXP,13491,14414,16022,15294,15191,15367,14747,17003,18964,19596,18534,19531,20319,21938,22269,23203,24826,27209,30049,31010,30836,28485,26676,21162,21053,21137,20052,22799,23168,23586,21927,19540,20295,21861,21821,23565,24009,23172,22812,26092,26004,27954,26851,28317,27232,27850,29949,30648,30821,29780,30211,30699,31434,29858,31489,29309,28415,28588,29449,28854
-2019F,WY,PCCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,PCEIP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,PCICP,343,343,396,402,464,508,477,481,495,520,410,665,685,1060,910,770,735,660,685,520,580,697,609,762,836,867,783,775,820,754,777,658,633,659,652,636,681,690,744,723,680,699,682,651,688,710,699,761,723,837,856,900,872,991,918,926,858,936,936,897
-2019F,WY,PCTCP,343,343,396,402,464,508,477,481,495,520,410,665,685,1060,910,770,735,660,685,520,580,697,609,762,836,867,783,775,820,754,777,658,633,659,652,636,681,690,744,723,680,699,682,651,688,710,699,761,723,837,856,900,872,991,918,926,858,936,936,897
-2019F,WY,PCTXP,343,343,396,402,464,508,477,481,495,520,410,665,685,1060,910,770,735,660,685,520,580,697,609,762,836,867,783,775,820,754,777,658,633,659,652,636,681,690,744,723,680,699,682,651,688,710,699,761,723,837,856,900,872,991,918,926,858,936,936,897
-2019F,WY,PLICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,PPICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,PPTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,PQACP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,5,5,4,4,3,3,1,4
-2019F,WY,PQCCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,371,380,441,425,571,387,290,287,245,493
-2019F,WY,PQICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,123,138,108,147,141,118,95,80,287,141
-2019F,WY,PQRCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,869,937,690,747,798,567,676,913,853,915
-2019F,WY,PQTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1371,1461,1245,1324,1514,1076,1065,1284,1386,1553
-2019F,WY,PQTXP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1371,1461,1245,1324,1514,1076,1065,1284,1386,1553
-2019F,WY,PYICP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,PYTCP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0
-2019F,WY,RFACP,951,851,947,621,621,1173,1218,1776,951,945,469,239,242,199,219,0,52,45,1,8,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,RFCCP,37,69,116,90,75,40,31,45,44,70,48,48,34,49,64,83,117,107,124,29,27,5,175,33,20,69,109,30,119,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
-2019F,WY,RFEIP,5,8,2,12,6,15,7,12,14,12,11,28,36,90,105,112,128,93,154,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,RFICP,756,1670,2226,1775,1533,942,684,993,999,1381,960,888,970,1212,1607,1881,2390,2351,2667,2897,2144,1981,1391,287,175,142,81,89,138,30,39,39,10,71,39,20,6,4,6,8,23,68,151,143,107,133,111,76,89,23,16,0,0,0,0,0,0,0,0,0
-2019F,WY,RFTCP,1749,2598,3291,2498,2235,2171,1939,2826,2006,2408,1487,1203,1281,1550,1995,2076,2686,2595,2945,3075,2171,1989,1575,320,195,211,190,119,257,30,39,40,10,71,40,20,6,4,6,8,23,68,151,143,107,133,111,76,89,23,16,0,1,0,0,0,0,0,0,0
-2019F,WY,RFTXP,1743,2590,3289,2486,2229,2155,1933,2814,1993,2396,1476,1175,1245,1459,1891,1964,2558,2502,2791,2934,2171,1989,1575,320,195,211,190,119,257,30,39,40,10,71,40,20,6,4,6,8,23,68,151,143,107,133,111,76,89,23,16,0,1,0,0,0,0,0,0,0
-2019F,WY,SGICP,1481,1646,1672,1641,1652,1681,1536,1545,1848,1848,1780,1586,1766,2102,2205,2181,2104,2435,2559,2840,2533,2593,2187,2154,2313,2192,2561,2570,2774,2802,2786,2061,2117,2103,2064,2032,2048,2014,1979,1940,2076,2116,2186,2322,2303,2325,2353,2282,2300,2339,2354,2401,2465,2403,2511,2437,2454,2285,2310,2192
-2019F,WY,SNICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,SOCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2
-2019F,WY,SOEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,180
-2019F,WY,SOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,SOR7P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,4,7
-2019F,WY,SOTGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,3,5,7,189
-2019F,WY,TPOPP,331,337,333,336,339,332,323,322,324,329,334,340,347,354,366,382,397,413,433,454,474,492,506,510,505,500,496,477,465,458,454,459,466,473,480,485,488,489,491,492,494,495,500,503,509,514,523,535,546,560,565,567,577,583,583,586,585,580,579,580
-2019F,WY,UOICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-665,-648,-373,-661,-635,-663,-682,-539,-744,-719,-670,-535,-600,-412,-474,-166,-147,-445,-400,-592,-112,-209,-78,-116,4,110,100,-87,-129,46,93,103,27,-137,-30,14,119,48,210
-2019F,WY,USICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,WXICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,WYCCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,WYEGP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,1,0,0,0,0,0,0,0,0,0,0,0,2,11,246,365,447,366,617,717,759,755,963,2226,3247,4612,4369,4433,4406,3757,4389,4321,4057,4163
-2019F,WY,WYICP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2019F,WY,WYTCP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,1,0,0,0,0,0,0,0,0,0,0,0,2,11,246,365,447,366,617,717,759,755,963,2226,3247,4612,4369,4433,4406,3757,4389,4321,4057,4163
-2019F,WY,WYTXP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/inst/extdata/FlowByActivity_metadata.yml b/inst/extdata/FlowByActivity_metadata.yml
index cd90c870..c3ca6cd2 100644
--- a/inst/extdata/FlowByActivity_metadata.yml
+++ b/inst/extdata/FlowByActivity_metadata.yml
@@ -1,4 +1,14 @@
USDA_ERS_FIWS:
- Extension: "v0.0.2_5d6373b.parquet"
-NOAA_FisheryLandings:
- Extension: ".parquet"
+ 0.1.0:
+ Extension: "v0.0.2_5d6373b.parquet"
+ 0.2.0:
+ 2018:
+ Extension: "v1.2.1_ef8b381.parquet"
+ 2019: &usda_ext
+ Extension: "v1.2.4_7c15ea5.parquet"
+ 2020: *usda_ext
+
+NOAA_FisheriesLandings:
+ 0.1.0: &noaa_ext
+ Extension: "v1.2.4_7c15ea5.parquet"
+ 0.2.0: *noaa_ext
diff --git a/inst/extdata/FlowBySector_metadata.yml b/inst/extdata/FlowBySector_metadata.yml
index cca67542..62bab7a4 100644
--- a/inst/extdata/FlowBySector_metadata.yml
+++ b/inst/extdata/FlowBySector_metadata.yml
@@ -1,2 +1,9 @@
Employment:
- Extension: "v1.1_37dee46.parquet"
+ 0.1.0:
+ Extension: "v1.1_37dee46.parquet"
+ 0.2.0:
+ 2018: &ext
+ Extension: "v1.2.3_aaf5403.parquet"
+ 2019: *ext
+ 2020:
+ Extension: "v1.2.4_7c15ea5.parquet"
diff --git a/man/downloadStateIODatafromDataCommons.Rd b/man/downloadStateIODatafromDataCommons.Rd
index dc87274a..ac8618cb 100644
--- a/man/downloadStateIODatafromDataCommons.Rd
+++ b/man/downloadStateIODatafromDataCommons.Rd
@@ -2,7 +2,7 @@
% Please edit documentation in R/UtilityFunctions.R
\name{downloadStateIODatafromDataCommons}
\alias{downloadStateIODatafromDataCommons}
-\title{Download state IO data file from Data Commons and stores in a local data directory.}
+\title{Download StateIO data file from Data Commons and stores in a local data directory.}
\usage{
downloadStateIODatafromDataCommons(filename, ver = NULL)
}
@@ -15,5 +15,5 @@ downloadStateIODatafromDataCommons(filename, ver = NULL)
An .rds data file downloaded from Data Commons and stored in local directory.
}
\description{
-Download state IO data file from Data Commons and stores in a local data directory.
+Download StateIO data file from Data Commons and stores in a local data directory.
}
diff --git a/man/findLatestStateIODatainLocalDirectory.Rd b/man/findLatestStateIODatainLocalDirectory.Rd
index 002f8bb2..da0f621e 100644
--- a/man/findLatestStateIODatainLocalDirectory.Rd
+++ b/man/findLatestStateIODatainLocalDirectory.Rd
@@ -2,7 +2,7 @@
% Please edit documentation in R/UtilityFunctions.R
\name{findLatestStateIODatainLocalDirectory}
\alias{findLatestStateIODatainLocalDirectory}
-\title{Find the latest state IO data in local data directory.}
+\title{Find the latest StateIO data in local data directory.}
\usage{
findLatestStateIODatainLocalDirectory(filename)
}
@@ -10,8 +10,8 @@ findLatestStateIODatainLocalDirectory(filename)
\item{filename}{A string specifying filename, e.g. "State_Summary_Use_2017".}
}
\value{
-File name of the latest state IO data in local data directory.
+File name of the latest StateIO data in local data directory.
}
\description{
-Find the latest state IO data in local data directory.
+Find the latest StateIO data in local data directory.
}
diff --git a/man/findLatestStateIODataonDataCommons.Rd b/man/findLatestStateIODataonDataCommons.Rd
index 45ac35b2..cb8c0cac 100644
--- a/man/findLatestStateIODataonDataCommons.Rd
+++ b/man/findLatestStateIODataonDataCommons.Rd
@@ -2,7 +2,7 @@
% Please edit documentation in R/UtilityFunctions.R
\name{findLatestStateIODataonDataCommons}
\alias{findLatestStateIODataonDataCommons}
-\title{Find the latest state IO data on Data Commons.}
+\title{Find the latest StateIO data on Data Commons.}
\usage{
findLatestStateIODataonDataCommons(filename)
}
@@ -10,8 +10,8 @@ findLatestStateIODataonDataCommons(filename)
\item{filename}{A string specifying filename, e.g. "State_Summary_Use_2017".}
}
\value{
-File name of the latest state IO data on Data Commons.
+File name of the latest StateIO data on Data Commons.
}
\description{
-Find the latest state IO data on Data Commons.
+Find the latest StateIO data on Data Commons.
}
diff --git a/man/getRegistryonDataCommons.Rd b/man/getRegistryonDataCommons.Rd
new file mode 100644
index 00000000..a1187d01
--- /dev/null
+++ b/man/getRegistryonDataCommons.Rd
@@ -0,0 +1,19 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/UtilityFunctions.R
+\name{getRegistryonDataCommons}
+\alias{getRegistryonDataCommons}
+\title{Get data registry on Data Commons.}
+\usage{
+getRegistryonDataCommons(data_group = "stateio")
+}
+\arguments{
+\item{data_group}{A string specifying name of data group that is used as the
+subdirectory in Data Commons, can be "stateio", "flowsa/FlowBySector", or
+"flowsa/FlowByActivity".}
+}
+\value{
+A dataframe of StateIO data registry on Data Commons.
+}
+\description{
+Get data registry on Data Commons.
+}
diff --git a/man/getStateIODataRegistryonDataCommons.Rd b/man/getStateIODataRegistryonDataCommons.Rd
deleted file mode 100644
index 6125cbc6..00000000
--- a/man/getStateIODataRegistryonDataCommons.Rd
+++ /dev/null
@@ -1,14 +0,0 @@
-% Generated by roxygen2: do not edit by hand
-% Please edit documentation in R/UtilityFunctions.R
-\name{getStateIODataRegistryonDataCommons}
-\alias{getStateIODataRegistryonDataCommons}
-\title{Get state IO data registry on Data Commons.}
-\usage{
-getStateIODataRegistryonDataCommons()
-}
-\value{
-A dataframe of state IO data registry on Data Commons.
-}
-\description{
-Get state IO data registry on Data Commons.
-}
diff --git a/man/loadStateIODataFile.Rd b/man/loadStateIODataFile.Rd
index 890b8327..8d51601a 100644
--- a/man/loadStateIODataFile.Rd
+++ b/man/loadStateIODataFile.Rd
@@ -2,7 +2,7 @@
% Please edit documentation in R/UtilityFunctions.R
\name{loadStateIODataFile}
\alias{loadStateIODataFile}
-\title{Load state IO data file from Data Commons or local data directory.}
+\title{Load StateIO data file from Data Commons or local data directory.}
\usage{
loadStateIODataFile(filename, ver = NULL)
}
@@ -12,8 +12,8 @@ loadStateIODataFile(filename, ver = NULL)
\item{ver}{A string specifying version of the data, default is NULL, can be "v0.1.0".}
}
\value{
-The pathname to the state IO data file.
+A StateIO data product (usually a list of dataframes).
}
\description{
-Load state IO data file from Data Commons or local data directory.
+Load StateIO data file from Data Commons or local data directory.
}
diff --git a/man/readDatafileMeta.Rd b/man/readDatafileMeta.Rd
index 32e17d7c..94bae663 100644
--- a/man/readDatafileMeta.Rd
+++ b/man/readDatafileMeta.Rd
@@ -12,7 +12,8 @@ readDatafileMeta(year, iolevel, dataname, path)
\item{iolevel}{BEA sector level of detail, currently can only be "Summary",
theoretically can be "Detail", or "Sector" in future versions.}
-\item{dataname}{Name of desired IO data, can be "Make", "Use", "DomesticUse", "CommodityOutput, and "IndustryOutput".}
+\item{dataname}{Name of desired IO data, can be "Make", "Use", "DomesticUse",
+"CommodityOutput, and "IndustryOutput".}
\item{path}{User-defined local path.}
}
diff --git a/man/writeStateIODatatoCSV.Rd b/man/writeStateIODatatoCSV.Rd
new file mode 100644
index 00000000..97818d40
--- /dev/null
+++ b/man/writeStateIODatatoCSV.Rd
@@ -0,0 +1,21 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/WriteModel.R
+\name{writeStateIODatatoCSV}
+\alias{writeStateIODatatoCSV}
+\title{Write StateIO data to specified format, .csv or .xlsx, to output folder.
+The data are loaded from Data Commons or local data directory.}
+\usage{
+writeStateIODatatoCSV(filename, ver = NULL, state, outputfolder)
+}
+\arguments{
+\item{filename}{A string specifying filename, e.g. "State_Summary_Use_2017".}
+
+\item{ver}{A string specifying version of the data, default is NULL, can be "v0.1.0".}
+
+\item{state}{State name.}
+
+\item{outputfolder}{A directory to write matrices out to.}
+}
+\description{
+Writes StateIO data as .csv or .xlsx files to output folder.
+}